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

1 2

  /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...]
Expr.cpp 496 std::string Proto;
497 llvm::raw_string_ostream POut(Proto);
589 AFT->getResultType().getAsStringInternal(Proto, Policy);
591 Out << Proto;
    [all...]
ItaniumMangle.cpp     [all...]
StmtPrinter.cpp     [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/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 811 const FunctionProtoType *Proto
816 FunctionProtoType::ExtProtoInfo ExtInfo = Proto->getExtProtoInfo();
818 FunctionTy = S.Context.getFunctionType(Proto->getResultType(),
819 Proto->getArgTypes(), ExtInfo);
    [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...]
  /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/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/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/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/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/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/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/utils/TableGen/
CodeGenRegisters.cpp 582 Record *Proto = Lists[0][n];
600 // Copy Proto super-classes.
601 ArrayRef<Record *> Supers = Proto->getSuperClasses();
602 ArrayRef<SMRange> Ranges = Proto->getSuperClassRanges();
606 // Copy Proto fields.
607 for (unsigned i = 0, e = Proto->getValues().size(); i != e; ++i) {
608 RecordVal RV = Proto->getValues()[i];
648 // Everything else is copied from Proto.
    [all...]

Completed in 391 milliseconds

1 2