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

1 2

  /external/clang/lib/AST/
LambdaMangleContext.cpp 22 const FunctionProtoType *Proto
27 Proto->arg_type_begin(),
28 Proto->getNumArgs(),
DeclObjC.cpp 205 ObjCProtocolDecl *Proto = (*p);
206 if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) {
    [all...]
DeclPrinter.cpp 410 std::string Proto = D->getNameInfo().getAsString();
414 Proto = '(' + Proto + ')';
424 Proto += "(";
426 llvm::raw_string_ostream POut(Proto);
440 Proto += ", ";
441 Proto += D->getParamDecl(i)->getNameAsString();
445 Proto += ")";
449 Proto += " const";
451 Proto += " volatile"
    [all...]
MicrosoftMangle.cpp     [all...]
Expr.cpp 417 std::string Proto = FD->getQualifiedNameAsString(Policy);
418 llvm::raw_string_ostream POut(Proto);
509 AFT->getResultType().getAsStringInternal(Proto, Policy);
511 Out << Proto;
    [all...]
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 130 PrototypeAST *Proto;
133 FunctionAST(PrototypeAST *proto, ExprAST *body)
134 : Proto(proto), Body(body) {}
308 PrototypeAST *Proto = ParsePrototype();
309 if (Proto == 0) return 0;
312 return new FunctionAST(Proto, E);
319 // Make an anonymous proto.
320 PrototypeAST *Proto = new PrototypeAST("", std::vector<std::string>());
321 return new FunctionAST(Proto, E)
    [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/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/clang/include/clang/AST/
RecursiveASTVisitor.h     [all...]
  /external/clang/lib/Sema/
SemaLambda.cpp 612 const FunctionProtoType *Proto
617 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
619 FunctionTy = S.Context.getFunctionType(Proto->getResultType(),
620 Proto->arg_type_begin(),
621 Proto->getNumArgs(),
684 const FunctionProtoType *Proto
688 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
691 = S.Context.getFunctionType(Proto->getResultType(),
692 Proto->arg_type_begin(),
693 Proto->getNumArgs()
    [all...]
SemaTemplateDeduction.cpp     [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaLookup.cpp     [all...]
SemaCodeComplete.cpp     [all...]
SemaExprCXX.cpp     [all...]
  /external/clang/tools/libclang/
RecursiveASTVisitor.h     [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/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/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/clang/lib/CodeGen/
CGException.cpp 491 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
492 if (Proto == 0)
495 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
497 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow) {
502 unsigned NumExceptions = Proto->getNumExceptions();
506 QualType Ty = Proto->getExceptionType(I);
559 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
560 if (Proto == 0)
563 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
565 if (Proto->getNoexceptSpec(getContext()) == FunctionProtoType::NR_Nothrow)
    [all...]
CodeGenModule.cpp     [all...]
  /external/clang/utils/TableGen/
NeonEmitter.cpp 654 static bool UseMacro(const std::string &proto) {
658 if (proto.find('i') != std::string::npos)
663 if (proto.find('p') != std::string::npos ||
664 proto.find('c') != std::string::npos)
673 static bool MacroArgUsedDirectly(const std::string &proto, unsigned i) {
675 return (proto[i] == 'i' || proto[i] == 'p' || proto[i] == 'c');
679 static std::string GenArgs(const std::string &proto, StringRef typestr) {
680 bool define = UseMacro(proto);
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 611 Record *Proto = Lists[0][n];
629 // Copy Proto super-classes.
630 for (unsigned i = 0, e = Proto->getSuperClasses().size(); i != e; ++i)
631 NewReg->addSuperClass(Proto->getSuperClasses()[i]);
633 // Copy Proto fields.
634 for (unsigned i = 0, e = Proto->getValues().size(); i != e; ++i) {
635 RecordVal RV = Proto->getValues()[i];
675 // Everything else is copied from Proto.
    [all...]

Completed in 1982 milliseconds

1 2