HomeSort by relevance Sort by last modified time
    Searched refs:Args (Results 76 - 100 of 538) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-2690385/tools/scan-build/bin/
scan-build 248 my $Args = shift;
251 die "No build command." if (scalar(@$Args) == 0);
253 my $Cmd = $$Args[0];
923 my $Args = shift;
927 foreach my $k (@$Args) {
935 push @$Args, $Arg;
968 my $Args = shift;
975 AddIfNotPresent($Args,"-PBXBuildsContinueAfterErrors=YES");
981 open(DETECT_XCODE, "-|", $Args->[0], "-version") or
1009 push @$Args,
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.require/
bullet_5.pass.cpp 100 #define F(Args, ...) \
101 __VA_ARGS__ R operator() Args { return MethodID<R(C::*) Args>::setUncheckedCall(); } \
102 __VA_ARGS__ R operator() Args const { return MethodID<R(C::*) Args const>::setUncheckedCall(); } \
103 __VA_ARGS__ R operator() Args volatile { return MethodID<R(C::*) Args volatile>::setUncheckedCall(); } \
104 __VA_ARGS__ R operator() Args const volatile { return MethodID<R(C::*) Args const volatile>::setUncheckedCall(); }
123 template <class ...Args>
    [all...]
  /external/clang/test/SemaCXX/
rval-references-examples.cpp 55 template<typename T, typename ...Args>
56 unique_ptr<T> make_unique_ptr(Args &&...args) {
57 return unique_ptr<T>(new T(forward<Args>(args)...));
99 template<typename F, typename ...Args>
100 void forward(F f, Args &&...args) {
101 f(static_cast<Args&&>(args)...); // expected-error{{no matching function for call to object of type 'perfect_forwarding::F0'}
    [all...]
  /external/clang/unittests/AST/
NamedDeclPrinterTest.cpp 64 PrintedNamedDeclMatches(StringRef Code, const std::vector<std::string> &Args,
74 if (!runToolOnCodeWithArgs(Factory->create(), Code, Args, FileName))
98 std::vector<std::string> Args(1, "-std=c++98");
100 Args,
110 std::vector<std::string> Args(1, "-std=c++11");
112 Args,
EvaluateAsRValueTest.cpp 90 std::vector<std::string> Args(1, Mode);
91 Args.push_back("-fno-delayed-template-parsing");
109 Args));
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...]
  /system/update_engine/update_manager/
update_manager.h 60 // and the remaining |args| depend on the arguments required by the passed
78 // Evaluates the given |policy_method| policy with the provided |args|
92 ActualArgs... args);
112 // policy with the given |args| arguments. If the method fails, the default
114 template<typename R, typename... Args>
119 Args...) const,
120 R* result, Args... args);
128 template<typename R, typename... Args>
134 Args...) const
    [all...]
  /external/clang/test/PCH/
cxx-traits.h 15 template<typename T, typename ...Args>
17 static const bool value = __is_trivially_constructible(T, Args...);
  /external/libbrillo/brillo/dbus/
dbus_signal.h 46 template<typename... Args>
54 bool Send(const Args&... args) const {
57 DBusParamWriter::Append(&signal_writer, args...);
  /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/include/llvm/Target/
TargetRecip.h 33 TargetRecip(const std::vector<std::string> &Args);
68 void parseIndividualParams(const std::vector<std::string> &Args);
  /external/llvm/lib/Option/
Arg.cpp 66 std::string Arg::getAsString(const ArgList &Args) const {
71 render(Args, ASL);
82 void Arg::renderAsInput(const ArgList &Args, ArgStringList &Output) const {
84 render(Args, Output);
91 void Arg::render(const ArgList &Args, ArgStringList &Output) const {
105 Output.push_back(Args.MakeArgString(OS.str()));
110 Output.push_back(Args.GetOrMakeJoinedArgString(
116 Output.push_back(Args.MakeArgString(getSpelling()));
  /external/clang/lib/Driver/
ToolChains.cpp 44 MachO::MachO(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
45 : ToolChain(D, Triple, Args) {
53 Darwin::Darwin(const Driver &D, const llvm::Triple &Triple, const ArgList &Args)
54 : MachO(D, Triple, Args), TargetInitialized(false) {}
131 static bool isSoftFloatABI(const ArgList &Args) {
132 Arg *A = Args.getLastArg(options::OPT_msoft_float, options::OPT_mhard_float,
142 StringRef MachO::getMachOArchName(const ArgList &Args) const {
152 if (const Arg *A = Args.getLastArg(options::OPT_march_EQ))
156 if (const Arg *A = Args.getLastArg(options::OPT_mcpu_EQ))
168 std::string MachO::ComputeEffectiveClangTriple(const ArgList &Args,
    [all...]
SanitizerArgs.cpp 63 /// Produce an argument string from ArgList \p Args, which shows how it
68 const llvm::opt::ArgList &Args,
117 const llvm::opt::ArgList &Args) {
124 for (ArgList::const_reverse_iterator I = Args.rbegin(), E = Args.rend();
200 const llvm::opt::ArgList &Args) {
217 SanitizerMask TrappingKinds = parseSanitizeTrapArgs(D, Args);
220 for (ArgList::const_reverse_iterator I = Args.rbegin(), E = Args.rend();
264 << "-fsanitize=vptr" << NoRTTIArg->getAsString(Args);
    [all...]
  /external/llvm/tools/bugpoint/
ToolRunner.cpp 59 const char **Args,
67 return sys::ExecuteAndWait(ProgramPath, Args, nullptr, Redirects,
78 const char **Args,
87 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, nullptr,
94 for (const char **Arg = Args; *Arg; ++Arg)
114 static std::string ProcessFailure(StringRef ProgPath, const char** Args,
119 for (const char **Arg = Args; *Arg; ++Arg)
132 RunProgramWithTimeout(ProgPath, Args, "", ErrorFilename.str(),
155 std::vector<std::string> ToolArgs; // Args to pass to LLI
157 LLI(const std::string &Path, const std::vector<std::string> *Args)
    [all...]
  /art/runtime/lambda/
closure_test.cc 89 // Create a closure that captures the static variables from 'args' by-value.
90 // The lambda method's captured variables types must match the ones in 'args'.
92 template <typename ... Args>
94 Args&& ... args) {
96 const size_t static_size = GetArgsSize(args ...) + header_size;
105 CopyArgs(closure_ptr->captured_[0].static_variables_, args ...);
112 template <typename T, typename ... Args>
113 static void CopyArgs(uint8_t destination[], T&& arg, Args&& ... args) {
    [all...]
  /external/clang/lib/Frontend/
CreateInvocationFromCommandLine.cpp 1 //===--- CreateInvocationFromCommandLine.cpp - CompilerInvocation from Args ==//
42 SmallVector<const char *, 16> Args(ArgList.begin(), ArgList.end());
45 Args.push_back("-fsyntax-only");
48 driver::Driver TheDriver(Args[0], llvm::sys::getDefaultTargetTriple(),
54 std::unique_ptr<driver::Compilation> C(TheDriver.BuildCompilation(Args));
  /external/llvm/include/llvm/Option/
Arg.h 107 void render(const ArgList &Args, ArgStringList &Output) const;
114 void renderAsInput(const ArgList &Args, ArgStringList &Output) const;
121 std::string getAsString(const ArgList &Args) const;
  /external/skia/include/private/
SkTLogic.h 38 // template<typename R, typename... Args> struct is_function<
39 // R [calling-convention] (Args...[, ...]) [const] [volatile] [&|&&]> : std::true_type {};
46 template <typename R, typename... Args> struct is_function<R(Args...)> : std::true_type {};
48 template <typename R, typename... Args> struct is_function<R __cdecl (Args...)> : std::true_type {};
50 template <typename R, typename... Args> struct is_function<R __stdcall (Args...)> : std::true_type {};
51 template <typename R, typename... Args> struct is_function<R __fastcall (Args...)> : std::true_type {}
    [all...]
  /external/skia/src/core/
SkLinearBitmapPipeline.h 36 template<typename Variant, typename... Args>
37 void Initialize(Args&&... args) {
41 new(&fSpace) Variant(std::forward<Args>(args)...);
  /external/webrtc/talk/app/webrtc/java/jni/
androidvideocapturer_jni.h 77 // To avoid deducing Args from the 3rd parameter of AsyncCapturerInvoke.
85 template <typename... Args>
88 void (webrtc::AndroidVideoCapturer::*method)(Args...),
89 typename Identity<Args>::type... args);
  /external/clang/lib/AST/
ExprObjC.cpp 140 ObjCMethodDecl *Method, ArrayRef<Expr *> Args,
152 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
161 ObjCMethodDecl *Method, ArrayRef<Expr *> Args,
170 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
178 ObjCMethodDecl *Method, ArrayRef<Expr *> Args,
188 initArgsAndSelLocs(Args, SelLocs, SelLocsK);
192 void ObjCMessageExpr::initArgsAndSelLocs(ArrayRef<Expr *> Args,
195 setNumArgs(Args.size());
197 for (unsigned I = 0; I != Args.size(); ++I) {
198 if (Args[I]->isTypeDependent()
    [all...]
  /external/libchrome/base/
callback_list.h 206 template <typename... Args>
207 class CallbackList<void(Args...)>
208 : public internal::CallbackListBase<Callback<void(Args...)> > {
210 typedef Callback<void(Args...)> CallbackType;
215 typename internal::CallbackParamTraits<Args>::ForwardType... args) {
220 cb->Run(args...);
  /external/libweave/third_party/chromium/base/
callback_list.h 206 template <typename... Args>
207 class CallbackList<void(Args...)>
208 : public internal::CallbackListBase<Callback<void(Args...)> > {
210 typedef Callback<void(Args...)> CallbackType;
215 typename internal::CallbackParamTraits<Args>::ForwardType... args) {
220 cb->Run(args...);
  /external/clang/include/clang/Frontend/
Utils.h 183 createInvocationFromCommandLine(ArrayRef<const char *> Args,
189 int getLastArgIntValue(const llvm::opt::ArgList &Args,
193 inline int getLastArgIntValue(const llvm::opt::ArgList &Args,
196 return getLastArgIntValue(Args, Id, Default, &Diags);
199 uint64_t getLastArgUInt64Value(const llvm::opt::ArgList &Args,
203 inline uint64_t getLastArgUInt64Value(const llvm::opt::ArgList &Args,
207 return getLastArgUInt64Value(Args, Id, Default, &Diags);

Completed in 572 milliseconds

1 2 34 5 6 7 8 91011>>