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

1 2 3 4 5 67 8 91011>>

  /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...]
  /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...]
TypeLoc.cpp 354 const TemplateArgument *Args,
358 switch (Args[i].getKind()) {
369 ArgInfos[i] = TemplateArgumentLocInfo(Args[i].getAsExpr());
374 Context.getTrivialTypeSourceInfo(Args[i].getAsType(),
381 TemplateName Template = Args[i].getAsTemplateOrTemplatePattern();
389 Args[i].getKind() == TemplateArgument::Template ? SourceLocation()
  /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/lldb/source/Commands/
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...]
CommandObjectLog.cpp 20 #include "lldb/Interpreter/Args.h"
95 // HandleArgumentCompletion (Args &input,
183 DoExecute (Args& args,
186 if (args.GetArgumentCount() < 2)
192 std::string channel(args.GetArgumentAtIndex(0));
193 args.Shift (); // Shift off the channel
200 args.GetConstArgumentVector(),
271 DoExecute (Args& args,
    [all...]
CommandObjectMultiword.cpp 114 Args args (args_string);
115 const size_t argc = args.GetArgumentCount();
122 const char *sub_command = args.GetArgumentAtIndex (0);
139 args.Shift();
225 Args &input,
298 CommandObjectMultiword::GetRepeatCommand (Args &current_command_args, uint32_t index)
454 CommandObjectProxy::HandleCompletion (Args &input,
475 CommandObjectProxy::HandleArgumentCompletion (Args &input,
499 CommandObjectProxy::GetRepeatCommand (Args &current_command_args
    [all...]
  /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)...);
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
template_writer.py 15 Args:
36 Args:
48 Args:
63 Args:
97 Args:
109 Args:
133 Args:
177 Args:
189 Args:
198 Args
    [all...]
  /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/chromium_org/chrome/test/ispy/common/
ispy_utils.py 29 Args:
42 Args:
56 Args:
72 Args:
81 Args:
91 Args:
105 Args:
117 Args:
137 Args:
169 Args
    [all...]
  /external/clang/include/clang/AST/
Comment.h 321 ArrayRef<Argument> Args;
328 ArrayRef<Argument> Args) :
330 Args(Args) {
361 return Args.size();
365 return Args[Idx].Text;
369 return Args[Idx].Range;
612 ArrayRef<Argument> Args;
673 return Args.size();
677 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;

Completed in 917 milliseconds

1 2 3 4 5 67 8 91011>>