/dalvik/dx/src/com/android/dx/command/dump/ |
Main.java | 29 static Args parsedArgs = new Args(); 41 public static void main(String[] args) { 44 for (/*at*/; at < args.length; at++) { 45 String arg = args[at]; 78 if (at == args.length) { 83 for (/*at*/; at < args.length; at++) { 85 String name = args[at];
|
/external/clang/include/clang/AST/ |
Comment.h | 323 ArrayRef<Argument> Args; 330 ArrayRef<Argument> Args) : 332 Args(Args) { 363 return Args.size(); 367 return Args[Idx].Text; 371 return Args[Idx].Range; 614 ArrayRef<Argument> Args; 675 return Args.size(); 679 return Args[Idx].Text [all...] |
/external/clang/include/clang/ASTMatchers/Dynamic/ |
Diagnostics.h | 146 std::vector<std::string> Args; 155 std::vector<std::string> Args;
|
/external/clang/lib/ASTMatchers/Dynamic/ |
Parser.cpp | 343 std::vector<ParserValue> Args; 351 // End of args. 355 if (Args.size() > 0) { 367 Args.size() + 1); 375 Args.push_back(ArgValue); 430 *Ctor, MatcherRange, BindID, Args, Error); 538 ArrayRef<ParserValue> Args, Diagnostics *Error) { 540 return Registry::constructMatcher(Ctor, NameRange, Args, Error); 542 return Registry::constructBoundMatcher(Ctor, NameRange, BindID, Args,
|
/external/clang/test/CXX/class.derived/class.virtual/ |
p3-0x.cpp | 40 template<typename... Args> 42 virtual void f(Args...) override; // expected-error {{'f' marked 'override' but does not override any member functions}}
|
/external/clang/test/SemaCXX/ |
captured-statements.cpp | 151 template <typename T, typename... Args> 152 T captured_sum(const T &a, const Args&... args) { 157 result = a + captured_sum(args...);
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
toy.cpp | 172 std::vector<std::unique_ptr<ExprAST>> Args; 176 std::vector<std::unique_ptr<ExprAST>> Args) 177 : Callee(Callee), Args(std::move(Args)) {} 211 std::vector<std::string> Args; 216 PrototypeAST(const std::string &Name, std::vector<std::string> Args, 218 : Name(Name), Args(std::move(Args)), IsOperator(IsOperator), 223 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 224 bool isBinaryOp() const { return IsOperator && Args.size() == 2; [all...] |
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 178 std::vector<std::unique_ptr<ExprAST>> Args; 182 std::vector<std::unique_ptr<ExprAST>> Args) 183 : Callee(Callee), Args(std::move(Args)) {} 230 std::vector<std::string> Args; 235 PrototypeAST(const std::string &Name, std::vector<std::string> Args, 237 : Name(Name), Args(std::move(Args)), IsOperator(IsOperator), 242 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 243 bool isBinaryOp() const { return IsOperator && Args.size() == 2; [all...] |
/external/llvm/include/llvm/CodeGen/ |
FastISel.h | 73 ArgListTy Args; 108 Args = std::move(ArgsList); 132 Args = std::move(ArgsList); 146 Args = std::move(ArgsList); 147 NumFixedArgs = (FixedArgs == ~0U) ? Args.size() : FixedArgs; 162 Args = std::move(ArgsList); 163 NumFixedArgs = (FixedArgs == ~0U) ? Args.size() : FixedArgs; 177 ArgListTy &getArgs() { return Args; }
|
/external/llvm/lib/IR/ |
Module.cpp | 154 va_list Args; 155 va_start(Args, RetTy); 159 while (Type *ArgTy = va_arg(Args, Type*)) 162 va_end(Args); 172 va_list Args; 173 va_start(Args, RetTy); 177 while (Type *ArgTy = va_arg(Args, Type*)) 180 va_end(Args);
|
/external/llvm/lib/Target/AArch64/ |
AArch64CollectLOH.cpp | 626 SmallVector<const MachineInstr *, 2> Args; 627 Args.push_back(L2); 628 Args.push_back(L1); 629 AArch64FI.addLOHDirective(MCLOH_AdrpAdrp, Args); 763 SmallVector<const MachineInstr *, 2> Args; 764 Args.push_back(&Def); 765 Args.push_back(&Use); 769 Args); [all...] |
/external/llvm/lib/Transforms/ObjCARC/ |
ObjCARCContract.cpp | 379 Value *Args[] = { Load->getPointerOperand(), New }; 380 if (Args[0]->getType() != I8XX) 381 Args[0] = new BitCastInst(Args[0], I8XX, "", Store); 382 if (Args[1]->getType() != I8X) 383 Args[1] = new BitCastInst(Args[1], I8X, "", Store); 385 CallInst *StoreStrong = CallInst::Create(Decl, Args, "", Store);
|
/hardware/ti/omap3/omx/system/src/openmax_il/lcml/inc/ |
LCML_DspCodec.h | 164 Args) \ 171 Args) /* Macro End */ 178 * @param args - Array of "void *" that contains the associated arguments for 188 args) \ 192 args) /* Macro End */ 237 * @param args - pointer to send some specific command to DSP 246 args) \ 250 args) /* Macro End */
|
/prebuilts/go/darwin-x86/src/net/http/cgi/ |
matryoshka_test.go | 30 Path: os.Args[0], 32 Args: []string{"-test.run=TestBeChildCGIProcess"}, 47 "env-SCRIPT_FILENAME": os.Args[0], 103 Path: os.Args[0], 105 Args: []string{"-test.run=TestBeChildCGIProcess"}, 142 Path: os.Args[0], 144 Args: []string{"-test.run=TestBeChildCGIProcess"}, 162 Path: os.Args[0], 164 Args: []string{"-test.run=TestBeChildCGIProcess"},
|
/prebuilts/go/darwin-x86/src/syscall/ |
syscall_linux_test.go | 45 tmpBinary := filepath.Join(tempDir, filepath.Base(os.Args[0])) 47 src, err := os.Open(os.Args[0]) 49 t.Fatalf("cannot open binary %q, %v", os.Args[0], err) 103 cmd := exec.Command(os.Args[0])
|
/prebuilts/go/linux-x86/src/net/http/cgi/ |
matryoshka_test.go | 30 Path: os.Args[0], 32 Args: []string{"-test.run=TestBeChildCGIProcess"}, 47 "env-SCRIPT_FILENAME": os.Args[0], 103 Path: os.Args[0], 105 Args: []string{"-test.run=TestBeChildCGIProcess"}, 142 Path: os.Args[0], 144 Args: []string{"-test.run=TestBeChildCGIProcess"}, 162 Path: os.Args[0], 164 Args: []string{"-test.run=TestBeChildCGIProcess"},
|
/prebuilts/go/linux-x86/src/syscall/ |
syscall_linux_test.go | 45 tmpBinary := filepath.Join(tempDir, filepath.Base(os.Args[0])) 47 src, err := os.Open(os.Args[0]) 49 t.Fatalf("cannot open binary %q, %v", os.Args[0], err) 103 cmd := exec.Command(os.Args[0])
|
/sdk/eclipse/scripts/ |
gen_icon.py | 14 class Args(object): 24 def main(args): 25 data = process_args(args) 29 def process_args(args): 30 if not args or len(args) != 6: 32 return Args(*args)
|
/system/update_engine/update_manager/ |
policy.h | 197 template<typename R, typename... Args> 201 Args...) const) const {
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
toy.cpp | 167 std::vector<std::unique_ptr<ExprAST>> Args) 168 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {} 173 std::vector<std::unique_ptr<ExprAST>> Args; 217 PrototypeAST(std::string Name, std::vector<std::string> Args, 219 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator), 225 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 226 bool isBinaryOp() const { return IsOperator && Args.size() == 2; } 234 std::vector<std::string> Args; [all...] |
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
toy.cpp | 166 std::vector<std::unique_ptr<ExprAST>> Args) 167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {} 172 std::vector<std::unique_ptr<ExprAST>> Args; 216 PrototypeAST(std::string Name, std::vector<std::string> Args, 218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator), 224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; } 233 std::vector<std::string> Args; [all...] |
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
toy.cpp | 166 std::vector<std::unique_ptr<ExprAST>> Args) 167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {} 172 std::vector<std::unique_ptr<ExprAST>> Args; 216 PrototypeAST(std::string Name, std::vector<std::string> Args, 218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator), 224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; } 233 std::vector<std::string> Args; [all...] |
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
toy.cpp | 166 std::vector<std::unique_ptr<ExprAST>> Args) 167 : CalleeName(std::move(CalleeName)), Args(std::move(Args)) {} 172 std::vector<std::unique_ptr<ExprAST>> Args; 216 PrototypeAST(std::string Name, std::vector<std::string> Args, 218 : Name(std::move(Name)), Args(std::move(Args)), IsOperator(IsOperator), 224 bool isUnaryOp() const { return IsOperator && Args.size() == 1; } 225 bool isBinaryOp() const { return IsOperator && Args.size() == 2; } 233 std::vector<std::string> Args; [all...] |
/external/clang/lib/Tooling/ |
Tooling.cpp | 112 std::vector<std::string> Args; 113 Args.push_back("clang-tool"); 114 Args.push_back("-fsyntax-only"); 115 Args.insert(Args.end(), ExtraArgs.begin(), ExtraArgs.end()); 116 Args.push_back(FileName.str()); 117 return Args; 122 const std::vector<std::string> &Args, const Twine &FileName, 135 ToolInvocation Invocation(getSyntaxOnlyToolArgs(Args, FileNameRef), 477 const Twine &Code, const std::vector<std::string> &Args, [all...] |
/prebuilts/go/darwin-x86/src/flag/ |
flag_test.go | 164 args := []string{ 176 if err := f.Parse(args); err != nil { 209 if len(f.Args()) != 1 { 210 t.Error("expected one argument, got", len(f.Args())) 211 } else if f.Args()[0] != extra { 212 t.Errorf("expected argument %q got %q", extra, f.Args()[0]) 246 t.Fatal("expected 3 args; got ", len(v)) 320 oldArgs := os.Args 321 defer func() { os.Args = oldArgs }() 322 os.Args = []string{"cmd", "-before", "subcmd", "-after", "args" [all...] |