HomeSort by relevance Sort by last modified time
    Searched defs:Args (Results 26 - 50 of 224) sorted by null

12 3 4 5 6 7 8 9

  /external/llvm/include/llvm/MC/
MCLinkerOptimizationHint.h 104 SmallVector<MCSymbol *, 3> Args;
115 MCLOHDirective(MCLOHType Kind, const LOHArgs &Args)
116 : Kind(Kind), Args(Args.begin(), Args.end()) {
122 const LOHArgs &getArgs() const { return Args; }
171 /// \p Args to the container.
172 void addDirective(MCLOHType Kind, const MCLOHDirective::LOHArgs &Args) {
173 Directives.push_back(MCLOHDirective(Kind, Args));
  /external/llvm/lib/Target/AMDGPU/
SITypeRewriter.cpp 97 SmallVector <Value*, 8> Args;
105 Args.push_back(Builder.CreateBitCast(Arg, v4i32));
116 Args.push_back(Def->getOperand(1));
122 Args.push_back(Arg);
135 I.replaceAllUsesWith(Builder.CreateCall(NewF, Args));
R600TextureIntrinsicsReplacer.cpp 135 Value *Args[] = {
153 I.replaceAllUsesWith(Builder.CreateCall(F, Args));
  /external/llvm/lib/Target/ARM/
ARMSelectionDAGInfo.cpp 78 TargetLowering::ArgListTy Args;
82 Args.push_back(Entry);
85 Args.push_back(Entry);
91 Args.push_back(Entry);
102 Args.push_back(Entry);
105 Args.push_back(Entry);
108 Args.push_back(Entry);
124 std::move(Args), 0)
  /external/llvm/lib/Target/X86/
X86SelectionDAGInfo.cpp 79 TargetLowering::ArgListTy Args;
83 Args.push_back(Entry);
85 Args.push_back(Entry);
90 DAG.getExternalSymbol(bzeroEntry, IntPtr), std::move(Args),
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/roboto/
awsqueryrequest.py 162 Args = []
179 def __init__(self, **args):
180 self.args = args
194 def get_connection(self, **args):
196 self.connection = self.ServiceClass(**args)
221 filters = self.args.get('filters', [])
234 def process_args(self, **args):
245 self.args.update(args)
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 146 std::vector<std::string> Args;
155 std::vector<std::string> Args;
  /external/clang/include/clang/Driver/
ToolChain.h 71 const llvm::opt::ArgList &Args;
99 const llvm::opt::ArgList &Args);
182 TranslateArgs(const llvm::opt::DerivedArgList &Args,
259 virtual std::string getCompilerRT(const llvm::opt::ArgList &Args,
263 const char *getCompilerRTArgString(const llvm::opt::ArgList &Args,
267 static bool needsProfileRT(const llvm::opt::ArgList &Args);
314 virtual bool UseSjLjExceptions(const llvm::opt::ArgList &Args) const {
327 ComputeLLVMTriple(const llvm::opt::ArgList &Args,
336 const llvm::opt::ArgList &Args,
370 GetRuntimeLibType(const llvm::opt::ArgList &Args) const
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Checkers/
ObjCRetainCount.h 208 llvm::SmallVector<ArgEffect, 10> Args;
216 ArrayRef<ArgEffect> getArgs() const { return Args; }
  /external/clang/lib/ASTMatchers/Dynamic/
VariantValue.cpp 180 std::vector<VariantMatcher> Args)
181 : Op(Op), Args(std::move(Args)) {}
189 for (size_t i = 0, e = Args.size(); i != e; ++i) {
192 Inner += Args[i].getTypeAsString();
199 return Ops.constructVariadicOperator(Op, Args);
204 for (const VariantMatcher &Matcher : Args) {
213 const std::vector<VariantMatcher> Args;
229 std::vector<VariantMatcher> Args) {
230 return VariantMatcher(new VariadicOpPayload(Op, std::move(Args)));
    [all...]
  /external/clang/lib/CodeGen/
CGCUDANV.cpp 65 void emitDeviceStubBody(CodeGenFunction &CGF, FunctionArgList &Args);
70 void emitDeviceStub(CodeGenFunction &CGF, FunctionArgList &Args) override;
112 FunctionArgList &Args) {
114 emitDeviceStubBody(CGF, Args);
118 FunctionArgList &Args) {
122 for (FunctionArgList::const_iterator I = Args.begin(), E = Args.end();
135 for (unsigned I = 0, E = Args.size(); I != E; ++I) {
136 llvm::Value *Args[3];
138 Args[0] = CGF.Builder.CreatePointerCast(ArgValues[I], VoidPtrTy)
195 llvm::Value *args[] = { local
    [all...]
  /external/clang/lib/Tooling/
Tooling.cpp 112 std::vector<std::string> Args;
113 Args.push_back("clang-tool");
114 Args.push_back("-fsyntax-only");
115 Args.insert(Args.end(), ExtraArgs.begin(), ExtraArgs.end());
116 Args.push_back(FileName.str());
117 return Args;
122 const std::vector<std::string> &Args, const Twine &FileName,
135 ToolInvocation Invocation(getSyntaxOnlyToolArgs(Args, FileNameRef),
477 const Twine &Code, const std::vector<std::string> &Args,
    [all...]
  /external/clang/tools/driver/
driver.cpp 96 /// \param Args - The vector of command line arguments.
100 SmallVectorImpl<const char*> &Args,
109 Args.insert(Args.begin() + 1, Str);
114 Args.push_back(Str);
121 for (unsigned i = 1, e = Args.size(); i != e; ++i) {
123 if (Args[i] == nullptr)
125 std::string Repl = llvm::Regex(MatchPattern).sub(ReplPattern, Args[i]);
127 if (Repl != Args[i]) {
128 OS << "### Replacing '" << Args[i] << "' with '" << Repl << "'\n"
    [all...]
  /external/clang/unittests/AST/
MatchVerifier.h 47 std::vector<std::string> Args;
48 return match(Code, AMatcher, Args, Lang_CXX);
55 std::vector<std::string> Args;
56 return match(Code, AMatcher, Args, L);
62 std::vector<std::string>& Args,
89 std::vector<std::string>& Args, Language L) {
98 Args.push_back("-std=c99");
102 Args.push_back("-std=c89");
106 Args.push_back("-std=c++98");
110 Args.push_back("-std=c++11")
    [all...]
  /external/clang/unittests/ASTMatchers/Dynamic/
RegistryTest.cpp 24 std::vector<ParserValue> Args() { return std::vector<ParserValue>(); }
25 std::vector<ParserValue> Args(const VariantValue &Arg1) {
30 std::vector<ParserValue> Args(const VariantValue &Arg1,
49 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(), Error);
62 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(Arg1), Error);
76 Out = Registry::constructMatcher(*Ctor, SourceRange(), Args(Arg1, Arg2),
  /external/clang/unittests/Tooling/
TestVisitor.h 53 std::vector<std::string> Args;
55 case Lang_C: Args.push_back("-std=c99"); break;
56 case Lang_CXX98: Args.push_back("-std=c++98"); break;
57 case Lang_CXX11: Args.push_back("-std=c++11"); break;
58 case Lang_OBJC: Args.push_back("-ObjC"); break;
60 Args.push_back("-ObjC++");
61 Args.push_back("-std=c++11");
62 Args.push_back("-fblocks");
65 return tooling::runToolOnCodeWithArgs(CreateTestAction(), Code, Args);
  /external/clang/unittests/libclang/
LibclangTest.cpp 450 const char *Args[] = { "-fmodules", ModulesCache.c_str(),
452 int NumArgs = sizeof(Args) / sizeof(Args[0]);
453 ClangTU = clang_parseTranslationUnit(Index, MName.c_str(), Args, NumArgs,
  /external/clang/utils/analyzer/
SATestBuild.py 686 Args = Parser.parse_args()
690 Strictness = Args.strictness
691 if Args.regenerate:
693 elif Args.update_reference:
  /external/gmock/include/gmock/
gmock-generated-matchers.h 218 // Implements the Args() matcher.
234 virtual bool MatchAndExplain(ArgsTuple args,
236 const SelectedArgs& selected_args = GetSelectedArgs(args);
263 static SelectedArgs GetSelectedArgs(ArgsTuple args) {
265 k9>::GetSelectedFields(args);
487 // Args<N1, N2, ..., Nk>(a_matcher) matches a tuple if the selected
492 Args(const InnerMatcher& matcher) {
498 Args(const InnerMatcher& matcher) {
504 Args(const InnerMatcher& matcher) {
510 Args(const InnerMatcher& matcher)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 12 template <class T, class... Args>
15 make_unique(Args &&... args) {
16 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
132 std::vector<std::unique_ptr<ExprAST>> Args;
136 std::vector<std::unique_ptr<ExprAST>> Args)
137 : Callee(Callee), Args(std::move(Args)) {}
145 std::vector<std::string> Args;
    [all...]
  /external/llvm/include/llvm/Option/
ArgList.h 36 const ArgList &Args;
57 arg_iterator(SmallVectorImpl<Arg *>::const_iterator it, const ArgList &Args,
60 : Current(it), Args(Args), Id0(Id0), Id1(Id1), Id2(Id2) {
104 arglist_type Args;
116 ArgList(ArgList &&RHS) : Args(std::move(RHS.Args)) { RHS.Args.clear(); }
118 Args = std::move(RHS.Args);
    [all...]
  /external/llvm/lib/ExecutionEngine/Interpreter/
ExternalFunctions.cpp 195 std::vector<ffi_type*> args(NumArgs);
200 args[ArgNo] = ffiTypeFor(ArgTy);
219 if (ffi_prep_cif(&cif, FFI_DEFAULT_ABI, NumArgs, rtype, &args[0]) == FFI_OK) {
300 ArrayRef<GenericValue> Args) {
301 assert(Args.size() == 1);
302 TheInterpreter->addAtExitHandler((Function*)GVTOP(Args[0]));
309 static GenericValue lle_X_exit(FunctionType *FT, ArrayRef<GenericValue> Args) {
310 TheInterpreter->exitCalled(Args[0]);
315 static GenericValue lle_X_abort(FunctionType *FT, ArrayRef<GenericValue> Args) {
325 ArrayRef<GenericValue> Args) {
    [all...]
  /external/llvm/lib/IR/
IRBuilder.cpp 256 std::vector<Value *> Args;
257 Args.push_back(B.getInt64(ID));
258 Args.push_back(B.getInt32(NumPatchBytes));
259 Args.push_back(ActualCallee);
260 Args.push_back(B.getInt32(CallArgs.size()));
261 Args.push_back(B.getInt32(Flags));
262 Args.insert(Args.end(), CallArgs.begin(), CallArgs.end());
263 Args.push_back(B.getInt32(TransitionArgs.size()));
264 Args.insert(Args.end(), TransitionArgs.begin(), TransitionArgs.end())
    [all...]
Module.cpp 154 va_list Args;
155 va_start(Args, RetTy);
159 while (Type *ArgTy = va_arg(Args, Type*))
162 va_end(Args);
172 va_list Args;
173 va_start(Args, RetTy);
177 while (Type *ArgTy = va_arg(Args, Type*))
180 va_end(Args);
  /external/llvm/lib/Target/AArch64/
AArch64MachineFunctionInfo.h 41 /// callee is expected to pop the args.
140 SmallVector<const MachineInstr *, 3> Args;
145 MILOHDirective(MCLOHType Kind, const LOHArgs &Args)
146 : Kind(Kind), Args(Args.begin(), Args.end()) {
151 const LOHArgs &getArgs() const { return Args; }
159 /// Add a LOH directive of this @p Kind and this @p Args.
160 void addLOHDirective(MCLOHType Kind, const MILOHArgs &Args) {
161 LOHContainerSet.push_back(MILOHDirective(Kind, Args));
    [all...]

Completed in 1373 milliseconds

12 3 4 5 6 7 8 9