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

1 2 3 4 5 67 8 91011>>

  /external/lldb/source/Commands/
CommandObjectSettings.cpp 67 (lldb) settings set target.run-args value1 value2 value3 \n\
70 (lldb) settings show target.run-args \n\
153 HandleArgumentCompletion (Args &input,
220 Args cmd_args(command);
245 const char *var_value_cstr = Args::StripSpaces(var_value_string, true, true, false);
328 HandleArgumentCompletion (Args &input,
352 DoExecute (Args& args, CommandReturnObject &result)
356 const size_t argc = args.GetArgumentCount ();
361 const char *property_path = args.GetArgumentAtIndex (i)
    [all...]
CommandObjectProcess.cpp 24 #include "lldb/Interpreter/Args.h"
149 HandleArgumentCompletion (Args &input,
178 virtual const char *GetRepeatCommand (Args &current_command_args, uint32_t index)
186 DoExecute (Args& launch_args, CommandReturnObject &result)
224 Args target_setting_args;
244 Args environment;
414 lldb::pid_t pid = Args::StringToUInt32 (option_arg, LLDB_INVALID_PROCESS_ID, 0, &success);
462 HandleOptionArgumentCompletion (Args &input,
546 DoExecute (Args& command,
766 m_ignore = Args::StringToUInt32 (option_arg, 0, 0, &success)
    [all...]
CommandObjectThread.cpp 79 int32_t input_count = Args::StringToSInt32 (option_arg, -1, 0, &success);
91 m_start = Args::StringToUInt32 (option_arg, 0, 0, &success);
164 DoExecute (Args& command, CommandReturnObject &result)
217 uint32_t thread_idx = Args::StringToUInt32(command.GetArgumentAtIndex(i), 0, 0, &success);
303 m_avoid_no_debug = Args::StringToBoolean (option_arg, true, &success);
312 m_run_mode = (lldb::RunMode) Args::StringToOptionEnum(option_arg, enum_values, eOnlyDuringStepping, error);
408 DoExecute (Args& command, CommandReturnObject &result)
429 uint32_t step_thread_idx = Args::StringToUInt32 (thread_idx_cstr, LLDB_INVALID_INDEX32);
641 DoExecute (Args& command, CommandReturnObject &result)
673 uint32_t thread_idx = Args::StringToUInt32 (command.GetArgumentAtIndex(i), LLDB_INVALID_INDEX32, base, &success)
    [all...]
  /external/lldb/tools/lldb-perf/lib/
Measurement.h 53 template <typename... Args>
55 operator () (Args... args)
58 m_callable(args...);
167 template <typename... Args>
169 operator () (Args... args)
171 Measurement<TimeGauge,Callable>::operator()(args...);
207 template <typename... Args>
209 operator () (Args... args
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/core/
base.hpp 142 template<typename F, typename Its, typename... Args>
144 step(F op, S state, Its its, Args... args) {
146 op, state, its, *(std::get<N>(its)++), args...);
152 template<typename F, typename Its, typename... Args>
154 step(F op, S state, Its its, Args... args) {
155 return op(state, *(std::get<0>(its)++), args...);
163 template<typename F, typename Its, typename... Args>
165 step(F op, __empty state, Its its, Args... args)
    [all...]
  /external/clang/unittests/AST/
DeclPrinterTest.cpp 70 const std::vector<std::string> &Args,
80 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
104 std::vector<std::string> Args(1, "-std=c++98");
106 Args,
116 std::vector<std::string> Args(1, "-std=c++98");
118 Args,
127 std::vector<std::string> Args(1, "-std=c++11");
129 Args,
139 std::vector<std::string> Args(1, "-std=c++11");
141 Args,
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 136 std::vector<ExprAST*> Args;
138 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
139 : Callee(callee), Args(args) {}
168 std::vector<std::string> Args;
170 PrototypeAST(const std::string &name, const std::vector<std::string> &args)
171 : Name(name), Args(args) {}
235 std::vector<ExprAST*> Args;
240 Args.push_back(Arg)
    [all...]
  /external/clang/tools/scan-build/
scan-build 223 my $Args = shift;
226 die "No build command." if (scalar(@$Args) == 0);
228 my $Cmd = $$Args[0];
894 my $Args = shift;
898 foreach my $k (@$Args) {
906 push @$Args, $Arg;
938 my $Args = shift;
945 AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");
951 open(DETECT_XCODE, "-|", $Args->[0], "-version") or
979 push @$Args,
    [all...]
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
scan-build 208 my $Args = shift;
211 die "No build command." if (scalar(@$Args) == 0);
213 my $Cmd = $$Args[0];
862 my $Args = shift;
866 foreach my $k (@$Args) {
874 push @$Args, $Arg;
905 my $Args = shift;
912 AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");
918 open(DETECT_XCODE, "-|", $Args->[0], "-version") or
946 push @$Args,
    [all...]
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
scan-build 208 my $Args = shift;
211 die "No build command." if (scalar(@$Args) == 0);
213 my $Cmd = $$Args[0];
862 my $Args = shift;
866 foreach my $k (@$Args) {
874 push @$Args, $Arg;
905 my $Args = shift;
912 AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");
918 open(DETECT_XCODE, "-|", $Args->[0], "-version") or
946 push @$Args,
    [all...]
  /external/llvm/bindings/ocaml/executionengine/
executionengine_ocaml.c 238 CAMLprim value llvm_ee_run_function(LLVMValueRef F, value Args,
244 NumArgs = Wosize_val(Args);
247 GVArgs[I] = Genericvalue_val(Field(Args, I));
270 value Args, value Env,
272 CAMLparam2(Args, Env);
277 NumArgs = Wosize_val(Args);
283 CArgs[I] = String_val(Field(Args, I));
  /external/clang/lib/AST/
ExprCXX.cpp 297 const TemplateArgumentListInfo *Args,
301 assert(Args || TemplateKWLoc.isValid());
302 unsigned num_args = Args ? Args->size() : 0;
307 ADL, /*Overload*/ true, Args,
424 const TemplateArgumentListInfo *Args)
435 HasTemplateKWAndArgsInfo(Args != nullptr || TemplateKWLoc.isValid())
437 if (Args) {
442 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *Args,
457 const TemplateArgumentListInfo *Args) {
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 216 auto Args = llvm::make_unique<const char*[]>(NumArgs + 2);
217 Args[0] = "clang (LLVM option parsing)";
219 Args[i + 1] = Clang->getFrontendOpts().LLVMArgs[i].c_str();
220 Args[NumArgs + 1] = nullptr;
221 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args.get());
  /external/lldb/include/lldb/Interpreter/
CommandObject.h 19 #include "lldb/Interpreter/Args.h"
210 // Generates a nicely formatted command args string for help command output.
211 // By default, all possible args are taken into account, for example,
305 ParseOptions (Args& args, CommandReturnObject &result);
359 HandleCompletion (Args &input,
408 HandleArgumentCompletion (Args &input,
458 virtual const char *GetRepeatCommand (Args &current_command_args, uint32_t index)
572 DoExecute (Args& command,
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 161 TargetLowering::ArgListTy Args;
168 Args.push_back(Entry);
174 Args.push_back(Entry);
186 Args.push_back(Entry);
194 TLI.getPointerTy()), std::move(Args), 0)
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 156 std::vector<ExprAST*> Args;
158 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
159 : Callee(callee), Args(args) {}
199 std::vector<std::string> Args;
203 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
205 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
207 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
208 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 174 std::vector<ExprAST*> Args;
176 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
177 : Callee(callee), Args(args) {}
217 std::vector<std::string> Args;
221 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
223 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
225 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
226 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 157 std::vector<ExprAST*> Args;
159 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
160 : Callee(callee), Args(args) {}
200 std::vector<std::string> Args;
204 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
206 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
208 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
209 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 159 std::vector<ExprAST*> Args;
161 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
162 : Callee(callee), Args(args) {}
202 std::vector<std::string> Args;
206 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
208 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
210 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
211 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
toy.cpp 159 std::vector<ExprAST*> Args;
161 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
162 : Callee(callee), Args(args) {}
202 std::vector<std::string> Args;
206 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
208 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
210 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
211 bool isBinaryOp() const { return isOperator && Args.size() == 2;
    [all...]
  /external/chromium_org/tools/grit/grit/gather/
interface.py 25 Args:
53 Args:
64 Args:
129 Args:
150 Args:
  /external/clang/lib/CodeGen/
CodeGenTypes.h 179 arrangeFreeFunctionDeclaration(QualType ResTy, const FunctionArgList &Args,
191 const CGFunctionInfo &arrangeCXXConstructorCall(const CallArgList &Args,
198 const CGFunctionInfo &arrangeFreeFunctionCall(const CallArgList &Args,
201 const CallArgList &args,
204 const CGFunctionInfo &arrangeBlockFunctionCall(const CallArgList &args,
207 const CGFunctionInfo &arrangeCXXMethodCall(const CallArgList &args,
226 RequiredArgs args);
  /external/libcxx/test/support/
allocators.h 145 template <class U, class ...Args>
146 void construct(U* p, Args&& ...args)
148 ::new (p) U(std::forward<Args>(args)...);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/support/
allocators.h 145 template <class U, class ...Args>
146 void construct(U* p, Args&& ...args)
148 ::new (p) U(std::forward<Args>(args)...);

Completed in 459 milliseconds

1 2 3 4 5 67 8 91011>>