HomeSort by relevance Sort by last modified time
    Searched refs:Proto (Results 1 - 25 of 70) sorted by null

1 2 3

  /external/chromium_org/third_party/cacheinvalidation/overrides/google/cacheinvalidation/deps/
gmock.h 15 // Implements WhenDeserializedAs<Proto>(proto_matcher).
16 template <class Proto>
19 typedef Matcher<const Proto&> InnerMatcher;
28 Proto* Deserialize(const string& str) const {
29 Proto* proto = new Proto; local
30 if (proto->ParsePartialFromString(str)) {
31 return proto;
33 delete proto;
63 namespace proto { namespace in namespace:testing
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
lfunc.h 21 LUAI_FUNC Proto *luaF_newproto (lua_State *L);
27 LUAI_FUNC void luaF_freeproto (lua_State *L, Proto *f);
29 LUAI_FUNC const char *luaF_getlocalname (const Proto *func, int local_number,
lundump.h 20 LUAI_FUNC int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip);
lundump.c 86 static void LoadCode(LoadState* S, Proto* f)
94 static void LoadFunction(LoadState* S, Proto* f);
96 static void LoadConstants(LoadState* S, Proto* f)
125 f->p=luaM_newvector(S->L,n,Proto*);
135 static void LoadUpvalues(LoadState* S, Proto* f)
149 static void LoadDebug(LoadState* S, Proto* f)
171 static void LoadFunction(LoadState* S, Proto* f)
226 Proto* p=cl->l.p;
ldump.c 78 static void DumpFunction(const Proto* f, DumpState* D);
80 static void DumpConstants(const Proto* f, DumpState* D)
109 static void DumpUpvalues(const Proto* f, DumpState* D)
120 static void DumpDebug(const Proto* f, DumpState* D)
139 static void DumpFunction(const Proto* f, DumpState* D)
162 int luaU_dump (lua_State* L, const Proto* f, lua_Writer w, void* data, int strip)
luac.c 22 static void PrintFunction(const Proto* f, int full);
136 static const Proto* combine(lua_State* L, int n)
142 Proto* f;
166 const Proto* f;
251 static void PrintConstant(const Proto* f, int i)
277 static void PrintCode(const Proto* f)
378 static void PrintHeader(const Proto* f)
398 static void PrintDebug(const Proto* f)
425 static void PrintFunction(const Proto* f, int full)
lfunc.c 110 Proto *luaF_newproto (lua_State *L) {
111 Proto *f = &luaC_newobj(L, LUA_TPROTO, sizeof(Proto), NULL, 0)->p;
135 void luaF_freeproto (lua_State *L, Proto *f) {
150 const char *luaF_getlocalname (const Proto *f, int local_number, int pc) {
lparser.h 97 Proto *f; /* current function header */
ldebug.c 100 static const char *upvalname (Proto *p, int uv) {
186 Proto *p = cl->l.p;
303 static const char *getobjname (Proto *p, int lastpc, int reg,
310 static void kname (Proto *p, int pc, int c, const char **name) {
333 static int findsetreg (Proto *p, int lastpc, int reg) {
378 static const char *getobjname (Proto *p, int lastpc, int reg,
434 Proto *p = ci_func(ci)->p; /* calling function */
  /external/clang/lib/AST/
MangleNumberingContext.cpp 23 const FunctionProtoType *Proto
27 QualType Key = Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(),
DeclPrinter.cpp 410 std::string Proto = D->getNameInfo().getAsString();
414 Proto = '(' + Proto + ')';
423 Proto += "(";
425 llvm::raw_string_ostream POut(Proto);
439 Proto += ", ";
440 Proto += D->getParamDecl(i)->getNameAsString();
444 Proto += ")";
448 Proto += " const";
450 Proto += " volatile"
    [all...]
Mangle.cpp 155 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
157 if (!Proto) {
161 assert(!Proto->isVariadic());
166 for (const auto &AT : Proto->param_types())
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 142 PrototypeAST *Proto;
145 FunctionAST(PrototypeAST *proto, ExprAST *body)
146 : Proto(proto), Body(body) {}
322 PrototypeAST *Proto = ParsePrototype();
323 if (Proto == 0) return 0;
326 return new FunctionAST(Proto, E);
333 // Make an anonymous proto.
334 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
335 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 206 PrototypeAST *Proto;
209 FunctionAST(PrototypeAST *proto, ExprAST *body)
210 : Proto(proto), Body(body) {}
515 PrototypeAST *Proto = ParsePrototype();
516 if (Proto == 0) return 0;
519 return new FunctionAST(Proto, E);
526 // Make an anonymous proto.
527 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
528 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 128 FunctionAST(PrototypeAST *proto, ExprAST *body) {}
301 PrototypeAST *Proto = ParsePrototype();
302 if (Proto == 0) return 0;
305 return new FunctionAST(Proto, E);
312 // Make an anonymous proto.
313 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
314 return new FunctionAST(Proto, E);
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 149 PrototypeAST *Proto;
152 FunctionAST(PrototypeAST *proto, ExprAST *body)
153 : Proto(proto), Body(body) {}
329 PrototypeAST *Proto = ParsePrototype();
330 if (Proto == 0) return 0;
333 return new FunctionAST(Proto, E);
340 // Make an anonymous proto.
341 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
342 return new FunctionAST(Proto, E)
    [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 267 std::string Name, Proto;
311 Intrinsic(Record *R, StringRef Name, StringRef Proto, TypeSpec OutTS,
314 : R(R), Name(Name.str()), Proto(Proto.str()), OutTS(OutTS), InTS(InTS),
321 if (Proto.find('i') != std::string::npos)
326 if (Proto.find('p') != std::string::npos ||
327 Proto.find('c') != std::string::npos)
333 Proto.find('s') != std::string::npos)
339 Types.push_back(Type(OutTS, Proto[0]));
340 for (unsigned I = 1; I < Proto.size(); ++I
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 224 PrototypeAST *Proto;
227 FunctionAST(PrototypeAST *proto, ExprAST *body)
228 : Proto(proto), Body(body) {}
580 PrototypeAST *Proto = ParsePrototype();
581 if (Proto == 0) return 0;
584 return new FunctionAST(Proto, E);
591 // Make an anonymous proto.
592 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
593 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 242 PrototypeAST *Proto;
245 FunctionAST(PrototypeAST *proto, ExprAST *body)
246 : Proto(proto), Body(body) {}
597 PrototypeAST *Proto = ParsePrototype();
598 if (Proto == 0) return 0;
601 return new FunctionAST(Proto, E);
608 // Make an anonymous proto.
609 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
610 return new FunctionAST(Proto, E)
    [all...]
toy.cpp 248 PrototypeAST *Proto;
251 FunctionAST(PrototypeAST *proto, ExprAST *body)
252 : Proto(proto), Body(body) {}
603 PrototypeAST *Proto = ParsePrototype();
604 if (Proto == 0) return 0;
607 return new FunctionAST(Proto, E);
614 // Make an anonymous proto.
615 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
616 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 225 PrototypeAST *Proto;
228 FunctionAST(PrototypeAST *proto, ExprAST *body)
229 : Proto(proto), Body(body) {}
580 PrototypeAST *Proto = ParsePrototype();
581 if (Proto == 0) return 0;
584 return new FunctionAST(Proto, E);
591 // Make an anonymous proto.
592 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
593 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 227 PrototypeAST *Proto;
230 FunctionAST(PrototypeAST *proto, ExprAST *body)
231 : Proto(proto), Body(body) {}
582 PrototypeAST *Proto = ParsePrototype();
583 if (Proto == 0) return 0;
586 return new FunctionAST(Proto, E);
593 // Make an anonymous proto.
594 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
595 return new FunctionAST(Proto, E)
    [all...]
toy.cpp 227 PrototypeAST *Proto;
230 FunctionAST(PrototypeAST *proto, ExprAST *body)
231 : Proto(proto), Body(body) {}
582 PrototypeAST *Proto = ParsePrototype();
583 if (Proto == 0) return 0;
586 return new FunctionAST(Proto, E);
593 // Make an anonymous proto.
594 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
595 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 178 PrototypeAST *Proto;
181 FunctionAST(PrototypeAST *proto, ExprAST *body)
182 : Proto(proto), Body(body) {}
430 PrototypeAST *Proto = ParsePrototype();
431 if (Proto == 0) return 0;
434 return new FunctionAST(Proto, E);
441 // Make an anonymous proto.
442 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
443 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 272 PrototypeAST *Proto;
275 FunctionAST(PrototypeAST *proto, ExprAST *body)
276 : Proto(proto), Body(body) {}
627 PrototypeAST *Proto = ParsePrototype();
628 if (Proto == 0) return 0;
631 return new FunctionAST(Proto, E);
638 // Make an anonymous proto.
639 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
640 return new FunctionAST(Proto, E)
    [all...]

Completed in 175 milliseconds

1 2 3