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

1 2 3 4 5 6 7 8 91011>>

  /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/tools/dsymutil/
MachOUtils.cpp 35 static bool runLipo(StringRef SDKPath, SmallVectorImpl<const char *> &Args) {
47 sys::ExecuteAndWait(*Path, Args.data(), nullptr, nullptr, 0, 0, &ErrMsg);
75 SmallVector<const char *, 8> Args;
76 Args.push_back("lipo");
77 Args.push_back("-create");
80 Args.push_back(Thin.Path.c_str());
85 Args.push_back("-segalign");
86 Args.push_back(Thin.Arch.c_str());
87 Args.push_back("20");
90 Args.push_back("-output")
    [all...]
  /external/clang/lib/AST/
ExprCXX.cpp 292 const TemplateArgumentListInfo *Args,
296 assert(Args || TemplateKWLoc.isValid());
297 unsigned num_args = Args ? Args->size() : 0;
302 ADL, /*Overload*/ true, Args,
417 const TemplateArgumentListInfo *Args)
428 HasTemplateKWAndArgsInfo(Args != nullptr || TemplateKWLoc.isValid())
430 if (Args) {
435 getTemplateKWAndArgsInfo()->initializeFrom(TemplateKWLoc, *Args,
450 const TemplateArgumentListInfo *Args) {
    [all...]
  /external/llvm/lib/Option/
OptTable.cpp 189 Arg *OptTable::ParseOneArg(const ArgList &Args, unsigned &Index,
193 const char *Str = Args.getArgString(Index);
232 if (Arg *A = Opt.accept(Args, Index, ArgSize))
253 InputArgList Args(ArgArr.begin(), ArgArr.end());
255 // FIXME: Handle '@' args (or at least error on them).
261 if (Args.getArgString(Index) == nullptr) {
266 StringRef Str = Args.getArgString(Index);
273 Arg *A = ParseOneArg(Args, Index, FlagsToInclude, FlagsToExclude);
285 Args.append(A);
288 return Args;
    [all...]
  /external/clang/lib/Driver/
Job.cpp 140 // In a file list, build args vector ignoring parameters that will go in the
160 llvm::ArrayRef<const char *> Args = Arguments;
164 Args = ArrayRef<const char *>(ArgsRespFile).slice(1); // no executable name
168 for (size_t i = 0, e = Args.size(); i < e; ++i) {
169 const char *const Arg = Args[i];
179 (i == 0 || StringRef(Args[i - 1]) != "-main-file-name")) {
  /external/clang/lib/FrontendTool/
ExecuteCompilerInvocation.cpp 198 auto Args = llvm::make_unique<const char*[]>(NumArgs + 2);
199 Args[0] = "clang (LLVM option parsing)";
201 Args[i + 1] = Clang->getFrontendOpts().LLVMArgs[i].c_str();
202 Args[NumArgs + 1] = nullptr;
203 llvm::cl::ParseCommandLineOptions(NumArgs + 1, Args.get());
  /external/llvm/include/llvm/IR/
Instructions.h     [all...]
  /prebuilts/go/darwin-x86/src/net/rpc/jsonrpc/
all_test.go 20 type Args struct {
36 func (t *Arith) Add(args *Args, reply *Reply) error {
37 reply.C = args.A + args.B
41 func (t *Arith) Mul(args *Args, reply *Reply) error {
42 reply.C = args.A * args.B
46 func (t *Arith) Div(args *Args, reply *Reply) error
    [all...]
  /prebuilts/go/linux-x86/src/net/rpc/jsonrpc/
all_test.go 20 type Args struct {
36 func (t *Arith) Add(args *Args, reply *Reply) error {
37 reply.C = args.A + args.B
41 func (t *Arith) Mul(args *Args, reply *Reply) error {
42 reply.C = args.A * args.B
46 func (t *Arith) Div(args *Args, reply *Reply) error
    [all...]
  /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/MCJIT/cached/
toy-jit.cpp 173 std::vector<ExprAST*> Args;
175 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
176 : Callee(callee), Args(args) {}
216 std::vector<std::string> Args;
220 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
222 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
224 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
225 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 158 std::vector<ExprAST*> Args;
160 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args)
161 : Callee(callee), Args(args) {}
201 std::vector<std::string> Args;
205 PrototypeAST(const std::string &name, const std::vector<std::string> &args,
207 : Name(name), Args(args), isOperator(isoperator), Precedence(prec) {}
209 bool isUnaryOp() const { return isOperator && Args.size() == 1; }
210 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...]
  /art/runtime/base/
stl_util.h 112 // Invoke the constructor of 'T' with the provided args, and wrap the result in a unique ptr.
113 template <typename T, typename ... Args>
114 std::unique_ptr<T> MakeUnique(Args&& ... args) {
115 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
  /external/clang/lib/CodeGen/
CGClass.cpp 698 FunctionArgList &Args) {
728 CGF.CGM.getCXXABI().getSrcArgforCopyCtor(Constructor, Args);
730 = CGF.Builder.CreateLoad(CGF.GetAddrOfLocalVar(Args[SrcArgIndex]));
    [all...]
  /external/libcxx/test/support/
allocators.h 147 template <class U, class ...Args>
148 void construct(U* p, Args&& ...args)
150 ::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)...);
  /frameworks/av/include/media/
RingBuffer.h 121 template <class... Args>
122 void emplace(Args&&... args);
290 template <class... Args>
291 void RingBuffer<T>::emplace(Args&&... args) {
293 mBuffer.emplace_back(std::forward<Args>(args)...);
299 mBuffer[mFrontIdx] = T(std::forward<Args>(args)...)
    [all...]
  /frameworks/base/tools/aapt2/test/
Builders.h 149 template <typename... Args>
150 ValueBuilder(Args&&... args) : mValue(new T{ std::forward<Args>(args)... }) {
153 template <typename... Args>
154 ValueBuilder& setSource(Args&&... args) {
155 mValue->setSource(Source{ std::forward<Args>(args)... })
    [all...]
  /frameworks/native/services/sensorservice/
RingBuffer.h 121 template <class... Args>
122 void emplace(Args&&... args);
290 template <class... Args>
291 void RingBuffer<T>::emplace(Args&&... args) {
293 mBuffer.emplace_back(std::forward<Args>(args)...);
299 mBuffer[mFrontIdx] = T(std::forward<Args>(args)...)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/
buildtag.go 63 Args:
69 break Args
78 break Args
  /prebuilts/go/linux-x86/src/cmd/vet/
buildtag.go 63 Args:
69 break Args
78 break Args
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp     [all...]

Completed in 2487 milliseconds

1 2 3 4 5 6 7 8 91011>>