HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 226 - 250 of 537) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/Commands/
CommandObjectHelp.cpp 63 CommandObjectHelp::DoExecute (Args& command, CommandReturnObject &result)
199 Args &input,
CommandObjectWatchpointCommand.cpp 411 m_script_language = (lldb::ScriptLanguage) Args::StringToOptionEnum (option_arg,
429 m_stop_on_error = Args::StringToBoolean(option_arg, false, &success);
486 DoExecute (Args& command, CommandReturnObject &result)
652 DoExecute (Args& command, CommandReturnObject &result)
743 DoExecute (Args& command,
    [all...]
  /external/lldb/source/Interpreter/
Android.mk 13 Args.cpp \
OptionGroupPlatform.cpp 129 if (Args::StringToVersion (option_arg,
OptionValueBoolean.cpp 18 #include "lldb/Interpreter/Args.h"
53 bool value = Args::StringToBoolean(value_cstr, false, &success);
OptionValueFileSpec.cpp 20 #include "lldb/Interpreter/Args.h"
87 Args args(value_cstr);
88 if (args.GetArgumentCount() == 1)
90 const char *path = args.GetArgumentAtIndex(0);
  /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/Sema/
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/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...]
CGCall.cpp 248 CodeGenTypes::arrangeCXXConstructorCall(const CallArgList &args,
254 for (CallArgList::const_iterator i = args.begin(), e = args.end(); i != e;
376 const CallArgList &args,
379 assert(args.size() >= numExtraRequiredArgs);
395 .isNoProtoCallVariadic(args,
397 required = RequiredArgs(args.size());
400 return CGT.arrangeFreeFunctionCall(fnType->getReturnType(), args,
409 CodeGenTypes::arrangeFreeFunctionCall(const CallArgList &args,
411 return arrangeFreeFunctionLikeCall(*this, CGM, args, fnType, 0)
    [all...]
CodeGenFunction.cpp 319 llvm::Value *args[] = { local
324 EmitNounwindRuntimeCall(F, args);
525 const FunctionArgList &Args,
594 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
649 EmitFunctionProlog(*CurFnInfo, CurFn, Args);
675 for (FunctionArgList::const_iterator i = Args.begin(), e = Args.end();
696 void CodeGenFunction::EmitFunctionBody(FunctionArgList &Args,
765 FunctionArgList Args;
    [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:
  /external/lldb/source/Plugins/Platform/gdb-server/
PlatformRemoteGDBServer.h 133 ConnectRemote (lldb_private::Args& args);
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 238 Value *Args[] = { OldEnd->getArgOperand(0), NewPhi };
239 Ret = CallInst::Create(ElseBreak, Args, "", OldEnd);
253 Value *Args[] = { Cond, Broken };
254 return CallInst::Create(IfBreak, Args, "", Insert);
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 58 TargetLowering::ArgListTy Args;
62 Args.push_back(Entry);
64 Args.push_back(Entry);
69 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args),
  /dalvik/dx/src/com/android/dx/command/dump/
DotDumper.java 48 private final Args args; field in class:DotDumper
50 static void dump(byte[] bytes, String filePath, Args args) {
51 new DotDumper(bytes, filePath, args).run();
54 DotDumper(byte[] bytes, String filePath, Args args) {
57 this.strictParse = args.strictParse;
58 this.optimize = args.optimize;
59 this.args = args
    [all...]
  /external/chromium_org/tools/metrics/histograms/
extract_histograms.py 76 Args:
90 Args:
102 Args:
121 Args:
301 Args:
428 Args:
449 Args:
  /external/clang/unittests/AST/
SourceLocationTest.cpp 236 std::vector<std::string> Args;
237 Args.push_back("-fno-delayed-template-parsing");
243 unresolvedConstructExpr(), Args, Lang_CXX11));
  /external/lldb/source/Plugins/Process/Utility/
DynamicRegisterInfo.cpp 18 #include "lldb/Interpreter/Args.h"
128 if (Args::StringToFormat(format_cstr, reg_info.format, NULL).Fail())
139 reg_info.encoding = Args::StringToEncoding (encoding_cstr, eEncodingUint);
154 reg_info.kinds[lldb::eRegisterKindGeneric] = Args::StringToGenericRegister (reg_info_dict.GetItemForKeyAsString(generic_pystr));
  /external/llvm/examples/ParallelJIT/
ParallelJIT.cpp 232 std::vector<GenericValue> Args(1);
233 Args[0].IntVal = APInt(32, p->value);
236 GenericValue gv = p->EE->runFunction(p->F, Args);
  /external/clang/include/clang/AST/
DeclTemplate.h 164 TemplateArgumentList(const TemplateArgument *Args, unsigned NumArgs,
166 : Arguments(Args, Owned), NumArguments(NumArgs) { }
176 const TemplateArgument *Args,
184 const TemplateArgument *Args, unsigned NumArgs)
185 : Arguments(Args, false), NumArguments(NumArgs) { }
599 ArrayRef<TemplateArgument> Args, void *&InsertPos);
820 FunctionDecl *findSpecialization(ArrayRef<TemplateArgument> Args,
    [all...]
  /external/llvm/lib/TableGen/
SetTheory.cpp 152 SmallVector<RecSet, 4> Args(Expr->getNumArgs());
155 ST.evaluate(Expr->getArg(i), Args[i], Loc);
156 MaxSize = std::max(MaxSize, unsigned(Args[i].size()));
161 if (n < Args[i].size())
162 Elts.insert(Args[i][n]);
172 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +

Completed in 893 milliseconds

1 2 3 4 5 6 7 8 91011>>