Searched refs:Args (Results 176 - 200 of 473) sorted by relevance

1234567891011>>

/external/clang/unittests/libclang/
H A DLibclangTest.cpp438 const char *Args[] = { "-fmodules", ModulesCache.c_str(), local
440 int NumArgs = sizeof(Args) / sizeof(Args[0]);
441 ClangTU = clang_parseTranslationUnit(Index, MName.c_str(), Args, NumArgs,
/external/lldb/source/Commands/
H A DCommandObjectDisassemble.h101 DoExecute (Args& command,
H A DCommandObjectQuit.cpp82 CommandObjectQuit::DoExecute (Args& command, CommandReturnObject &result)
H A DCommandObjectSyntax.cpp18 #include "lldb/Interpreter/Args.h"
58 CommandObjectSyntax::DoExecute (Args& command, CommandReturnObject &result)
H A DCommandObjectExpression.cpp18 #include "lldb/Interpreter/Args.h"
90 result = Args::StringToBoolean(option_arg, true, &success);
101 bool tmp_value = Args::StringToBoolean(option_arg, true, &success);
112 result = Args::StringToUInt32(option_arg, 0, 0, &success);
123 bool tmp_value = Args::StringToBoolean(option_arg, true, &success);
482 Args args (command, end_options - command);
H A DCommandObjectDisassemble.cpp22 #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)
H A DCommandObjectFrame.cpp29 #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)
H A DCommandObjectType.cpp161 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)
579 DoExecute (Args
[all...]
H A DCommandObjectCommands.cpp24 #include "lldb/Interpreter/Args.h"
143 DoExecute (Args& command, CommandReturnObject &result)
269 GetRepeatCommand (Args &current_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)
538 Args args (raw_command_line);
652 HandleAliasingNormalCommand (Args& args, CommandReturnObject &result)
803 DoExecute (Args
[all...]
H A DCommandObjectMemory.cpp24 #include "lldb/Interpreter/Args.h"
374 virtual const char *GetRepeatCommand (Args &current_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);
967 m_infile_offset = Args::StringToUInt64(option_arg, 0, 0, &success);
1073 DoExecute (Args& command, CommandReturnObject &result)
1104 lldb::addr_t addr = Args::StringToAddress (&m_exe_ctx,
1213 uval64 = Args::StringToUInt64(value_str, UINT64_MAX, 16, &success);
1230 uval64 = Args
[all...]
/external/lldb/source/Interpreter/
H A DOptionValueUInt64.cpp17 #include "lldb/Interpreter/Args.h"
60 uint64_t value = Args::StringToUInt64 (value_cstr, 0, 0, &success);
H A DProperty.cpp19 #include "lldb/Interpreter/Args.h"
59 m_value_sp.reset (new OptionValueBoolean(Args::StringToBoolean (definition.default_cstr_value, false, NULL)));
111 Args::StringToFormat (definition.default_cstr_value, new_format, NULL);
136 m_value_sp.reset (new OptionValueSInt64(definition.default_cstr_value ? Args::StringToSInt64 (definition.default_cstr_value) : definition.default_uint_value));
144 m_value_sp.reset (new OptionValueUInt64(definition.default_cstr_value ? Args::StringToUInt64 (definition.default_cstr_value) : definition.default_uint_value));
/external/llvm/include/llvm/Support/
H A DProgram.h127 bool argumentsFitWithinSystemLimits(ArrayRef<const char*> Args);
/external/llvm/lib/Transforms/Instrumentation/
H A DThreadSanitizer.cpp482 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), local
485 ArrayRef<Value*>(Args));
497 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), local
501 ArrayRef<Value*>(Args));
515 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), local
518 CallInst *C = CallInst::Create(F, ArrayRef<Value*>(Args));
529 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), local
534 CallInst *C = IRB.CreateCall(TsanAtomicCAS[Idx], Args);
543 Value *Args[] = {createOrdering(&IRB, FI->getOrdering())}; local
546 CallInst *C = CallInst::Create(F, ArrayRef<Value*>(Args));
[all...]
/external/clang/lib/CodeGen/
H A DCGAtomic.cpp462 AddDirectArgument(CodeGenFunction &CGF, CallArgList &Args, argument
469 Args.add(RValue::get(Val), ValTy);
472 Args.add(RValue::get(CGF.EmitCastToVoidPtr(Val)),
606 CallArgList Args; local
609 Args.add(RValue::get(llvm::ConstantInt::get(SizeTy, Size)),
613 Args.add(RValue::get(EmitCastToVoidPtr(Ptr)), getContext().VoidPtrTy);
635 Args.add(RValue::get(EmitCastToVoidPtr(Val1)), getContext().VoidPtrTy);
636 AddDirectArgument(*this, Args, UseOptimizedLibcall, Val2, MemTy,
638 Args.add(RValue::get(Order), getContext().IntTy);
648 AddDirectArgument(*this, Args, UseOptimizedLibcal
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy.cpp180 std::vector<ExprAST*> Args; member in class:CallExprAST
183 : Callee(callee), Args(args) {}
223 std::vector<std::string> Args; member in class:PrototypeAST
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; }
304 std::vector<ExprAST*> Args; local
309 Args.push_back(Arg);
322 return new CallExprAST(IdName, Args);
1091 if (CalleeF->arg_size() != Args
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp204 std::vector<ExprAST*> Args; member in class:CallExprAST
207 : Callee(callee), Args(args) {}
247 std::vector<std::string> Args; member in class:PrototypeAST
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; }
328 std::vector<ExprAST*> Args; local
333 Args.push_back(Arg);
346 return new CallExprAST(IdName, Args);
1269 if (CalleeF->arg_size() != Args
[all...]
/external/clang/lib/Sema/
H A DSemaInit.cpp3129 MultiExprArg Args,
3165 if ((CopyInitializing || (InitListSyntax && Args.size() == 1)) &&
3175 /*ExplicitArgs*/ nullptr, Args,
3185 Args.size() == 1 &&
3187 S.AddOverloadCandidate(Constructor, FoundDecl, Args, CandidateSet,
3207 MultiExprArg Args, QualType DestType,
3210 assert((!InitListSyntax || (Args.size() == 1 && isa<InitListExpr>(Args[0]))) &&
3253 InitListExpr *ILE = cast<InitListExpr>(Args[0]);
3259 Result = ResolveConstructorOverload(S, Kind.getLocation(), Args,
3128 ResolveConstructorOverload(Sema &S, SourceLocation DeclLoc, MultiExprArg Args, OverloadCandidateSet &CandidateSet, ArrayRef<NamedDecl *> Ctors, OverloadCandidateSet::iterator &Best, bool CopyInitializing, bool AllowExplicit, bool OnlyListConstructors, bool InitListSyntax) argument
3204 TryConstructorInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, QualType DestType, InitializationSequence &Sequence, bool InitListSyntax = false) argument
4530 InitializationSequence(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, bool TopLevelOfInitList) argument
4539 InitializeFrom(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, bool TopLevelOfInitList) argument
5263 PerformConstructorInitialization(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, const InitializationSequence::Step& Step, bool &ConstructorInitRequiresZeroInit, bool IsListInitialization, SourceLocation LBraceLoc, SourceLocation RBraceLoc) argument
5646 Perform(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, MultiExprArg Args, QualType *ResultType) argument
6437 Diagnose(Sema &S, const InitializedEntity &Entity, const InitializationKind &Kind, ArrayRef<Expr *> Args) argument
[all...]
H A DSemaExprObjC.cpp1273 MultiExprArg Args,
1288 for (unsigned i = 0, e = Args.size(); i != e; i++) {
1289 if (Args[i]->isTypeDependent())
1295 result = checkUnknownAnyArg(SelLoc, Args[i], paramTy);
1297 result = DefaultArgumentPromotion(Args[i]);
1301 Args[i] = result.get();
1357 if (Args.size() < NumNamedArgs) {
1359 << 2 << NumNamedArgs << static_cast<unsigned>(Args.size());
1366 if (Args[i]->isTypeDependent())
1369 Expr *argExpr = Args[
1272 CheckMessageArgumentTypes(QualType ReceiverType, MultiExprArg Args, Selector Sel, ArrayRef<SourceLocation> SelectorLocs, ObjCMethodDecl *Method, bool isClassMessage, bool isSuperMessage, SourceLocation lbrac, SourceLocation rbrac, QualType &ReturnType, ExprValueKind &VK) argument
1923 ActOnSuperMessage(Scope *S, SourceLocation SuperLoc, Selector Sel, SourceLocation LBracLoc, ArrayRef<SourceLocation> SelectorLocs, SourceLocation RBracLoc, MultiExprArg Args) argument
1976 BuildClassMessageImplicit(QualType ReceiverType, bool isSuperReceiver, SourceLocation Loc, Selector Sel, ObjCMethodDecl *Method, MultiExprArg Args) argument
2092 Expr **Args = ArgsIn.data(); local
2145 Expr **Args = ArgsIn.data(); local
2180 ActOnClassMessage(Scope *S, ParsedType Receiver, Selector Sel, SourceLocation LBracLoc, ArrayRef<SourceLocation> SelectorLocs, SourceLocation RBracLoc, MultiExprArg Args) argument
2202 BuildInstanceMessageImplicit(Expr *Receiver, QualType ReceiverType, SourceLocation Loc, Selector Sel, ObjCMethodDecl *Method, MultiExprArg Args) argument
2285 Expr **Args = ArgsIn.data(); local
2538 Expr **Args = ArgsIn.data(); local
2709 ActOnInstanceMessage(Scope *S, Expr *Receiver, Selector Sel, SourceLocation LBracLoc, ArrayRef<SourceLocation> SelectorLocs, SourceLocation RBracLoc, MultiExprArg Args) argument
[all...]
/external/chromium_org/net/tools/quic/
H A Dquic_time_wait_list_manager_test.cc28 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/llvm/lib/Transforms/IPO/
H A DDeadArgumentElimination.cpp233 std::vector<Value*> Args; local
241 Args.assign(CS.arg_begin(), CS.arg_begin() + NumArgs);
258 Args, "", Call);
262 New = CallInst::Create(NF, Args, "", Call);
270 Args.clear();
860 std::vector<Value*> Args; local
890 Args.push_back(*I);
902 push_back(AttributeSet::get(F->getContext(), Args.size(), B));
908 Args.push_back(*I);
912 push_back(AttributeSet::get(F->getContext(), Args
[all...]
/external/clang/test/CXX/expr/expr.prim/expr.prim.general/
H A Dp3-0x.cpp153 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'}}
/external/clang/test/Parser/
H A Dcxx-altivec.cpp174 template<typename... Args> void PR16874() {
175 (void) (Args::foo()...); // expected-error {{expression contains unexpanded parameter pack 'Args'}} expected-error {{expected ')'}} expected-note {{to match this '('}}
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.h169 Arg Args[MaxArgs]; member in class:__ubsan::Diag
178 Args[NumArgs++] = A;
/external/lldb/include/lldb/Interpreter/
H A DOptions.h24 #include "lldb/Interpreter/Args.h"
44 /// Error Args::ParseOptions (Options &);
109 /// Args main_command;
139 /// Get the option definitions to use when parsing Args options.
141 /// @see Args::ParseOptions (Options&)
202 /// @see Args::ParseOptions (Options&)
244 HandleOptionCompletion (Args &input,
296 HandleOptionArgumentCompletion (Args &input,

Completed in 651 milliseconds

1234567891011>>