| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| StdLibraryFunctionsChecker.cpp | 389 using ArgTypes = std::vector<Optional<QualType>>; 411 Signature(ArgTypes ArgTys, RetType RetTy) { 1208 "isalnum", Signature(ArgTypes{IntTy}, RetType{IntTy}), 1226 "isalpha", Signature(ArgTypes{IntTy}, RetType{IntTy}), 1237 "isascii", Signature(ArgTypes{IntTy}, RetType{IntTy}), 1244 "isblank", Signature(ArgTypes{IntTy}, RetType{IntTy}), 1251 "iscntrl", Signature(ArgTypes{IntTy}, RetType{IntTy}), 1258 "isdigit", Signature(ArgTypes{IntTy}, RetType{IntTy}), 1265 "isgraph", Signature(ArgTypes{IntTy}, RetType{IntTy}), 1272 "islower", Signature(ArgTypes{IntTy}, RetType{IntTy}) [all...] |
| /src/sys/external/bsd/acpica/dist/parser/ |
| psobject.c | 104 WalkState->ArgTypes = ARGP_NAMESTRING; 169 WalkState->ArgTypes = WalkState->OpInfo->ParseArgs; 214 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && 215 (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) != ARGP_NAME)) 219 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); 226 INCREMENT_ARG_LIST (WalkState->ArgTypes); 244 if (!GET_CURRENT_ARG_TYPE (WalkState->ArgTypes)) 251 INCREMENT_ARG_LIST (WalkState->ArgTypes); 532 WalkState->PrevArgTypes = WalkState->ArgTypes; 538 &WalkState->ArgTypes, &WalkState->ArgCount) [all...] |
| psloop.c | 115 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), Op); 127 WalkState->ArgTypes = 0; 134 while (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) && 156 GET_CURRENT_ARG_TYPE (WalkState->ArgTypes), &Arg); 167 INCREMENT_ARG_LIST (WalkState->ArgTypes); 278 WalkState->ArgTypes = 0; 321 &WalkState->ArgTypes, &WalkState->ArgCount); 329 WalkState->ArgTypes = WalkState->PrevArgTypes; 434 if (WalkState->ArgTypes) 489 WalkState->ArgTypes, WalkState->ArgCount) [all...] |
| psargs.c | 324 if ((GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) == ARGP_SUPERNAME) || 325 (GET_CURRENT_ARG_TYPE (WalkState->ArgTypes) == ARGP_TARGET))
|
| /src/sys/external/bsd/acpica/dist/executer/ |
| exresop.c | 137 * Each 5-bit group in ArgTypes represents one required 153 UINT32 ArgTypes; 169 ArgTypes = OpInfo->RuntimeArgs; 170 if (ArgTypes == ARGI_INVALID_OPCODE) 180 Opcode, OpInfo->Name, ArgTypes)); 183 * Normal exit is with (ArgTypes == 0) at end of argument list. 189 while (GET_CURRENT_ARG_TYPE (ArgTypes)) 291 ThisArgType = GET_CURRENT_ARG_TYPE (ArgTypes); 292 INCREMENT_ARG_LIST (ArgTypes); 722 if (GET_CURRENT_ARG_TYPE (ArgTypes)) [all...] |
| /src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| CGGPUBuiltin.cpp | 25 llvm::Type *ArgTypes[] = {llvm::Type::getInt8PtrTy(M.getContext()), 28 llvm::Type::getInt32Ty(M.getContext()), ArgTypes, false); 99 llvm::SmallVector<llvm::Type *, 8> ArgTypes; 101 ArgTypes.push_back(Args[I].getRValue(*this).getScalarVal()->getType()); 108 llvm::Type *AllocaTy = llvm::StructType::create(ArgTypes, "printf_args");
|
| ObjectFilePCHContainerOperations.cpp | 104 SmallVector<QualType, 16> ArgTypes; 106 ArgTypes.push_back(i->getType()); 108 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes, 120 SmallVector<QualType, 16> ArgTypes; 121 ArgTypes.push_back(D->getSelfType(Ctx, D->getClassInterface(), 123 ArgTypes.push_back(Ctx.getObjCSelType()); 125 ArgTypes.push_back(i->getType()); 127 QualType FnTy = Ctx.getFunctionType(RetTy, ArgTypes,
|
| CGCall.cpp | 197 SmallVector<CanQualType, 16> argTypes; 198 return ::arrangeLLVMFunctionInfo(*this, /*instanceMethod=*/false, argTypes, 257 SmallVector<CanQualType, 16> argTypes; 260 argTypes.push_back(DeriveThisType(RD, MD)); 263 *this, true, argTypes, 312 SmallVector<CanQualType, 16> argTypes; 314 argTypes.push_back(DeriveThisType(MD->getParent(), MD)); 329 appendParameterTypes(*this, argTypes, paramInfos, FTP); 332 TheCXXABI.buildStructorSignature(GD, argTypes); 344 (PassParams && MD->isVariadic() ? RequiredArgs(argTypes.size() [all...] |
| CGStmt.cpp | 2235 std::vector<llvm::Type *> ArgTypes; 2352 ArgTypes.push_back(DestAddrTy); 2467 ArgTypes.push_back(Arg->getType()); 2485 ArgTypes.push_back(BA->getType()); 2496 ArgTypes.push_back(InOutArgTypes[i]); 2566 llvm::FunctionType::get(ResultType, ArgTypes, false);
|
| /src/external/apache2/llvm/dist/clang/include/clang/Basic/ |
| DirectoryEntry.h | 122 template <class... ArgTypes> 123 explicit MapEntryOptionalStorage(llvm::in_place_t, ArgTypes &&...Args) 124 : MaybeRef(std::forward<ArgTypes>(Args)...) {} 172 template <class... ArgTypes> 173 explicit OptionalStorage(in_place_t, ArgTypes &&...Args) 174 : StorageImpl(in_place_t{}, std::forward<ArgTypes>(Args)...) {}
|
| FileEntry.h | 208 template <class... ArgTypes> 209 explicit OptionalStorage(in_place_t, ArgTypes &&...Args) 210 : StorageImpl(in_place_t{}, std::forward<ArgTypes>(Args)...) {}
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| R600OpenCLImageTypeLoweringPass.cpp | 258 SmallVector<Type *, 8> ArgTypes; 266 ArgTypes.push_back(FT->getParamType(i)); 274 ArgTypes.push_back(ImageSizeType); 279 ArgTypes.push_back(ImageFormatType); 290 auto NewFT = FunctionType::get(FT->getReturnType(), ArgTypes, false);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| EntryExitInstrumenter.cpp | 44 Type *ArgTypes[] = {Type::getInt8PtrTy(C), Type::getInt8PtrTy(C)}; 47 Func, FunctionType::get(Type::getVoidTy(C), ArgTypes, false));
|
| CloneFunction.cpp | 286 std::vector<Type *> ArgTypes; 293 ArgTypes.push_back(I.getType()); 297 FunctionType::get(F->getFunctionType()->getReturnType(), ArgTypes,
|
| /src/sys/external/bsd/acpica/dist/debugger/ |
| dbexec.c | 652 LocalInfo.Types = LocalInfo.ArgTypes; 791 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes; 800 AcpiGbl_DbMethodInfo.ArgTypes[i] = *Types; 950 AcpiGbl_DbMethodInfo.Types = AcpiGbl_DbMethodInfo.ArgTypes; 951 AcpiGbl_DbMethodInfo.ArgTypes[0] = ACPI_TYPE_INTEGER; 952 AcpiGbl_DbMethodInfo.ArgTypes[1] = ACPI_TYPE_INTEGER; 953 AcpiGbl_DbMethodInfo.ArgTypes[2] = ACPI_TYPE_INTEGER;
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| Optional.h | 253 template <typename... ArgTypes> 254 constexpr Optional(in_place_t, ArgTypes &&...Args) 255 : Storage(in_place, std::forward<ArgTypes>(Args)...) {} 264 template <typename... ArgTypes> void emplace(ArgTypes &&... Args) { 265 Storage.emplace(std::forward<ArgTypes>(Args)...);
|
| SmallVector.h | 392 template <typename... ArgTypes> T &growAndEmplaceBack(ArgTypes &&... Args) { 396 ::new ((void *)(NewElts + this->size())) T(std::forward<ArgTypes>(Args)...); 537 template <typename... ArgTypes> T &growAndEmplaceBack(ArgTypes &&... Args) { 541 push_back(T(std::forward<ArgTypes>(Args)...)); 908 template <typename... ArgTypes> reference emplace_back(ArgTypes &&... Args) { 910 return this->growAndEmplaceBack(std::forward<ArgTypes>(Args)...); 912 ::new ((void *)this->end()) T(std::forward<ArgTypes>(Args)...) [all...] |
| APFloat.h | 718 template <typename... ArgTypes> 719 Storage(const fltSemantics &Semantics, ArgTypes &&... Args) { 721 new (&IEEE) IEEEFloat(Semantics, std::forward<ArgTypes>(Args)...); 725 new (&Double) DoubleAPFloat(Semantics, std::forward<ArgTypes>(Args)...);
|
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| DataFlowSanitizer.cpp | 830 SmallVector<Type *, 4> ArgTypes(T->param_begin(), T->param_end()); 831 ArgTypes.append(T->getNumParams(), PrimitiveShadowTy); 833 ArgTypes.push_back(PrimitiveShadowPtrTy); 837 return FunctionType::get(RetType, ArgTypes, T->isVarArg()); 842 SmallVector<Type *, 4> ArgTypes; 843 ArgTypes.push_back(T->getPointerTo()); 844 ArgTypes.append(T->param_begin(), T->param_end()); 845 ArgTypes.append(T->getNumParams(), PrimitiveShadowTy); 848 ArgTypes.push_back(PrimitiveShadowPtrTy); 851 ArgTypes.append(T->getNumParams(), OriginTy) [all...] |
| /src/sys/external/bsd/acpica/dist/include/ |
| acstruct.h | 92 UINT32 ArgTypes;
|
| /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/ |
| RewriteModernObjC.cpp | 419 SmallVectorImpl<QualType> &ArgTypes, 2668 SmallVector<QualType, 4> ArgTypes; 2669 ArgTypes.push_back(Context->getObjCClassType()); 2670 ArgTypes.push_back(Context->getObjCSelType()); 2672 ArgTypes.push_back(PI->getType()); 2687 getSimpleFunctionType(returnType, ArgTypes, BoxingMethod->isVariadic()); 2789 SmallVector<QualType, 4> ArgTypes; 2790 ArgTypes.push_back(Context->getObjCClassType()); 2791 ArgTypes.push_back(Context->getObjCSelType()); 2793 ArgTypes.push_back(PI->getType()) [all...] |
| RewriteObjC.cpp | 356 SmallVectorImpl<QualType> &ArgTypes, 2596 SmallVectorImpl<QualType> &ArgTypes, 2608 QualType castType = getSimpleFunctionType(returnType, ArgTypes, 2922 SmallVector<QualType, 8> ArgTypes; 2927 ArgTypes.push_back(Context->getPointerType(getSuperStructType())); 2929 ArgTypes.push_back(Context->getObjCIdType()); 2930 ArgTypes.push_back(Context->getObjCSelType()); 2939 ArgTypes.push_back(t); 2966 getSimpleFunctionType(returnType, ArgTypes, MD ? MD->isVariadic() : true); 2986 ArgTypes, MsgExprs [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Analysis/ |
| ConstructionContext.h | 268 template <typename T, typename... ArgTypes> 269 static T *create(BumpVectorContext &C, ArgTypes... Args) {
|
| /src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/ |
| ExceptionDemo.cpp | 144 typedef std::vector<llvm::Type*> ArgTypes; 164 const ArgTypes &theArgTypes, 1084 ArgTypes argTypes; 1085 argTypes.push_back(builder.getInt32Ty()); 1092 argTypes, 1347 ArgTypes unwindArgTypes; 1691 ArgTypes argTypes; 1698 argTypes.clear() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| SelectionDAG.h | 371 template <typename SDNodeT, typename... ArgTypes> 372 SDNodeT *newSDNode(ArgTypes &&... Args) { 374 SDNodeT(std::forward<ArgTypes>(Args)...); 383 template <typename SDNodeT, typename... ArgTypes> 385 ArgTypes &&... Args) { 389 return SDNodeT(IROrder, DebugLoc(), std::forward<ArgTypes>(Args)...)
|