Lines Matching defs:Push
115 void Push(const int64 value) const { lua_pushinteger(state_, value); } in Push() function
116 void Push(const uint64 value) const { lua_pushinteger(state_, value); } in Push() function
117 void Push(const int32 value) const { lua_pushinteger(state_, value); } in Push() function
118 void Push(const uint32 value) const { lua_pushinteger(state_, value); } in Push() function
119 void Push(const int16 value) const { lua_pushinteger(state_, value); } in Push() function
120 void Push(const uint16 value) const { lua_pushinteger(state_, value); } in Push() function
121 void Push(const int8 value) const { lua_pushinteger(state_, value); } in Push() function
122 void Push(const uint8 value) const { lua_pushinteger(state_, value); } in Push() function
123 void Push(const float value) const { lua_pushnumber(state_, value); } in Push() function
124 void Push(const double value) const { lua_pushnumber(state_, value); } in Push() function
125 void Push(const bool value) const { lua_pushboolean(state_, value); } in Push() function
126 void Push(const StringPiece value) const { PushString(value); } in Push() function
127 void Push(const flatbuffers::String* value) const { in Push() function