HomeSort by: relevance | last modified time | path
    Searched defs:Proto (Results 1 - 25 of 44) sorted by relevancy

1 2

  /src/sys/external/bsd/gnu-efi/dist/apps/
drv0.c 89 * Error looking up handles for proto: 14
101 GNU_EFI_APPS_DRV0_PROTOCOL Proto;
144 &InternalGnuEfiAppsDrv0ProtocolData.Proto,
160 InternalGnuEfiAppsDrv0ProtocolData.Proto.SayHello
162 InternalGnuEfiAppsDrv0ProtocolData.Proto.GetNumberOfHello
166 /* Grab handle to this image: we'll attach our proto instance to it */
176 /* Attach our proto to the current driver image */
179 &InternalGnuEfiAppsDrv0ProtocolData.Proto, NULL);
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclCXX.cpp 166 const FunctionProtoType *Proto
168 Proto = Self->ResolveExceptionSpec(CallLoc, Proto);
169 if (!Proto)
172 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
223 for (const auto &E : Proto->exceptions())
10301 const FunctionProtoType *Proto = R->castAs<FunctionProtoType>();
10302 if (Proto->getReturnType() == Context.VoidTy && !D.isInvalidType())
10305 FunctionProtoType::ExtProtoInfo EPI = Proto->getExtProtoInfo();
10309 return Context.getFunctionType(Context.VoidTy, Proto->getParamTypes(), EPI)
    [all...]
SemaExceptionSpec.cpp 228 const FunctionProtoType *Proto =
230 if (Proto->getExceptionSpecType() == clang::EST_Unparsed) {
232 Proto = nullptr;
234 return Proto;
SemaObjCProperty.cpp 108 ObjCProtocolDecl *Proto,
111 if (!Known.insert(Proto).second)
116 Proto->lookup(Prop->getDeclName()).find_first<ObjCPropertyDecl>()) {
117 S.DiagnosePropertyMismatch(Prop, ProtoProp, Proto->getIdentifier(), true);
122 for (auto *P : Proto->protocols())
262 ObjCProtocolDecl *Proto = cast<ObjCProtocolDecl>(ClassDecl);
263 for (auto *P : Proto->protocols())
1037 for (const auto *Proto : OrigClass->all_referenced_protocols()) {
1038 if (ObjCPropertyDecl *OrigProp = Proto->FindPropertyDeclaration(
1930 if (ObjCProtocolDecl *Proto
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
KaleidoscopeJIT.h 42 std::unique_ptr<PrototypeAST> Proto;
46 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
48 : Proto(std::move(Proto)), Body(std::move(Body)) {}
toy.cpp 652 auto Proto = ParsePrototype();
653 if (!Proto)
657 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
664 // Make an anonymous proto.
665 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
667 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
1037 return *Proto;
1041 return Proto->getName();
1047 auto &P = *Proto;
1048 FunctionProtos[Proto->getName()] = std::move(Proto)
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 148 std::unique_ptr<PrototypeAST> Proto;
152 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
154 : Proto(std::move(Proto)), Body(std::move(Body)) {}
345 auto Proto = ParsePrototype();
346 if (!Proto)
350 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
357 // Make an anonymous proto.
358 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
360 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/AST/
Mangle.cpp 215 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
219 if (!Proto) {
223 assert(!Proto->isVariadic());
228 for (const auto &AT : Proto->param_types())
DeclPrinter.cpp 41 std::string &Proto);
303 std::string &Proto) {
310 Proto += " : ";
311 Out << Proto;
312 Proto.clear();
579 std::string Proto = "explicit";
580 llvm::raw_string_ostream EOut(Proto);
631 std::string Proto;
634 Proto += D->getQualifiedNameAsString();
636 llvm::raw_string_ostream OS(Proto);
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 172 std::unique_ptr<PrototypeAST> Proto;
176 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
178 : Proto(std::move(Proto)), Body(std::move(Body)) {}
372 auto Proto = ParsePrototype();
373 if (!Proto)
377 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
384 // Make an anonymous proto.
385 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
387 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 182 std::unique_ptr<PrototypeAST> Proto;
186 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
188 : Proto(std::move(Proto)), Body(std::move(Body)) {}
382 auto Proto = ParsePrototype();
383 if (!Proto)
387 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
394 // Make an anonymous proto.
395 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
397 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 542 FunctionProtoTypeLoc Proto = TL.getAsAdjusted<FunctionProtoTypeLoc>();
555 for (ParmVarDecl *Param : Proto.getParams())
559 const auto *T = Proto.getTypePtr();
567 TraverseTypeLoc(Proto.getReturnLoc());
  /src/external/apache2/llvm/dist/clang/utils/TableGen/
SveEmitter.cpp 146 std::string Proto;
173 Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy,
182 std::string getProto() const { return Proto; }
192 unsigned getNumParams() const { return Proto.size() - 1; }
218 return Proto.find_first_of("ajfrKLR@") != std::string::npos;
224 auto Idx = Proto.find_first_of("ajfrKLR@");
237 std::string Proto) const;
812 Intrinsic::Intrinsic(StringRef Name, StringRef Proto, uint64_t MergeTy,
817 : Name(Name.str()), LLVMName(LLVMName), Proto(Proto.str())
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 278 std::unique_ptr<PrototypeAST> Proto;
282 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
284 : Proto(std::move(Proto)), Body(std::move(Body)) {}
669 auto Proto = ParsePrototype();
670 if (!Proto)
674 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
681 // Make an anonymous proto.
682 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
684 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 278 std::unique_ptr<PrototypeAST> Proto;
282 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
284 : Proto(std::move(Proto)), Body(std::move(Body)) {}
669 auto Proto = ParsePrototype();
670 if (!Proto)
674 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
681 // Make an anonymous proto.
682 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
684 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 278 std::unique_ptr<PrototypeAST> Proto;
282 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
284 : Proto(std::move(Proto)), Body(std::move(Body)) {}
669 auto Proto = ParsePrototype();
670 if (!Proto)
674 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
681 // Make an anonymous proto.
682 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
684 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 227 std::unique_ptr<PrototypeAST> Proto;
231 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
233 : Proto(std::move(Proto)), Body(std::move(Body)) {}
509 auto Proto = ParsePrototype();
510 if (!Proto)
514 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
521 // Make an anonymous proto.
522 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
524 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 261 std::unique_ptr<PrototypeAST> Proto;
265 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
267 : Proto(std::move(Proto)), Body(std::move(Body)) {}
601 auto Proto = ParsePrototype();
602 if (!Proto)
606 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
613 // Make an anonymous proto.
614 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
616 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 283 std::unique_ptr<PrototypeAST> Proto;
287 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
289 : Proto(std::move(Proto)), Body(std::move(Body)) {}
674 auto Proto = ParsePrototype();
675 if (!Proto)
679 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
686 // Make an anonymous proto.
687 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
689 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 284 std::unique_ptr<PrototypeAST> Proto;
288 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
290 : Proto(std::move(Proto)), Body(std::move(Body)) {}
675 auto Proto = ParsePrototype();
676 if (!Proto)
680 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
687 // Make an anonymous proto.
688 auto Proto = std::make_unique<PrototypeAST>("__anon_expr",
690 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]
  /src/external/apache2/llvm/dist/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 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...]
  /src/external/apache2/llvm/dist/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...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGException.cpp 475 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
476 if (!Proto)
479 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
480 if (isNoexceptExceptionSpec(EST) && Proto->canThrow() == CT_Cannot) {
514 unsigned NumExceptions = Proto->getNumExceptions();
518 QualType Ty = Proto->getExceptionType(I);
578 const FunctionProtoType *Proto = FD->getType()->getAs<FunctionProtoType>();
579 if (!Proto)
582 ExceptionSpecificationType EST = Proto->getExceptionSpecType();
583 if (isNoexceptExceptionSpec(EST) && Proto->canThrow() == CT_Cannot &
    [all...]
  /src/external/apache2/llvm/dist/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 387 std::unique_ptr<PrototypeAST> Proto;
391 FunctionAST(std::unique_ptr<PrototypeAST> Proto,
393 : Proto(std::move(Proto)), Body(std::move(Body)) {}
789 auto Proto = ParsePrototype();
790 if (!Proto)
794 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E));
802 // Make an anonymous proto.
803 auto Proto = std::make_unique<PrototypeAST>(FnLoc, "__anon_expr",
805 return std::make_unique<FunctionAST>(std::move(Proto), std::move(E))
    [all...]

Completed in 81 milliseconds

1 2