Searched refs:Arg (Results 1 - 25 of 269) sorted by relevance

1234567891011

/external/chromium_org/third_party/re2/re2/
H A Dvariadic_function.h10 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
[all...]
H A Dre2.h155 // 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* cons
734 class RE2::Arg { class in class:re2::RE2
771 template <class T> Arg(T* p) function in class:re2::RE2::Arg
812 inline RE2::Arg::Arg() : arg_(NULL), parser_(parse_null) { } function in class:re2::RE2::Arg
813 inline RE2::Arg::Arg(void* p) : arg_(p), parser_(parse_null) { } function in class:re2::RE2::Arg
[all...]
/external/regex-re2/re2/
H A Dvariadic_function.h10 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
[all...]
H A Dre2.h155 // 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* cons
746 class RE2::Arg { class in class:re2::RE2
783 template <class T> Arg(T* p) function in class:re2::RE2::Arg
824 inline RE2::Arg::Arg() : arg_(NULL), parser_(parse_null) { } function in class:re2::RE2::Arg
825 inline RE2::Arg::Arg(void* p) : arg_(p), parser_(parse_null) { } function in class:re2::RE2::Arg
[all...]
/external/llvm/include/llvm/Option/
H A DArg.h1 //===--- 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 { class in namespace:llvm::opt
35 Arg(const Arg &) LLVM_DELETED_FUNCTION;
36 void operator=(const Arg &) LLVM_DELETED_FUNCTION;
44 const Arg *BaseArg;
65 Arg(cons
[all...]
H A DArgList.h23 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*, 1
[all...]
/external/chromium_org/third_party/re2/util/
H A Dpcre.h204 // We convert user-passed pointers into special Arg objects
205 class Arg;
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,
292 const Arg& ptr6 = no_more_args,
293 const Arg
581 class PCRE::Arg { class in class:re2::PCRE
617 template <class T> Arg(T* p) function in class:re2::PCRE::Arg
658 inline PCRE::Arg::Arg() : arg_(NULL), parser_(parse_null) { } function in class:re2::PCRE::Arg
659 inline PCRE::Arg::Arg(void* p) : arg_(p), parser_(parse_null) { } function in class:re2::PCRE::Arg
[all...]
H A Dpcre.cc46 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
[all...]
/external/regex-re2/util/
H A Dpcre.h198 // We convert user-passed pointers into special Arg objects
199 class Arg;
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,
286 const Arg& ptr6 = no_more_args,
287 const Arg
575 class PCRE::Arg { class in class:re2::PCRE
611 template <class T> Arg(T* p) function in class:re2::PCRE::Arg
652 inline PCRE::Arg::Arg() : arg_(NULL), parser_(parse_null) { } function in class:re2::PCRE::Arg
653 inline PCRE::Arg::Arg(void* p) : arg_(p), parser_(parse_null) { } function in class:re2::PCRE::Arg
[all...]
H A Dpcre.cc41 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
[all...]
/external/clang/test/SemaCXX/
H A Dgeneric-selection.cpp30 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/clang/lib/Tooling/
H A DArgumentsAdjusters.cpp30 StringRef Arg = Args[i]; local
32 if (!Arg.startswith("-fcolor-diagnostics") &&
33 !Arg.startswith("-fdiagnostics-color"))
44 StringRef Arg = Args[i]; local
45 if(!Arg.startswith("-o"))
48 if(Arg == "-o") {
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
H A Donce.h100 template <typename Arg>
101 inline void GoogleOnceInit(ProtobufOnceType* once, void (*init_func)(Arg),
102 Arg 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);
/external/stlport/test/unit/
H A Dfadapter.h45 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/llvm/lib/Option/
H A DArg.cpp1 //===--- Arg.cpp - Argument Implementations -------------------------------===//
10 #include "llvm/Option/Arg.h"
20 Arg::Arg(const Option _Opt, StringRef S, unsigned _Index, const Arg *_BaseArg) function in class:Arg
25 Arg::Arg(const Option _Opt, StringRef S, unsigned _Index, function in class:Arg
26 const char *Value0, const Arg *_BaseArg)
32 Arg::Arg(cons function in class:Arg
[all...]
/external/clang/tools/scan-build/
H A Dccc-analyzer460 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") {
482 push @CompileOpts,$Arg;
486 if ($Arg =~ /-m.*/) {
487 push @CompileOpts,$Arg;
491 if ($Arg
[all...]
/external/clang/include/clang/Sema/
H A DParsedTemplate.h38 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) argument
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);
119 void *Arg; member in class:clang::ParsedTemplateArgument
[all...]
/external/llvm/tools/llvm-config/
H A Dllvm-config.cpp259 StringRef Arg = argv[i]; local
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") {
277 } else if (Arg
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/
H A DArg.java19 * $Id: Arg.java 468655 2006-10-28 07:12:06Z minchau $
32 public class Arg class
179 public Arg() method in class:Arg
197 public Arg(QName qname, String expression, boolean isFromWithParam) method in class:Arg
214 public Arg(QName qname, XObject val) method in class:Arg
249 public Arg(QName qname, XObject val, boolean isFromWithParam) method in class:Arg
/external/llvm/lib/Target/Hexagon/
H A DHexagonRemoveSZExtArgs.cpp60 Argument* Arg = AI; local
61 if (!isa<PointerType>(Arg->getType())) {
62 for (Instruction::use_iterator UI = Arg->use_begin();
63 UI != Arg->use_end();) {
66 SExtInst* SI = new SExtInst(Arg, Use->getType());
/external/chromium_org/v8/src/
H A Donce.h112 template <typename Arg>
114 typename OneArgFunction<Arg*>::type init_func, Arg* arg) {
/external/v8/src/
H A Donce.h112 template <typename Arg>
114 typename OneArgFunction<Arg*>::type init_func, Arg* arg) {
/external/bison/lib/
H A Dargmatch.h45 # define ARGMATCH(Arg, Arglist, Vallist) \
46 argmatch (Arg, Arglist, (char const *) (Vallist), sizeof *(Vallist))
86 # define XARGMATCH(Context, Arg, Arglist, Vallist) \
87 ((Vallist) [__xargmatch_internal (Context, Arg, Arglist, \
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCContainersASTChecker.cpp102 const Expr *Arg = 0; local
109 Arg = CE->getArg(ArgNum)->IgnoreParenCasts();
110 if (hasPointerToPointerSizedType(Arg))
117 Arg = CE->getArg(ArgNum)->IgnoreParenCasts();
118 if (hasPointerToPointerSizedType(Arg)) {
121 Arg = CE->getArg(ArgNum)->IgnoreParenCasts();
122 if (hasPointerToPointerSizedType(Arg))
128 if (Arg) {
141 << Arg->getType().getAsString() << "'";
143 SourceRange R = Arg
[all...]
/external/compiler-rt/lib/ubsan/
H A Dubsan_diag.h128 /// Kinds of arguments, corresponding to members of \c Arg's union.
139 struct Arg { struct in class:__ubsan::Diag
140 Arg() {} function in struct:__ubsan::Diag::Arg
141 Arg(const char *String) : Kind(AK_String), String(String) {} function in struct:__ubsan::Diag::Arg
142 Arg(MangledName MN) : Kind(AK_Mangled), String(MN.getName()) {} function in struct:__ubsan::Diag::Arg
143 Arg(UIntMax UInt) : Kind(AK_UInt), UInt(UInt) {} function in struct:__ubsan::Diag::Arg
144 Arg(SIntMax SInt) : Kind(AK_SInt), SInt(SInt) {} function in struct:__ubsan::Diag::Arg
145 Arg(FloatMax Float) : Kind(AK_Float), Float(Float) {} function in struct:__ubsan::Diag::Arg
146 Arg(const void *Pointer) : Kind(AK_Pointer), Pointer(Pointer) {} function in struct:__ubsan::Diag::Arg
163 Arg Arg
[all...]

Completed in 2974 milliseconds

1234567891011