HomeSort by: relevance | last modified time | path
    Searched defs:FirstArg (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/dispatcher/
dswexec.c 400 ACPI_PARSE_OBJECT *FirstArg;
419 FirstArg = Op->Common.Value.Arg;
456 Status = AcpiDsCreateOperands (WalkState, FirstArg);
566 NextOp = FirstArg;
  /src/external/apache2/llvm/dist/clang/include/clang/Sema/
TemplateDeduction.h 204 TemplateArgument FirstArg;
  /src/external/apache2/llvm/dist/clang/tools/driver/
driver.cpp 407 auto FirstArg = std::find_if(Args.begin() + 1, Args.end(),
409 if (FirstArg != Args.end() && StringRef(*FirstArg).startswith("-cc1")) {
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IteratorModeling.cpp 382 const Expr *FirstArg = Call.getArgExpr(0);
384 const QualType FirstType = FirstArg->getType();
392 const SVal FirstArg = Call.getArgSVal(0);
394 const SVal &Iterator = IsIterFirst ? FirstArg : SecondArg;
395 const SVal &Amount = IsIterFirst ? SecondArg : FirstArg;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
MemoryBuiltins.cpp 984 Value *FirstArg = CB.getArgOperand(FnData->FstParam);
985 FirstArg = Builder.CreateZExtOrTrunc(FirstArg, IntTy);
987 return std::make_pair(FirstArg, Zero);
991 Value *Size = Builder.CreateMul(FirstArg, SecondArg);
  /src/external/apache2/llvm/dist/clang/lib/AST/
TypePrinter.cpp 2020 bool FirstArg = true;
2027 if (Argument.pack_size() && !FirstArg)
2032 if (!FirstArg)
2044 if (FirstArg && !ArgString.empty() && ArgString[0] == ':')
2053 FirstArg = false;
  /src/external/apache2/llvm/dist/llvm/lib/Support/
CommandLine.cpp 1364 int FirstArg = 1;
1366 if (argc >= 2 && argv[FirstArg][0] != '-') {
1369 ChosenSubCommand = LookupSubCommand(StringRef(argv[FirstArg]));
1371 FirstArg = 2;
1439 for (int i = FirstArg; i < argc; ++i) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaDeclAttr.cpp 3378 int FirstArg) {
3383 F->getFirstArg() == FirstArg) {
3392 return ::new (Context) FormatAttr(Context, CI, Format, FormatIdx, FirstArg);
3395 /// Handle __attribute__((format(type,idx,firstarg))) attributes based on
3483 uint32_t FirstArg;
3484 if (!checkUInt32Argument(S, AL, FirstArgExpr, FirstArg, 3))
3488 if (FirstArg != 0) {
3497 // strftime requires FirstArg to be 0 because it doesn't read from any
3500 if (FirstArg != 0) {
3506 } else if (FirstArg != 0 && FirstArg != NumArgs)
    [all...]
SemaChecking.cpp 5414 Expr *FirstArg = TheCall->getArg(0);
5415 ExprResult FirstArgResult = DefaultFunctionArrayLvalueConversion(FirstArg);
5418 FirstArg = FirstArgResult.get();
5419 TheCall->setArg(0, FirstArg);
5421 const PointerType *pointerType = FirstArg->getType()->getAs<PointerType>();
5424 << FirstArg->getType() << FirstArg->getSourceRange();
5432 << FirstArg->getType() << FirstArg->getSourceRange();
5438 << FirstArg->getType() << FirstArg->getSourceRange()
    [all...]

Completed in 50 milliseconds