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

1 2

  /external/chromium/base/
callback_old.h 82 template <typename Arg1>
83 inline void Run(const Arg1& a) {
87 template <typename Arg1, typename Arg2>
88 inline void Run(const Arg1& a, const Arg2& b) {
92 template <typename Arg1, typename Arg2, typename Arg3>
93 inline void Run(const Arg1& a, const Arg2& b, const Arg3& c) {
97 template <typename Arg1, typename Arg2, typename Arg3, typename Arg4>
98 inline void Run(const Arg1& a, const Arg2& b, const Arg3& c, const Arg4& d) {
102 template <typename Arg1, typename Arg2, typename Arg3,
104 inline void Run(const Arg1& a, const Arg2& b, const Arg3& c
    [all...]
stl_util-inl.h 294 template <class Result, class Arg1, class Arg2>
295 class STLBinaryFunction : public std::binary_function<Arg1, Arg2, Result> {
297 typedef ResultCallback2<Result, Arg1, Arg2> Callback;
304 Result operator() (Arg1 arg1, Arg2 arg2) {
305 return callback_->Run(arg1, arg2);
  /external/stlport/test/unit/
fadapter.h 25 template <class Arg1>
26 struct projectvoid : public unary_function<Arg1,__void_tag> {
27 __void_tag operator()(const Arg1& x) const { return __void_tag(); }
62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
68 typedef Arg1 first_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2))
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
fadapter.h 25 template <class Arg1>
26 struct projectvoid : public unary_function<Arg1,__void_tag> {
27 __void_tag operator()(const Arg1& x) const { return __void_tag(); }
62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
68 typedef Arg1 first_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2))
    [all...]
  /ndk/tests/device/test-stlport/unit/
fadapter.h 25 template <class Arg1>
26 struct projectvoid : public unary_function<Arg1,__void_tag> {
27 __void_tag operator()(const Arg1& x) const { return __void_tag(); }
62 template <class Arg1, class Arg2>
63 class pointer_to_binary_procedure /* : public unary_function<Arg1, Arg2, __void_tag> */ {
65 typedef void (*fun_type)(Arg1, Arg2);
68 typedef Arg1 first_argument_type;
72 void operator() (Arg1 x, Arg2 y) const { ptr(x, y); }
75 template <class Arg1, class Arg2>
76 inline pointer_to_binary_procedure<Arg1, Arg2> ptr_proc(void (*x)(Arg1, Arg2))
    [all...]
  /external/chromium/base/memory/
scoped_callback_factory.h 56 template <typename Arg1>
57 typename Callback1<Arg1>::Type* NewCallback(
58 void (T::*method)(Arg1)) {
59 return new CallbackImpl<void (T::*)(Arg1), Tuple1<Arg1> >(
63 template <typename Arg1, typename Arg2>
64 typename Callback2<Arg1, Arg2>::Type* NewCallback(
65 void (T::*method)(Arg1, Arg2)) {
66 return new CallbackImpl<void (T::*)(Arg1, Arg2), Tuple2<Arg1, Arg2> >
    [all...]
  /external/clang/test/SemaTemplate/
deduction.cpp 36 // Replaces all occurrences of _1 with Arg1 and _2 with Arg2 in T.
37 template<typename T, typename Arg1, typename Arg2>
43 template<typename Arg1, typename Arg2>
44 struct Replace<_1, Arg1, Arg2> {
45 typedef Arg1 type;
48 template<typename Arg1, typename Arg2>
49 struct Replace<_2, Arg1, Arg2> {
54 template<typename T, typename Arg1, typename Arg2>
55 struct Replace<const T, Arg1, Arg2> {
56 typedef typename Replace<T, Arg1, Arg2>::type const type
    [all...]
instantiation-default-1.cpp 82 template<typename R, typename Arg1, typename Arg2 = Arg1,
83 typename FuncType = R (*)(Arg1, Arg2)>
instantiate-c99.cpp 74 template<typename T, typename Arg1, typename Arg2>
76 T f(Arg1 a1, Arg2 a2) {
instantiate-expr-1.cpp 115 template<typename Result, typename F, typename Arg1>
116 Result test_call_operator(F f, Arg1 arg1) {
120 return f(arg1);
instantiate-expr-4.cpp 78 template<typename T, typename Arg1>
80 T* f(bool x, Arg1 a1) {
89 template<typename T, typename Arg1, typename Arg2>
91 T* f(bool x, Arg1 a1, Arg2 a2) {
  /external/clang/test/CodeGenCXX/
mangle-ms-template-callback.cpp 10 template<typename Ret, typename Arg1>
11 class C<Ret(Arg1)> {};
13 template<typename Ret, typename Arg1, typename Arg2>
14 class C<Ret(Arg1, Arg2)> {};
  /external/protobuf/src/google/protobuf/stubs/
common.h 857 template <typename Arg1>
860 typedef void (*FunctionType)(Arg1 arg1);
863 Arg1 arg1)
865 arg1_(arg1) {}
876 Arg1 arg1_;
879 template <typename Class, typename Arg1>
882 typedef void (Class::*MethodType)(Arg1 arg1);
    [all...]
  /external/bison/src/
system.h 154 #define obstack_fgrow1(Obs, Format, Arg1) \
157 sprintf (buf, Format, Arg1); \
161 #define obstack_fgrow2(Obs, Format, Arg1, Arg2) \
164 sprintf (buf, Format, Arg1, Arg2); \
168 #define obstack_fgrow3(Obs, Format, Arg1, Arg2, Arg3) \
171 sprintf (buf, Format, Arg1, Arg2, Arg3); \
175 #define obstack_fgrow4(Obs, Format, Arg1, Arg2, Arg3, Arg4) \
178 sprintf (buf, Format, Arg1, Arg2, Arg3, Arg4); \
  /external/clang/test/Index/
complete-macros.c 4 #define FOO(Arg1,Arg2) foobar
30 // CHECK-CC1: macro definition:{TypedText FOO}{LeftParen (}{Placeholder Arg1}{Comma , }{Placeholder Arg2}{RightParen )}
  /external/llvm/utils/PerfectShuffle/
PerfectShuffle.cpp 90 unsigned short Arg0, Arg1; // Input operands for this value.
178 if (ShufTab[ShufTab[ThisOp].Arg1].Cost == 0) {
179 std::cerr << getZeroCostOpName(ShufTab[ThisOp].Arg1);
180 PrintMask(ShufTab[ThisOp].Arg1, std::cerr);
184 if (Vals[i] == ShufTab[ThisOp].Arg1) {
209 unsigned Arg0 = ShufTab[Elt].Arg0, Arg1 = ShufTab[Elt].Arg1;
212 if (Arg0 != Arg1 && ShufTab[Arg1].Cost)
213 EvaluateOps(Arg1, Vals, NumVals)
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
FastAllocBase.h 144 template <typename T, typename Arg1>
145 inline T* fastNew(Arg1 arg1)
153 return ::new(p) T(arg1);
156 template <typename T, typename Arg1, typename Arg2>
157 inline T* fastNew(Arg1 arg1, Arg2 arg2)
165 return ::new(p) T(arg1, arg2);
168 template <typename T, typename Arg1, typename Arg2, typename Arg3>
169 inline T* fastNew(Arg1 arg1, Arg2 arg2, Arg3 arg3
    [all...]
  /external/llvm/lib/VMCore/
AutoUpgrade.cpp 201 Value *Arg1 = CI->getArgOperand(1);
205 PointerType::getUnqual(Arg1->getType()),
207 StoreInst *SI = Builder.CreateStore(Arg1, BC);
352 Value *Arg1 = CI->getArgOperand(1);
359 Builder.CreateBitCast(Arg1,
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 883 template <typename T, typename Arg1, typename Arg2>
884 T *create(Arg1 A1, Arg2 A2, ProgramStateRef St, const LocationContext *LCtx) {
888 template <typename T, typename Arg1, typename Arg2, typename Arg3>
889 T *create(Arg1 A1, Arg2 A2, Arg3 A3, ProgramStateRef St,
894 template <typename T, typename Arg1, typename Arg2, typename Arg3,
896 T *create(Arg1 A1, Arg2 A2, Arg3 A3, Arg4 A4, ProgramStateRef St,
  /external/llvm/lib/Transforms/IPO/
StripSymbols.cpp 306 Value *Arg1 = CI->getArgOperand(0);
310 if (Arg1->use_empty()) {
311 if (Constant *C = dyn_cast<Constant>(Arg1))
314 RecursivelyDeleteTriviallyDeadInstructions(Arg1);
  /external/clang/include/clang/Sema/
Sema.h     [all...]
  /external/llvm/include/llvm/
IRBuilder.h 487 BasicBlock *UnwindDest, Value *Arg1,
489 return Insert(InvokeInst::Create(Callee, NormalDest, UnwindDest, Arg1),
493 BasicBlock *UnwindDest, Value *Arg1,
496 Value *Args[] = { Arg1, Arg2, Arg3 };
    [all...]
  /external/clang/lib/AST/
ASTImporter.cpp 280 const TemplateArgument &Arg1,
282 if (Arg1.getKind() != Arg2.getKind())
285 switch (Arg1.getKind()) {
290 return Context.IsStructurallyEquivalent(Arg1.getAsType(), Arg2.getAsType());
293 if (!Context.IsStructurallyEquivalent(Arg1.getIntegralType(),
297 return llvm::APSInt::isSameValue(Arg1.getAsIntegral(), Arg2.getAsIntegral());
300 if (!Arg1.getAsDecl() || !Arg2.getAsDecl())
301 return !Arg1.getAsDecl() && !Arg2.getAsDecl();
302 return Context.IsStructurallyEquivalent(Arg1.getAsDecl(), Arg2.getAsDecl());
306 Arg1.getAsTemplate(),
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp 628 Value *Arg1 = II->getArgOperand(1);
631 if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) {
640 if (ConstantDataVector *CV1 = dyn_cast<ConstantDataVector>(Arg1)) {
657 std::swap(Arg0, Arg1);
661 if (ConstantDataVector *CV1 = dyn_cast<ConstantDataVector>(Arg1)) {
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 125 void DiagnosticsEngine::SetDelayedDiagnostic(unsigned DiagID, StringRef Arg1,
131 DelayedDiagArg1 = Arg1.str();
    [all...]

Completed in 377 milliseconds

1 2