HomeSort by relevance Sort by last modified time
    Searched refs:Arg (Results 1 - 25 of 296) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/re2/re2/
variadic_function.h 10 template <typename Result, typename Param0, typename Param1, typename Arg,
11 Result (*Func)(Param0, Param1, const Arg* const [], int count)>
18 Result operator()(Param0 p0, Param1 p1, const Arg& a0) const {
19 const Arg* const args[] = { &a0 };
23 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1) const {
24 const Arg* const args[] = { &a0, &a1 };
28 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1,
29 const Arg& a2) const
    [all...]
re2.h 155 // const RE2::Arg* args[10];
157 // // ... populate args with pointers to RE2::Arg values ...
158 // // ... set n to the number of RE2::Arg objects ...
217 // We convert user-passed pointers into special Arg objects
218 class Arg;
329 const Arg* const args[], int argc);
331 bool, const StringPiece&, const RE2&, Arg, RE2::FullMatchN> FullMatch;
336 const Arg* const args[], int argc);
338 bool, const StringPiece&, const RE2&, Arg, RE2::PartialMatchN> PartialMatch;
344 const Arg* const args[], int argc)
    [all...]
  /external/regex-re2/re2/
variadic_function.h 10 template <typename Result, typename Param0, typename Param1, typename Arg,
11 Result (*Func)(Param0, Param1, const Arg* const [], int count)>
20 Result operator()(Param0 p0, Param1 p1, const Arg& a0) const {
21 const Arg* const args[] = { &a0 };
25 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1) const {
26 const Arg* const args[] = { &a0, &a1 };
30 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1,
31 const Arg& a2) const
    [all...]
re2.h 155 // const RE2::Arg* args[10];
157 // // ... populate args with pointers to RE2::Arg values ...
158 // // ... set n to the number of RE2::Arg objects ...
217 // We convert user-passed pointers into special Arg objects
218 class Arg;
329 const Arg* const args[], int argc);
331 bool, const StringPiece&, const RE2&, Arg, RE2::FullMatchN> FullMatch;
336 const Arg* const args[], int argc);
338 bool, const StringPiece&, const RE2&, Arg, RE2::PartialMatchN> PartialMatch;
344 const Arg* const args[], int argc)
    [all...]
  /external/llvm/include/llvm/Option/
Arg.h 1 //===--- Arg.h - Parsed Argument Classes ------------------------*- C++ -*-===//
11 /// \brief Defines the llvm::Arg class for parsed arguments.
29 /// The Arg class encodes just enough information to be able to
30 /// derive the argument values efficiently. In addition, Arg
34 class Arg {
35 Arg(const Arg &) LLVM_DELETED_FUNCTION;
36 void operator=(const Arg &) LLVM_DELETED_FUNCTION;
44 const Arg *BaseArg;
65 Arg(const Option Opt, StringRef Spelling, unsigned Index
    [all...]
ArgList.h 23 class Arg;
30 SmallVectorImpl<Arg*>::const_iterator Current;
48 typedef Arg * const * value_type;
49 typedef Arg * const & reference;
50 typedef Arg * const * pointer;
54 arg_iterator(SmallVectorImpl<Arg*>::const_iterator it,
61 operator const Arg*() { return *Current; }
87 /// The ArgList class manages a list of Arg instances as well as
89 /// check for the presence of Arg instances for a particular Option
97 typedef SmallVector<Arg*, 16> arglist_type
    [all...]
  /external/chromium_org/third_party/re2/util/
pcre.h 204 // We convert user-passed pointers into special Arg objects
205 class Arg;
207 // Marks end of arg list.
208 // ONLY USE IN OPTIONAL ARG DEFAULTS.
210 static Arg no_more_args;
287 const Arg& ptr1 = no_more_args,
288 const Arg& ptr2 = no_more_args,
289 const Arg& ptr3 = no_more_args,
290 const Arg& ptr4 = no_more_args,
291 const Arg& ptr5 = no_more_args
    [all...]
pcre.cc 46 PCRE::Arg PCRE::no_more_args((void*)NULL);
149 const Arg& a0,
150 const Arg& a1,
151 const Arg& a2,
152 const Arg& a3,
153 const Arg& a4,
154 const Arg& a5,
155 const Arg& a6,
156 const Arg& a7,
157 const Arg& a8
    [all...]
  /external/regex-re2/util/
pcre.h 198 // We convert user-passed pointers into special Arg objects
199 class Arg;
201 // Marks end of arg list.
202 // ONLY USE IN OPTIONAL ARG DEFAULTS.
204 static Arg no_more_args;
281 const Arg& ptr1 = no_more_args,
282 const Arg& ptr2 = no_more_args,
283 const Arg& ptr3 = no_more_args,
284 const Arg& ptr4 = no_more_args,
285 const Arg& ptr5 = no_more_args
    [all...]
pcre.cc 41 PCRE::Arg PCRE::no_more_args((void*)NULL);
144 const Arg& a0,
145 const Arg& a1,
146 const Arg& a2,
147 const Arg& a3,
148 const Arg& a4,
149 const Arg& a5,
150 const Arg& a6,
151 const Arg& a7,
152 const Arg& a8
    [all...]
  /external/clang/lib/Tooling/
ArgumentsAdjusters.cpp 30 StringRef Arg = Args[i];
32 if (!Arg.startswith("-fcolor-diagnostics") &&
33 !Arg.startswith("-fdiagnostics-color"))
44 StringRef Arg = Args[i];
45 if(!Arg.startswith("-o"))
48 if(Arg == "-o") {
  /external/stlport/test/unit/
fadapter.h 45 template <class Arg>
46 class pointer_to_unary_procedure /* :public unary_function<Arg, __void_tag> */ {
48 typedef void (*fun_type)(Arg);
51 typedef Arg argument_type;
54 void operator() (Arg x) const { ptr(x); }
57 template <class Arg>
58 inline pointer_to_unary_procedure<Arg> ptr_proc(void (*x)(Arg)) {
59 return pointer_to_unary_procedure<Arg>(x);
  /ndk/tests/device/test-gnustl-full/unit/
fadapter.h 45 template <class Arg>
46 class pointer_to_unary_procedure /* :public unary_function<Arg, __void_tag> */ {
48 typedef void (*fun_type)(Arg);
51 typedef Arg argument_type;
54 void operator() (Arg x) const { ptr(x); }
57 template <class Arg>
58 inline pointer_to_unary_procedure<Arg> ptr_proc(void (*x)(Arg)) {
59 return pointer_to_unary_procedure<Arg>(x);
  /ndk/tests/device/test-stlport/unit/
fadapter.h 45 template <class Arg>
46 class pointer_to_unary_procedure /* :public unary_function<Arg, __void_tag> */ {
48 typedef void (*fun_type)(Arg);
51 typedef Arg argument_type;
54 void operator() (Arg x) const { ptr(x); }
57 template <class Arg>
58 inline pointer_to_unary_procedure<Arg> ptr_proc(void (*x)(Arg)) {
59 return pointer_to_unary_procedure<Arg>(x);
  /external/clang/test/SemaCXX/
generic-selection.cpp 30 template <unsigned Arg, unsigned... Args> struct Or {
31 enum { result = Arg | Or<Args...>::result };
34 template <unsigned Arg> struct Or<Arg> {
35 enum { result = Arg };
  /external/chromium_org/chrome/browser/sync_file_system/
sync_file_system_test_util.cc 33 template <typename Arg, typename Param>
34 void ReceiveResult1(bool* done, Arg* arg_out, Param arg) {
37 *arg_out = base::internal::CallbackForward(arg);
40 template <typename Arg>
41 base::Callback<void(typename TypeTraits<Arg>::ParamType)>
42 CreateResultReceiver(Arg* arg_out) {
43 typedef typename TypeTraits<Arg>::ParamType Param;
44 return base::Bind(&ReceiveResult1<Arg, Param>,
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
once.h 100 template <typename Arg>
101 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Arg),
102 Arg arg) {
105 init_func(arg);
131 template <typename Arg>
132 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Arg*),
133 Arg* arg) {
135 internal::FunctionClosure1<Arg*> func(init_func, false, arg)
    [all...]
  /frameworks/compile/mclinker/lib/Support/
CommandLine.cpp 65 llvm::StringRef Arg,
68 Val.assign<llvm::StringRef::const_iterator>(Arg.begin(), Arg.end());
99 llvm::StringRef Arg,
102 if (0 == Arg.compare("combreloc"))
104 else if (0 == Arg.compare("nocombreloc"))
106 else if (0 == Arg.compare("defs"))
108 else if (0 == Arg.compare("execstack"))
110 else if (0 == Arg.compare("noexecstack"))
112 else if (0 == Arg.compare("initfirst")
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkOnce.h 42 template <typename Func, typename Arg>
43 inline void SkOnce(SkOnceFlag* once, Func f, Arg arg);
99 template <typename Func, typename Arg>
100 static void sk_once_slow(SkOnceFlag* once, Func f, Arg arg) {
103 f(arg);
105 // done before here---in particular, those done by calling f(arg)---are observable
109 // to and including f(arg), then check in *done=true as a subsequent change".
111 // We'll use this in the fast path to make sure f(arg)'s effects ar
    [all...]
  /external/skia/src/core/
SkOnce.h 42 template <typename Func, typename Arg>
43 inline void SkOnce(SkOnceFlag* once, Func f, Arg arg);
99 template <typename Func, typename Arg>
100 static void sk_once_slow(SkOnceFlag* once, Func f, Arg arg) {
103 f(arg);
105 // done before here---in particular, those done by calling f(arg)---are observable
109 // to and including f(arg), then check in *done=true as a subsequent change".
111 // We'll use this in the fast path to make sure f(arg)'s effects ar
    [all...]
  /external/llvm/lib/Option/
Arg.cpp 1 //===--- Arg.cpp - Argument Implementations -------------------------------===//
10 #include "llvm/Option/Arg.h"
20 Arg::Arg(const Option _Opt, StringRef S, unsigned _Index, const Arg *_BaseArg)
25 Arg::Arg(const Option _Opt, StringRef S, unsigned _Index,
26 const char *Value0, const Arg *_BaseArg)
32 Arg::Arg(const Option _Opt, StringRef S, unsigned _Index
    [all...]
  /external/clang/tools/scan-build/
ccc-analyzer 201 foreach my $arg (@$AnalyzeArgs) {
202 push @Args, "-Xclang", $arg;
221 foreach my $arg (@CmdArgs) {
222 push @PrintArgs,"\'$arg\'";
460 my $Arg = $ARGV[$i];
461 my ($ArgKey) = split /=/,$Arg,2;
464 if ($Arg =~ /^-(E|MM?)$/) { $Action = 'preprocess'; }
465 elsif ($Arg eq '-c') { $Action = 'compile'; }
466 elsif ($Arg =~ /^-print-prog-name/) { exit 0; }
469 if ($Arg eq "-arch")
    [all...]
  /external/clang/include/clang/Sema/
ParsedTemplate.h 38 ParsedTemplateArgument() : Kind(Type), Arg(0) { }
42 /// \param Arg the template type argument or non-type template argument.
44 ParsedTemplateArgument(KindType Kind, void *Arg, SourceLocation Loc)
45 : Kind(Kind), Arg(Arg), Loc(Loc) { }
60 Arg(Template.getAsOpaquePtr()),
64 bool isInvalid() const { return Arg == 0; }
72 return ParsedType::getFromOpaquePtr(Arg);
78 return static_cast<Expr*>(Arg);
84 return ParsedTemplateTy::getFromOpaquePtr(Arg);
    [all...]
  /external/llvm/tools/llvm-config/
llvm-config.cpp 48 /// \arg RequiredLibs.
259 StringRef Arg = argv[i];
261 if (Arg.startswith("-")) {
263 if (Arg == "--version") {
265 } else if (Arg == "--prefix") {
267 } else if (Arg == "--bindir") {
269 } else if (Arg == "--includedir") {
271 } else if (Arg == "--libdir") {
273 } else if (Arg == "--cppflags") {
275 } else if (Arg == "--cflags")
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
Arg.java 19 * $Id: Arg.java 468655 2006-10-28 07:12:06Z minchau $
32 public class Arg
179 public Arg()
197 public Arg(QName qname, String expression, boolean isFromWithParam)
214 public Arg(QName qname, XObject val)
249 public Arg(QName qname, XObject val, boolean isFromWithParam)

Completed in 1036 milliseconds

1 2 3 4 5 6 7 8 91011>>