HomeSort by relevance Sort by last modified time
    Searched refs:ArgNames (Results 1 - 25 of 46) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 293 std::vector<std::string> ArgNames;
295 ArgNames.push_back(IdentifierStr);
302 return new PrototypeAST(FnName, ArgNames);
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 336 std::vector<std::string> ArgNames;
338 ArgNames.push_back(IdentifierStr);
345 return helper::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
toy.cpp 305 std::vector<std::string> ArgNames;
307 ArgNames.push_back(IdentifierStr);
314 return new PrototypeAST(FnName, ArgNames);
  /external/clang/lib/Edit/
EditedSource.cpp 48 auto &ArgNames = ExpansionToArgMap[ExpLoc.getRawEncoding()];
49 if (std::find(ArgNames.begin(), ArgNames.end(), II) == ArgNames.end()) {
50 ArgNames.push_back(II);
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 346 std::vector<std::string> ArgNames;
348 ArgNames.push_back(IdentifierStr);
355 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 355 std::vector<std::string> ArgNames;
357 ArgNames.push_back(IdentifierStr);
364 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
toy.cpp 312 std::vector<std::string> ArgNames;
314 ArgNames.push_back(IdentifierStr);
321 return new PrototypeAST(FnName, ArgNames);
  /external/google-benchmark/test/
reporter_output_test.cc 155 BENCHMARK(BM_arg_names)->Args({2, 5, 4})->ArgNames({"first", "", "third"});
  /external/libcxx/utils/google-benchmark/test/
reporter_output_test.cc 155 BENCHMARK(BM_arg_names)->Args({2, 5, 4})->ArgNames({"first", "", "third"});
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
toy.cpp 494 std::vector<std::string> ArgNames;
496 ArgNames.push_back(IdentifierStr);
504 if (Kind && ArgNames.size() != Kind)
507 return new PrototypeAST(FnName, ArgNames, Kind != 0, BinaryPrecedence);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 480 std::vector<std::string> ArgNames;
482 ArgNames.push_back(IdentifierStr);
489 return llvm::make_unique<PrototypeAST>(FnName, std::move(ArgNames));
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
toy.cpp 413 std::vector<std::string> ArgNames;
415 ArgNames.push_back(IdentifierStr);
422 return new PrototypeAST(FnName, ArgNames);
  /external/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/TableGen/
Record.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/TableGen/
Record.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/TableGen/
Record.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/TableGen/
Record.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/TableGen/
Record.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/TableGen/
Record.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/TableGen/
Record.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/TableGen/
Record.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/TableGen/
Record.h     [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
toy.cpp 637 std::vector<std::string> ArgNames;
639 ArgNames.push_back(IdentifierStr);
647 if (Kind && ArgNames.size() != Kind)
650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 637 std::vector<std::string> ArgNames;
639 ArgNames.push_back(IdentifierStr);
647 if (Kind && ArgNames.size() != Kind)
650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 637 std::vector<std::string> ArgNames;
639 ArgNames.push_back(IdentifierStr);
647 if (Kind && ArgNames.size() != Kind)
650 return llvm::make_unique<PrototypeAST>(FnName, ArgNames, Kind != 0,
    [all...]

Completed in 875 milliseconds

1 2