/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy.cpp | 180 std::vector<ExprAST*> Args; 182 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 183 : Callee(callee), Args(args) {} 223 std::vector<std::string> Args; 227 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 229 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {} 231 bool isUnaryOp() const { return isOperator && Args.size() == 1; } 232 bool isBinaryOp() const { return isOperator && Args.size() == 2; [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
toy.cpp | 204 std::vector<ExprAST*> Args; 206 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 207 : Callee(callee), Args(args) {} 247 std::vector<std::string> Args; 251 PrototypeAST(const std::string &name, const std::vector<std::string> &args, 253 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {} 255 bool isUnaryOp() const { return isOperator && Args.size() == 1; } 256 bool isBinaryOp() const { return isOperator && Args.size() == 2; [all...] |
/external/clang/lib/Sema/ |
SemaInit.cpp | [all...] |
SemaExprObjC.cpp | 3606 Expr *args[] = { SrcExpr }; local [all...] |
SemaDeclAttr.cpp | 151 /// \brief Check if the attribute has exactly as many args as Num. May 164 /// \brief Check if the attribute has at least as many args as Num. May 455 SmallVectorImpl<Expr *> &Args, 463 Args.push_back(ArgExp); 472 Args.push_back(ArgExp); 480 Args.push_back(ArgExp); 523 Args.push_back(ArgExp); 533 // and types of args). 548 SmallVector<Expr*, 1> Args; 550 checkAttrArgsAreCapabilityObjs(S, D, Attr, Args); [all...] |
/external/chromium_org/net/tools/quic/ |
quic_time_wait_list_manager_test.cc | 28 using testing::Args; 246 .With(Args<0, 1>(PublicResetPacketEq(connection_id_, 325 .With(Args<0, 1>(PublicResetPacketEq(connection_id, 334 .With(Args<0, 1>(PublicResetPacketEq(connection_id, 362 .With(Args<0, 1>(PublicResetPacketEq(connection_id, 368 .With(Args<0, 1>(PublicResetPacketEq(other_connection_id,
|
/external/lldb/source/Commands/ |
CommandObjectDisassemble.cpp | 22 #include "lldb/Interpreter/Args.h" 78 num_lines_context = Args::StringToUInt32(option_arg, 0, 0, &success); 84 num_instructions = Args::StringToUInt32(option_arg, 0, 0, &success); 96 start_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error); 104 end_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error); 160 symbol_containing_addr = Args::StringToAddress(&exe_ctx, option_arg, LLDB_INVALID_ADDRESS, &error); 279 CommandObjectDisassemble::DoExecute (Args& command, CommandReturnObject &result)
|
CommandObjectFrame.cpp | 29 #include "lldb/Interpreter/Args.h" 79 DoExecute (Args& command, CommandReturnObject &result) 121 relative_frame_offset = Args::StringToSInt32 (option_arg, INT32_MIN, 0, &success); 191 DoExecute (Args& command, CommandReturnObject &result) 247 frame_idx = Args::StringToUInt32 (frame_idx_cstr, UINT32_MAX, 0); 351 HandleArgumentCompletion (Args &input, 377 DoExecute (Args& command, CommandReturnObject &result) 414 // If we have any args to the variable command, we will make
|
CommandObjectType.cpp | 161 Execute_ScriptSummary (Args& command, CommandReturnObject &result); 164 Execute_StringSummary (Args& command, CommandReturnObject &result); 189 DoExecute (Args& command, CommandReturnObject &result); 220 m_cascade = Args::StringToBoolean(option_arg, true, &success); 303 Execute_HandwritePython (Args& command, CommandReturnObject &result); 306 Execute_PythonClass (Args& command, CommandReturnObject &result); 310 DoExecute (Args& command, CommandReturnObject &result); 385 m_cascade = Args::StringToBoolean(option_value, true, &success); 485 DoExecute (Args& command, CommandReturnObject &result) 491 result.AppendErrorWithFormat ("%s takes one or more args.\n", m_cmd_name.c_str()) [all...] |
CommandObjectCommands.cpp | 24 #include "lldb/Interpreter/Args.h" 143 DoExecute (Args& command, CommandReturnObject &result) 269 GetRepeatCommand (Args ¤t_command_args, uint32_t index) 275 HandleArgumentCompletion (Args &input, 332 m_stop_on_continue = Args::StringToBoolean(option_arg, true, &success); 337 m_silent_run = Args::StringToBoolean(option_arg, true, &success); 375 DoExecute(Args& command, CommandReturnObject &result) 426 "def my_command_impl(debugger, args, result, internal_dict):"; 538 Args args (raw_command_line) [all...] |
CommandObjectMemory.cpp | 24 #include "lldb/Interpreter/Args.h" 374 virtual const char *GetRepeatCommand (Args ¤t_command_args, uint32_t index) 381 DoExecute (Args& command, CommandReturnObject &result) 623 addr = Args::StringToAddress(&m_exe_ctx, command.GetArgumentAtIndex(0), LLDB_INVALID_ADDRESS, &error); 635 lldb::addr_t end_addr = Args::StringToAddress(&m_exe_ctx, command.GetArgumentAtIndex(1), LLDB_INVALID_ADDRESS, 0); [all...] |
CommandObjectHelp.cpp | 63 CommandObjectHelp::DoExecute (Args& command, CommandReturnObject &result) 199 Args &input,
|
/external/llvm/lib/Transforms/IPO/ |
DeadArgumentElimination.cpp | 45 STATISTIC(NumArgumentsEliminated, "Number of unread args removed"); 48 "Number of unread args replaced with undef"); 233 std::vector<Value*> Args; 241 Args.assign(CS.arg_begin(), CS.arg_begin() + NumArgs); 258 Args, "", Call); 262 New = CallInst::Create(NF, Args, "", Call); 270 Args.clear(); 361 // Now go through all unused args and replace them with "undef". 497 // Functions with inalloca parameters are expecting args in a particular 591 DEBUG(dbgs() << "DAE - Inspecting args for fn: " << F.getName() << "\n") [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
BaseDumper.java | 69 protected Args args; field in class:BaseDumper 81 String filePath, Args args) { 83 this.rawBytes = args.rawBytes; 85 this.width = (args.width <= 0) ? 79 : args.width; 87 this.strictParse = args.strictParse; 91 this.args = args; [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/ |
chromevox_webstore_util.py | 99 Args: 107 Args: 127 Args: 136 Args:
|
/external/chromium_org/third_party/tlslite/scripts/ |
tlsdb.py | 54 class Args: 66 args = Args(sys.argv) variable 77 command = args.getLast(2).lower() 84 dbName = args.get(2) 90 dbName = args.get(2) 91 username = args.get(3) 92 password = args.get(4) 99 bits = int(args.getLast(5)) 104 dbName = args.get(2 [all...] |
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/ |
p3-0x.cpp | 153 template <typename... Args> 154 auto operator()(Args&&... args) const -> decltype(wrapped(args...)) // expected-note{{candidate template ignored: substitution failure [with Args = <int>]: use of undeclared identifier 'wrapped'}} 156 return wrapped(args...);
|
/external/compiler-rt/lib/ubsan/ |
ubsan_diag.h | 169 Arg Args[MaxArgs]; 178 Args[NumArgs++] = A;
|
/external/lldb/include/lldb/Interpreter/ |
OptionValueProperties.h | 174 GetPropertyAtIndexAsArgs (const ExecutionContext *exe_ctx, uint32_t idx, Args &args) const; 177 SetPropertyAtIndexFromArgs (const ExecutionContext *exe_ctx, uint32_t idx, const Args &args);
|
/external/lldb/source/Interpreter/ |
Android.mk | 13 Args.cpp \
|
OptionGroupPlatform.cpp | 129 if (Args::StringToVersion (option_arg,
|
/external/lldb/source/Plugins/Process/gdb-remote/ |
GDBRemoteCommunicationServer.cpp | 17 #include "lldb/Interpreter/Args.h" 374 match_info.GetProcessInfo().SetProcessID (Args::StringToUInt32(value.c_str(), LLDB_INVALID_PROCESS_ID, 0, &success)); 378 match_info.GetProcessInfo().SetParentProcessID (Args::StringToUInt32(value.c_str(), LLDB_INVALID_PROCESS_ID, 0, &success)); 382 match_info.GetProcessInfo().SetUserID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success)); 386 match_info.GetProcessInfo().SetGroupID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success)); 390 match_info.GetProcessInfo().SetEffectiveUserID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success)); 394 match_info.GetProcessInfo().SetEffectiveGroupID (Args::StringToUInt32(value.c_str(), UINT32_MAX, 0, &success)); 398 match_info.SetMatchAllUsers(Args::StringToBoolean(value.c_str(), false, &success)); 485 uint32_t response_size = Args::StringToUInt32(value.c_str(), 0, 0, &success);
|
/external/clang/lib/CodeGen/ |
CGExprCXX.cpp | 46 CallArgList Args; 49 Args.add(RValue::get(This), MD->getThisType(getContext())); 53 Args.add(RValue::get(ImplicitParam), ImplicitParamTy); 57 RequiredArgs required = RequiredArgs::forPrototypePlus(FPT, Args.size()); 59 // And the rest of the call args. 60 EmitCallArgs(Args, FPT, ArgBeg, ArgEnd); 62 return EmitCall(CGM.getTypes().arrangeCXXMethodCall(Args, FPT, required), 63 Callee, ReturnValue, Args, MD); 267 CallArgList Args; 273 Args.add(RValue::get(This), ThisType) [all...] |
/external/chromium_org/sandbox/win/src/ |
policy_engine_params.h | 188 ParameterSet& operator[](typename T::Args n) {
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/ |
_stream_hybi.py | 77 Args: 172 Args: 413 Args: 490 Args: 606 Args: 671 Args: 687 Args: 812 Args:
|