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

1 2 3 4 5 6 7 8 91011>>

  /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/clang/test/OpenMP/
task_if_codegen.cpp 20 int Arg;
47 int tmain(T Arg) {
52 #pragma omp task if (Arg)
54 #pragma omp task if (task: Arg) depend(in : Arg)
56 #pragma omp task if (Arg) depend(out : Arg)
58 #pragma omp task if (Arg) depend(inout : Arg)
90 #pragma omp task if (Arg)
    [all...]
parallel_if_codegen.cpp 15 int Arg;
41 int tmain(T Arg) {
46 #pragma omp parallel if (parallel: Arg)
75 #pragma omp parallel if (Arg)
78 return tmain(Arg);
  /external/jcommander/src/test/java/com/beust/jcommander/
PositiveIntegerTest.java 11 class Arg {
15 Arg arg = new Arg(); local
16 JCommander jc = new JCommander(arg);
23 class Arg {
27 Arg arg = new Arg(); local
28 JCommander jc = new JCommander(arg);
38 Arg arg = new Arg(); local
49 Arg arg = new Arg(); local
61 Arg arg = new Arg(); local
    [all...]
FinderTest.java 12 class Arg {
17 Arg a = new Arg();
37 class Arg {
41 Arg a = new Arg();
49 class Arg {
53 Arg a = new Arg();
63 class Arg {
    [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
31 class Arg {
32 Arg(const Arg &) = delete;
33 void operator=(const Arg &) = delete;
41 const Arg *BaseArg;
62 Arg(const Option Opt, StringRef Spelling, unsigned Index,
63 const Arg *BaseArg = nullptr)
    [all...]
  /external/pcre/dist/
pcrecpp.h 335 #include <pcrecpparg.h> // defines the Arg class
536 const Arg& ptr1 = no_arg,
537 const Arg& ptr2 = no_arg,
538 const Arg& ptr3 = no_arg,
539 const Arg& ptr4 = no_arg,
540 const Arg& ptr5 = no_arg,
541 const Arg& ptr6 = no_arg,
542 const Arg& ptr7 = no_arg,
543 const Arg& ptr8 = no_arg,
544 const Arg& ptr9 = no_arg
    [all...]
pcrecpparg.h 57 class PCRECPP_EXP_DEFN Arg {
59 // Empty constructor so we can declare arrays of Arg
60 Arg();
63 Arg(void*);
69 Arg(type* p) : arg_(p), parser_(name) { } \
70 Arg(type* p, Parser parser) : arg_(p), parser_(parser) { }
95 template <class T> Arg(T*, Parser parser);
97 template <class T> Arg(T* p)
138 inline Arg::Arg() : arg_(NULL), parser_(parse_null) {
    [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...]
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyTargetTransformInfo.h 46 WebAssemblyTTIImpl(const WebAssemblyTTIImpl &Arg)
47 : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
48 WebAssemblyTTIImpl(WebAssemblyTTIImpl &&Arg)
49 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
50 TLI(std::move(Arg.TLI)) {}
  /external/llvm/lib/Target/XCore/
XCoreTargetTransformInfo.h 45 XCoreTTIImpl(const XCoreTTIImpl &Arg)
46 : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
47 XCoreTTIImpl(XCoreTTIImpl &&Arg)
48 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
49 TLI(std::move(Arg.TLI)) {}
  /external/skia/include/private/
SkOnce.h 40 template <typename Arg>
41 inline void SkOnce(SkOnceFlag* once, void (*f)(Arg), Arg arg);
47 template <typename Lock, typename Arg>
48 inline void SkOnce(bool* done, Lock* lock, void (*f)(Arg), Arg arg);
72 template <typename Lock, typename Arg>
73 static void sk_once_slow(bool* done, Lock* lock, void (*f)(Arg), Arg arg)
    [all...]
  /bionic/benchmarks/
stdio_benchmark.cpp 27 Arg(1)->Arg(2)->Arg(3)->Arg(4)->Arg(8)->Arg(16)->Arg(32)->Arg(64)->Arg(512)-> \
28 Arg(1*KB)->Arg(4*KB)->Arg(8*KB)->Arg(16*KB)->Arg(64*KB
    [all...]
  /external/llvm/lib/Target/NVPTX/
NVPTXLowerKernelArgs.cpp 15 // kernel void foo(struct A arg, ...)
17 // struct A *p = &arg;
105 void handleByValParam(Argument *Arg);
131 // If the function had a byval struct ptr arg, say foo(%struct.x *byval %d),
143 void NVPTXLowerKernelArgs::handleByValParam(Argument *Arg) {
144 Function *Func = Arg->getParent();
146 PointerType *PType = dyn_cast<PointerType>(Arg->getType());
151 AllocaInst *AllocA = new AllocaInst(StructType, Arg->getName(), FirstInst);
155 AllocA->setAlignment(Func->getParamAlignment(Arg->getArgNo() + 1));
156 Arg->replaceAllUsesWith(AllocA)
    [all...]
NVPTXTargetTransformInfo.h 45 NVPTXTTIImpl(const NVPTXTTIImpl &Arg)
46 : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
47 NVPTXTTIImpl(NVPTXTTIImpl &&Arg)
48 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
49 TLI(std::move(Arg.TLI)) {}
  /external/libchrome/base/strings/
safe_sprintf.h 137 struct Arg {
141 Arg(signed char c) : type(INT) {
145 Arg(unsigned char c) : type(UINT) {
149 Arg(signed short j) : type(INT) {
153 Arg(unsigned short j) : type(UINT) {
157 Arg(signed int j) : type(INT) {
161 Arg(unsigned int j) : type(UINT) {
165 Arg(signed long j) : type(INT) {
169 Arg(unsigned long j) : type(UINT) {
173 Arg(signed long long j) : type(INT)
    [all...]
  /external/llvm/include/llvm/Transforms/InstCombine/
InstCombine.h 35 InstCombinePass(InstCombinePass &&Arg) : Worklist(std::move(Arg.Worklist)) {}
  /external/llvm/lib/Target/AMDGPU/
AMDGPUTargetTransformInfo.h 45 AMDGPUTTIImpl(const AMDGPUTTIImpl &Arg)
46 : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
47 AMDGPUTTIImpl(AMDGPUTTIImpl &&Arg)
48 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
49 TLI(std::move(Arg.TLI)) {}
  /external/llvm/lib/Target/Hexagon/
HexagonTargetTransformInfo.h 44 HexagonTTIImpl(const HexagonTTIImpl &Arg)
45 : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
46 HexagonTTIImpl(HexagonTTIImpl &&Arg)
47 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
48 TLI(std::move(Arg.TLI)) {}
  /external/llvm/lib/Target/SystemZ/
SystemZTargetTransformInfo.h 36 SystemZTTIImpl(const SystemZTTIImpl &Arg)
37 : BaseT(static_cast<const BaseT &>(Arg)), ST(Arg.ST), TLI(Arg.TLI) {}
38 SystemZTTIImpl(SystemZTTIImpl &&Arg)
39 : BaseT(std::move(static_cast<BaseT &>(Arg))), ST(std::move(Arg.ST)),
40 TLI(std::move(Arg.TLI)) {}
  /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/llvm/include/llvm/Analysis/
CGSCCPassManager.h 59 Result(const Result &Arg) : CGAM(Arg.CGAM) {}
60 Result(Result &&Arg) : CGAM(std::move(Arg.CGAM)) {}
94 CGSCCAnalysisManagerModuleProxy(const CGSCCAnalysisManagerModuleProxy &Arg)
95 : CGAM(Arg.CGAM) {}
96 CGSCCAnalysisManagerModuleProxy(CGSCCAnalysisManagerModuleProxy &&Arg)
97 : CGAM(std::move(Arg.CGAM)) {}
141 Result(const Result &Arg) : MAM(Arg.MAM) {
    [all...]

Completed in 402 milliseconds

1 2 3 4 5 6 7 8 91011>>