HomeSort by relevance Sort by last modified time
    Searched defs:Arity (Results 1 - 22 of 22) sorted by null

  /external/google-breakpad/src/testing/gtest/scripts/
gen_gtest_pred_impl.py 69 n: the maximum arity of the predicate macros to be generated.
148 // For now we only support predicates whose arity is at most %(n)s.
164 def Arity(n):
165 """Returns the English name of the given arity."""
213 'arity' : Arity(n),
214 'Arity' : Title(Arity(n))
278 // %(Arity)s predicate assertion macros.
316 """Given the maximum arity n, updates the header file that implement
    [all...]
  /external/googletest/googletest/scripts/
gen_gtest_pred_impl.py 69 n: the maximum arity of the predicate macros to be generated.
148 // For now we only support predicates whose arity is at most %(n)s.
164 def Arity(n):
165 """Returns the English name of the given arity."""
213 'arity' : Arity(n),
214 'Arity' : Title(Arity(n))
278 // %(Arity)s predicate assertion macros.
316 """Given the maximum arity n, updates the header file that implement
    [all...]
  /external/protobuf/gtest/scripts/
gen_gtest_pred_impl.py 69 n: the maximum arity of the predicate macros to be generated.
148 // For now we only support predicates whose arity is at most %(n)s.
164 def Arity(n):
165 """Returns the English name of the given arity."""
213 'arity' : Arity(n),
214 'Arity' : Title(Arity(n))
280 // %(Arity)s predicate assertion macros.
318 """Given the maximum arity n, updates the header file that implement
    [all...]
  /external/v8/testing/gtest/scripts/
gen_gtest_pred_impl.py 69 n: the maximum arity of the predicate macros to be generated.
148 // For now we only support predicates whose arity is at most %(n)s.
164 def Arity(n):
165 """Returns the English name of the given arity."""
213 'arity' : Arity(n),
214 'Arity' : Title(Arity(n))
278 // %(Arity)s predicate assertion macros.
316 """Given the maximum arity n, updates the header file that implement
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
gen_gtest_pred_impl.py 69 n: the maximum arity of the predicate macros to be generated.
148 // For now we only support predicates whose arity is at most %(n)s.
164 def Arity(n):
165 """Returns the English name of the given arity."""
213 'arity' : Arity(n),
214 'Arity' : Title(Arity(n))
278 // %(Arity)s predicate assertion macros.
316 """Given the maximum arity n, updates the header file that implement
    [all...]
  /frameworks/native/libs/vr/libpdx/private/pdx/rpc/
remote_method.h 29 bool, RemoteMethodType::Traits::Arity == 1 &&
99 constexpr auto Arity = sizeof...(Args);
100 return static_cast<Return>(InvokeHelper(MakeIndexSequence<Arity>{}));
  /build/kati/
func.go 37 // Arity is max function's arity.
38 // ',' will not be handled as argument separator more than arity.
40 Arity() int
171 func (f *funcSubst) Arity() int { return 3 }
200 func (f *funcPatsubst) Arity() int { return 3 }
237 func (f *funcStrip) Arity() int { return 1 }
259 func (f *funcFindstring) Arity() int { return 2 }
283 func (f *funcFilter) Arity() int { return 2 }
315 func (f *funcFilterOut) Arity() int { return 2
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 238 struct Arity;
241 struct Arity<R(Types...)> {
246 struct Arity<R(Types......)> { // expected-warning {{varargs}} expected-note {{pack}} expected-note {{insert ','}}
251 struct Arity<R(T1, T2, T3, T4)>; // expected-note{{template is declared here}}
253 int check0[Arity<int()>::value == 0? 1 : -1];
254 int check1[Arity<int(float, double)>::value == 2? 1 : -1];
255 int check2[Arity<int(float...)>::value == 1? 1 : -1];
256 int check3[Arity<int(float, double, long double...)>::value == 3? 1 : -1];
257 Arity<int(float, double, long double, char)> check4; // expected-error{{implicit instantiation of undefined template 'FunctionTypes::Arity<int (float, double, long double, char)>'}
    [all...]
  /external/llvm/include/llvm/Target/
TargetOptions.h 45 Arity, // Use one table per number of function parameters.
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Target/
TargetOptions.h 43 Arity, // Use one table per number of function parameters.
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Target/
TargetOptions.h 43 Arity, // Use one table per number of function parameters.
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Target/
TargetOptions.h 43 Arity, // Use one table per number of function parameters.
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
TargetOptions.h 43 Arity, // Use one table per number of function parameters.
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Target/
TargetOptions.h 43 Arity, // Use one table per number of function parameters.
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Target/
TargetOptions.h 43 Arity, // Use one table per number of function parameters.
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Target/
TargetOptions.h 43 Arity, // Use one table per number of function parameters.
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Target/
TargetOptions.h 43 Arity, // Use one table per number of function parameters.
  /frameworks/compile/mclinker/include/mcld/Script/
Operator.h 28 enum Arity { NULLARY, UNARY, BINARY, TERNARY };
90 Operator(Arity pArity, Type pType);
98 Arity arity() const { return m_Arity; } function in class:mcld::Operator
117 Arity m_Arity;
  /external/v8/src/compiler/
types.h 466 int Arity() { return this->Length(); }
  /external/v8/src/ast/
ast-types.h 609 int Arity() { return this->Length() - 2; }
619 AstFunctionType(AstType* result, AstType* receiver, int arity, Zone* zone)
620 : AstStructuralType(kFunction, 2 + arity, zone) {
625 static AstType* New(AstType* result, AstType* receiver, int arity,
628 AstFunctionType(result, receiver, arity, zone));
642 int Arity() { return this->Length(); }
727 static AstType* Function(AstType* result, AstType* receiver, int arity,
729 return AstFunctionType::New(result, receiver, arity, zone);
754 static AstType* Function(AstType* result, int arity, AstType** params,
756 AstType* function = Function(result, Any(), arity, zone)
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 510 void mangleOperatorName(DeclarationName Name, unsigned Arity);
511 void mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity);
543 void mangleExpression(const Expr *E, unsigned Arity = UnknownArity);
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]

Completed in 967 milliseconds