/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 130 std::vector<std::unique_ptr<ExprAST>> Args; 134 std::vector<std::unique_ptr<ExprAST>> Args) 135 : Callee(Callee), Args(std::move(Args)) {} 144 std::vector<std::string> Args; 147 PrototypeAST(const std::string &Name, std::vector<std::string> Args) 148 : Name(Name), Args(std::move(Args)) {} 238 std::vector<std::unique_ptr<ExprAST>> Args; 242 Args.push_back(std::move(Arg)) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 136 std::vector<std::unique_ptr<ExprAST>> Args; 140 std::vector<std::unique_ptr<ExprAST>> Args) 141 : Callee(Callee), Args(std::move(Args)) {} 150 std::vector<std::string> Args; 153 PrototypeAST(const std::string &Name, std::vector<std::string> Args) 154 : Name(Name), Args(std::move(Args)) {} 244 std::vector<std::unique_ptr<ExprAST>> Args; 248 Args.push_back(std::move(Arg)) [all...] |
/prebuilts/go/darwin-x86/src/encoding/gob/ |
dump.go | 21 if len(os.Args) > 1 { 22 file, err = os.Open(os.Args[1])
|
/prebuilts/go/darwin-x86/src/net/ |
interface_linux_test.go | 21 Args: []string{"ip", "link", "add", ti.name, "type", "dummy"}, 25 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name}, 29 Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name}, 33 Args: []string{"ip", "link", "delete", ti.name, "type", "dummy"}, 46 Args: []string{"ip", "tunnel", "add", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote}, 50 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name}, 54 Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name}, 58 Args: []string{"ip", "tunnel", "del", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
|
/prebuilts/go/darwin-x86/test/chan/ |
goroutines.go | 23 if len(os.Args) > 1 { 25 n, err = strconv.Atoi(os.Args[1])
|
/prebuilts/go/linux-x86/src/encoding/gob/ |
dump.go | 21 if len(os.Args) > 1 { 22 file, err = os.Open(os.Args[1])
|
/prebuilts/go/linux-x86/src/net/ |
interface_linux_test.go | 21 Args: []string{"ip", "link", "add", ti.name, "type", "dummy"}, 25 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name}, 29 Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name}, 33 Args: []string{"ip", "link", "delete", ti.name, "type", "dummy"}, 46 Args: []string{"ip", "tunnel", "add", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote}, 50 Args: []string{"ip", "address", "add", ti.local, "peer", ti.remote, "dev", ti.name}, 54 Args: []string{"ip", "address", "del", ti.local, "peer", ti.remote, "dev", ti.name}, 58 Args: []string{"ip", "tunnel", "del", ti.name, "mode", "gre", "local", ti.local, "remote", ti.remote},
|
/prebuilts/go/linux-x86/test/chan/ |
goroutines.go | 23 if len(os.Args) > 1 { 25 n, err = strconv.Atoi(os.Args[1])
|
/external/clang/unittests/Tooling/ |
TestVisitor.h | 53 std::vector<std::string> Args; 55 case Lang_C: Args.push_back("-std=c99"); break; 56 case Lang_CXX98: Args.push_back("-std=c++98"); break; 57 case Lang_CXX11: Args.push_back("-std=c++11"); break; 58 case Lang_OBJC: Args.push_back("-ObjC"); break; 60 Args.push_back("-ObjC++"); 61 Args.push_back("-std=c++11"); 62 Args.push_back("-fblocks"); 65 return tooling::runToolOnCodeWithArgs(CreateTestAction(), Code, Args);
|
/external/libcxx/test/support/ |
nasty_containers.hpp | 90 template <class... Args> 91 void emplace_back(Args&&... args) { v_.emplace_back(std::forward<Args>(args)...); } 98 template <class... Args> iterator emplace(const_iterator pos, Args&&... args) 99 { return v_.emplace(pos, std::forward<Args>(args)...); [all...] |
/external/llvm/lib/Fuzzer/ |
FuzzerDriver.cpp | 135 static void ParseFlags(const std::vector<std::string> &Args) { 146 for (size_t A = 1; A < Args.size(); A++) { 147 if (ParseOneFlag(Args[A].c_str())) continue; 148 Inputs->push_back(Args[A]); 181 static int RunInMultipleProcesses(const std::vector<std::string> &Args, 186 for (auto &S : Args) { 216 std::vector<std::string> Args(argv, argv + argc); 217 return FuzzerDriver(Args, USF); 220 int FuzzerDriver(const std::vector<std::string> &Args, UserCallback Callback) { 223 return FuzzerDriver(Args, SUSF) [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/ |
nasty_containers.hpp | 90 template <class... Args> 91 void emplace_back(Args&&... args) { v_.emplace_back(std::forward<Args>(args)...); } 98 template <class... Args> iterator emplace(const_iterator pos, Args&&... args) 99 { return v_.emplace(pos, std::forward<Args>(args)...); [all...] |
/external/clang/lib/Sema/ |
SemaOverload.cpp | 845 MultiExprArg Args, 847 for (unsigned i = 0, e = Args.size(); i != e; ++i) 848 if (checkPlaceholderForOverload(S, Args[i], &unbridged)) [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
ClassDumper.java | 37 * @param args bag of commandline arguments 40 String filePath, Args args) { 42 new ClassDumper(bytes, out, filePath, args); 51 String filePath, Args args) { 52 super(bytes, out, filePath, args);
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/ |
resumable_streaming_upload.py | 36 Args: 62 Args: 165 Args:
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
Registry.h | 100 /// \param Args The argument list for the matcher. The number and types of the 110 ArrayRef<ParserValue> Args, 122 ArrayRef<ParserValue> Args,
|
/external/clang/include/clang/Driver/ |
SanitizerArgs.h | 42 SanitizerArgs(const ToolChain &TC, const llvm::opt::ArgList &Args); 63 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
|
/external/clang/lib/ASTMatchers/Dynamic/ |
Marshallers.h | 108 ArrayRef<ParserValue> Args, 166 ArrayRef<ParserValue> Args, 184 ArrayRef<ParserValue> Args, 186 return Marshaller(Func, MatcherName, NameRange, Args, Error); 283 ArrayRef<ParserValue> Args, Diagnostics *Error) { 284 ArgT **InnerArgs = new ArgT *[Args.size()](); 287 for (size_t i = 0, e = Args.size(); i != e; ++i) { 289 const ParserValue &Arg = Args[i]; 303 Args.size()))); 306 for (size_t i = 0, e = Args.size(); i != e; ++i) [all...] |
/external/clang/lib/CodeGen/ |
CGLoopInfo.cpp | 30 SmallVector<Metadata *, 4> Args; 33 Args.push_back(TempNode.get()); 40 Args.push_back(MDNode::get(Ctx, Vals)); 48 Args.push_back(MDNode::get(Ctx, Vals)); 56 Args.push_back(MDNode::get(Ctx, Vals)); 65 Args.push_back(MDNode::get(Ctx, Vals)); 78 Args.push_back(MDNode::get(Ctx, Vals)); 82 MDNode *LoopID = MDNode::get(Ctx, Args);
|
/external/llvm/include/llvm/IR/ |
LegacyPassNameParser.h | 129 template<const char *Args> 133 return(std::strstr(Args, P.getPassArgument()));
|
/external/llvm/include/llvm/Option/ |
OptTable.h | 130 Arg *ParseOneArg(const ArgList &Args, unsigned &Index, 152 InputArgList ParseArgs(ArrayRef<const char *> Args, unsigned &MissingArgIndex,
|
/external/llvm/lib/Target/Mips/ |
Mips16ISelLowering.h | 41 getMips16HelperFunctionStubNumber(ArgListTy &Args) const; 44 (Type* RetTy, ArgListTy &Args, bool &needHelper) const;
|
/hardware/qcom/display/msm8996/sdm/libs/hwc2/ |
hwc_session.h | 47 template <typename... Args> 49 HWC2::Error (HWCDisplay::*member)(Args...), Args... args) { 58 status = (hwc_display->*member)(std::forward<Args>(args)...); 63 template <typename... Args> 65 hwc2_layer_t layer, HWC2::Error (HWCLayer::*member)(Args...), 66 Args... args) { [all...] |
/prebuilts/go/darwin-x86/src/cmd/dist/ |
main.go | 30 if len(os.Args) < 2 { 33 cmd := os.Args[1] 34 os.Args = os.Args[1:] // for flag parsing during cmd
|
/prebuilts/go/darwin-x86/src/cmd/link/internal/ld/ |
pobj.go | 67 for _, arg := range os.Args { 123 var args []string 124 for i := 0; i < len(os.Args); i++ { 125 arg := os.Args[i] 126 if (arg == "-X" || arg == "--X") && i+2 < len(os.Args) && !strings.Contains(os.Args[i+1], "=") { 128 arg, os.Args[i+1], os.Args[i+2], 129 arg, os.Args[i+1], os.Args[i+2] [all...] |