HomeSort by relevance Sort by last modified time
    Searched defs:Arity (Results 1 - 11 of 11) 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/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/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...]
  /external/llvm/include/llvm/Target/
TargetOptions.h 46 Arity, // Use one table per number of function parameters.
  /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...]
  /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/
types.h 391 TypeHandle result, TypeHandle receiver, int arity, Region* region) {
392 return FunctionType::New(result, receiver, arity, region);
419 static TypeHandle Function(TypeHandle result, int arity, TypeHandle* params,
421 FunctionHandle function = Function(result, Any(region), arity, region);
422 for (int i = 0; i < arity; ++i) {
    [all...]
  /external/clang/lib/AST/
ItaniumMangle.cpp 365 void mangleOperatorName(DeclarationName Name, unsigned Arity);
366 void mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity);
394 void mangleExpression(const Expr *E, unsigned Arity = UnknownArity);
925 unsigned Arity = KnownArity;
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
  /external/v8/src/parsing/
parser.h 322 int Arity() const { return params.length(); }
    [all...]
preparser.h 574 int arity = 0; member in struct:v8::internal::PreParserFormalParameters
576 int Arity() const { return arity; }
887 ++parameters->arity;
    [all...]

Completed in 448 milliseconds