HomeSort by relevance Sort by last modified time
    Searched refs:Proto (Results 1 - 25 of 51) 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/clang/lib/AST/
MangleNumberingContext.cpp 23 const FunctionProtoType *Proto
27 QualType Key = Context.getFunctionType(Context.VoidTy, Proto->getArgTypes(),
DeclPrinter.cpp 416 std::string Proto = D->getNameInfo().getAsString();
420 Proto = '(' + Proto + ')';
430 Proto += "(";
432 llvm::raw_string_ostream POut(Proto);
446 Proto += ", ";
447 Proto += D->getParamDecl(i)->getNameAsString();
451 Proto += ")";
455 Proto += " const";
457 Proto += " volatile"
    [all...]
DeclObjC.cpp 72 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
73 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
141 ObjCProtocolDecl *Proto = (*P);
142 if (Proto->HasUserDeclaredSetterMethod(Property))
167 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(DC)) {
168 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
197 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
198 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
347 ObjCProtocolDecl *Proto = (*p);
348 if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) {
    [all...]
MicrosoftMangle.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 141 PrototypeAST *Proto;
144 FunctionAST(PrototypeAST *proto, ExprAST *body)
145 : Proto(proto), Body(body) {}
320 PrototypeAST *Proto = ParsePrototype();
321 if (Proto == 0) return 0;
324 return new FunctionAST(Proto, E);
331 // Make an anonymous proto.
332 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
333 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 205 PrototypeAST *Proto;
208 FunctionAST(PrototypeAST *proto, ExprAST *body)
209 : Proto(proto), Body(body) {}
513 PrototypeAST *Proto = ParsePrototype();
514 if (Proto == 0) return 0;
517 return new FunctionAST(Proto, E);
524 // Make an anonymous proto.
525 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
526 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 127 FunctionAST(PrototypeAST *proto, ExprAST *body) {}
300 PrototypeAST *Proto = ParsePrototype();
301 if (Proto == 0) return 0;
304 return new FunctionAST(Proto, E);
311 // Make an anonymous proto.
312 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
313 return new FunctionAST(Proto, E);
  /external/clang/utils/TableGen/
NeonEmitter.cpp 853 const std::string &Proto,
861 for (size_t i = 0, end = Proto.size(); i < end; i++) {
862 switch (Proto[i]) {
911 // If NormedProto.size() == 4 and the first two proto characters are the
936 const std::string &Proto,
948 const StringRef ProtoRef(Proto);
975 // We first normalize our proto, since we only need to emit 4
976 // different types of checks, yet have more than 4 proto types
979 NormalizeProtoForRegisterPatternCreation(Name, Proto, HasNPostfix, IsQuad,
1016 const std::string &Proto,
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 148 PrototypeAST *Proto;
151 FunctionAST(PrototypeAST *proto, ExprAST *body)
152 : Proto(proto), Body(body) {}
327 PrototypeAST *Proto = ParsePrototype();
328 if (Proto == 0) return 0;
331 return new FunctionAST(Proto, E);
338 // Make an anonymous proto.
339 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
340 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 223 PrototypeAST *Proto;
226 FunctionAST(PrototypeAST *proto, ExprAST *body)
227 : Proto(proto), Body(body) {}
578 PrototypeAST *Proto = ParsePrototype();
579 if (Proto == 0) return 0;
582 return new FunctionAST(Proto, E);
589 // Make an anonymous proto.
590 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
591 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 241 PrototypeAST *Proto;
244 FunctionAST(PrototypeAST *proto, ExprAST *body)
245 : Proto(proto), Body(body) {}
596 PrototypeAST *Proto = ParsePrototype();
597 if (Proto == 0) return 0;
600 return new FunctionAST(Proto, E);
607 // Make an anonymous proto.
608 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
609 return new FunctionAST(Proto, E)
    [all...]
toy.cpp 247 PrototypeAST *Proto;
250 FunctionAST(PrototypeAST *proto, ExprAST *body)
251 : Proto(proto), Body(body) {}
602 PrototypeAST *Proto = ParsePrototype();
603 if (Proto == 0) return 0;
606 return new FunctionAST(Proto, E);
613 // Make an anonymous proto.
614 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
615 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 224 PrototypeAST *Proto;
227 FunctionAST(PrototypeAST *proto, ExprAST *body)
228 : Proto(proto), Body(body) {}
579 PrototypeAST *Proto = ParsePrototype();
580 if (Proto == 0) return 0;
583 return new FunctionAST(Proto, E);
590 // Make an anonymous proto.
591 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
592 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 226 PrototypeAST *Proto;
229 FunctionAST(PrototypeAST *proto, ExprAST *body)
230 : Proto(proto), Body(body) {}
581 PrototypeAST *Proto = ParsePrototype();
582 if (Proto == 0) return 0;
585 return new FunctionAST(Proto, E);
592 // Make an anonymous proto.
593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
594 return new FunctionAST(Proto, E)
    [all...]
toy.cpp 226 PrototypeAST *Proto;
229 FunctionAST(PrototypeAST *proto, ExprAST *body)
230 : Proto(proto), Body(body) {}
581 PrototypeAST *Proto = ParsePrototype();
582 if (Proto == 0) return 0;
585 return new FunctionAST(Proto, E);
592 // Make an anonymous proto.
593 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
594 return new FunctionAST(Proto, E)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 177 PrototypeAST *Proto;
180 FunctionAST(PrototypeAST *proto, ExprAST *body)
181 : Proto(proto), Body(body) {}
428 PrototypeAST *Proto = ParsePrototype();
429 if (Proto == 0) return 0;
432 return new FunctionAST(Proto, E);
439 // Make an anonymous proto.
440 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
441 return new FunctionAST(Proto, E)
    [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 811 const FunctionProtoType *Proto
816 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
818 FunctionTy = S.Context.getFunctionType(Proto->getResultType(),
819 Proto->getArgTypes(), ExtInfo);
    [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaCodeComplete.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 271 PrototypeAST *Proto;
274 FunctionAST(PrototypeAST *proto, ExprAST *body)
275 : Proto(proto), Body(body) {}
626 PrototypeAST *Proto = ParsePrototype();
627 if (Proto == 0) return 0;
630 return new FunctionAST(Proto, E);
637 // Make an anonymous proto.
638 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
639 return new FunctionAST(Proto, E)
    [all...]
  /external/chromium/testing/gmock/include/gmock/
gmock-actions.h 702 template <size_t N, typename Proto>
703 class SetArgumentPointeeAction<N, Proto, true> {
706 // N-th function argument to 'proto'. Both ProtocolMessage and
709 explicit SetArgumentPointeeAction(const Proto& proto) : proto_(new Proto) {
710 proto_->CopyFrom(proto);
720 const internal::linked_ptr<Proto> proto_;
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 495 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
496 if (Proto == 0)
499 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
501 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
506 unsigned NumExceptions = Proto->getNumExceptions();
510 QualType Ty = Proto->getExceptionType(I);
563 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
564 if (Proto == 0)
567 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
569 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow)
    [all...]
  /external/clang/tools/libclang/
CXCursor.h 72 CXCursor MakeCursorObjCProtocolRef(const ObjCProtocolDecl *Proto,
  /external/dnsmasq/contrib/dynamic-dnsmasq/
dynamic-dnsmasq.pl 96 Proto => 'tcp', ReuseAddr => 1,

Completed in 446 milliseconds

1 2 3