コード例 #1
0
ファイル: style_core_color.cpp プロジェクト: Peque/tdesktop
Color::Proxy Color::operator[](const style::palette &paletteOverride) const {
	auto index = main_palette::indexOfColor(*this);
	return Proxy((index >= 0) ? paletteOverride.colorAtIndex(index) : (*this));
}
コード例 #2
0
ファイル: RInside.cpp プロジェクト: YunhaiZhou/VaRSoft
RInside::Proxy RInside::parseEvalNT(const std::string & line) {
    SEXP ans;
    parseEval(line, ans);
    return Proxy( ans );
}
コード例 #3
0
			Proxy operator [] (uint i)
			{
				return Proxy( container, i );
			}
コード例 #4
0
ファイル: List.cpp プロジェクト: AndreLouisCaron/cxxpy
 List::Proxy List::operator[] ( size_type i )
 {
     return (Proxy(*this, i));
 }
コード例 #5
0
ファイル: matrix.hpp プロジェクト: nrz/ylikuutio
 Proxy operator[](const std::size_t index)
 {
     return Proxy(array_of_arrays[index]);
 }
コード例 #6
0
ファイル: g2nodeinfo.hpp プロジェクト: Mogito89/TOX002
	void DiscardProxy() { Proxy(Ip::Endpoint()); }
コード例 #7
0
ファイル: main.cpp プロジェクト: CCJY/coliru
int main() {
    bool& ref = Proxy();
}
コード例 #8
0
ファイル: Object.cpp プロジェクト: alexandrev/rippled
Object::Proxy Object::operator[] (Json::StaticString const& key)
{
    return Proxy (*this, std::string (key));
}
コード例 #9
0
void PhysicsWorld::QueryRegion(const Math::Vector3 &minPoint, const Math::Vector3 &maxPoint, RegionQueryResult &result)
{
	return mBroadphase->QueryRegion(Proxy(minPoint, maxPoint), result);
}
コード例 #10
0
ファイル: grid.cpp プロジェクト: Timoha/TicTacToe
Grid::Proxy Grid::operator[](int index)
{
    assert (index >= 0 && index < gridSize);
    return Proxy(dynamicGrid[index]);
}
コード例 #11
0
ファイル: Object.cpp プロジェクト: alexandrev/rippled
Object::Proxy Object::operator[] (std::string const& key)
{
    return Proxy (*this, key);
}
コード例 #12
0
UserManagementServer::UserManagementServer(void)
{
	Proxy("UserAce");
}
コード例 #13
0
ファイル: PropertyStream.cpp プロジェクト: 12w21/rippled
PropertyStream::Proxy PropertyStream::Map::operator[] (std::string const& key)
{
    return Proxy (*this, key);
}
コード例 #14
0
ファイル: amap.cpp プロジェクト: gentooinit/awk_like
map::Proxy map::operator[](int key)
{
	return Proxy(*this, key);
}
コード例 #15
0
ファイル: amap.cpp プロジェクト: gentooinit/awk_like
const map::Proxy map::operator[](int key) const
{
	return Proxy(const_cast<map &>(*this), key);
}
コード例 #16
0
ファイル: x.c プロジェクト: suosuopuo/ctricks
#define X(op, bits) bits,
static unsigned char bits[] = { ENUMBINDING };
#undef X

/*
 * Example 4
 *
 * in case the name X has already been taken somewhere
 */
#define Proxy(apply) \
	apply(foo) \
	apply(bar)

#define apply(a) K##a,
enum { Proxy(apply) };
#undef apply

#define apply(a) #a,
static char *str_vals[] = { Proxy(apply) };
#undef apply 

int main()
{
	printf("Value of key 2 is: %s\n", vals[KEY2]);

	printf("String name of dog is: \"%s\"\n", animal_names[KDog]);
	
	return 0;
}