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

1 2

  /external/clang/lib/AST/
LambdaMangleContext.cpp 22 const FunctionProtoType *Proto
28 ArrayRef<QualType>(Proto->arg_type_begin(),
29 Proto->getNumArgs()),
DeclPrinter.cpp 411 std::string Proto = D->getNameInfo().getAsString();
415 Proto = '(' + Proto + ')';
425 Proto += "(";
427 llvm::raw_string_ostream POut(Proto);
441 Proto += ", ";
442 Proto += D->getParamDecl(i)->getNameAsString();
446 Proto += ")";
450 Proto += " const";
452 Proto += " volatile"
    [all...]
DeclObjC.cpp 71 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
72 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
100 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(DC)) {
101 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
130 if (const ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(this)) {
131 if (const ObjCProtocolDecl *Def = Proto->getDefinition())
280 ObjCProtocolDecl *Proto = (*p);
281 if (C.ProtocolCompatibleWithProtocol(ProtoInExtension, Proto)) {
    [all...]
MicrosoftMangle.cpp     [all...]
Expr.cpp 480 std::string Proto;
481 llvm::raw_string_ostream POut(Proto);
573 AFT->getResultType().getAsStringInternal(Proto, Policy);
575 Out << Proto;
    [all...]
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp     [all...]
ASTContext.cpp 6805 const FunctionProtoType *proto = lproto ? lproto : rproto; local
    [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/lib/Sema/
SemaLambda.cpp 694 const FunctionProtoType *Proto
699 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
702 S.Context.getFunctionType(Proto->getResultType(),
703 ArrayRef<QualType>(Proto->arg_type_begin(),
704 Proto->getNumArgs()),
768 const FunctionProtoType *Proto
772 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
775 = S.Context.getFunctionType(Proto->getResultType(),
776 ArrayRef<QualType>(Proto->arg_type_begin(),
777 Proto->getNumArgs())
    [all...]
SemaObjCProperty.cpp 119 ObjCProtocolDecl *Proto,
122 if (!Known.insert(Proto))
126 DeclContext::lookup_result R = Proto->lookup(Prop->getDeclName());
129 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier());
135 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
136 PEnd = Proto->protocol_end();
241 ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(ClassDecl);
242 for (ObjCProtocolDecl::protocol_iterator P = Proto->protocol_begin(),
243 PEnd = Proto->protocol_end();
    [all...]
SemaTemplateDeduction.cpp     [all...]
SemaTemplateInstantiateDecl.cpp     [all...]
SemaExprCXX.cpp     [all...]
SemaLookup.cpp     [all...]
SemaCodeComplete.cpp     [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 656 static bool UseMacro(const std::string &proto) {
660 if (proto.find('i') != std::string::npos)
665 if (proto.find('p') != std::string::npos ||
666 proto.find('c') != std::string::npos)
675 static bool MacroArgUsedDirectly(const std::string &proto, unsigned i) {
677 return (proto[i] == 'i' || proto[i] == 'p' || proto[i] == 'c');
681 static std::string GenArgs(const std::string &proto, StringRef typestr) {
682 bool define = UseMacro(proto);
    [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 620 Record *Proto = Lists[0][n];
638 // Copy Proto super-classes.
639 ArrayRef<Record *> Supers = Proto->getSuperClasses();
640 ArrayRef<SMRange> Ranges = Proto->getSuperClassRanges();
644 // Copy Proto fields.
645 for (unsigned i = 0, e = Proto->getValues().size(); i != e; ++i) {
646 RecordVal RV = Proto->getValues()[i];
686 // Everything else is copied from Proto.
    [all...]

Completed in 1596 milliseconds

1 2