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

  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 238 struct Arity;
241 struct Arity<R(Types...)> {
246 struct Arity<R(Types......)> {
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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
lambda_fwd.hpp 33 typename Arity = int_< aux::template_arity<T>::value >
  /external/chromium_org/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...]
  /frameworks/compile/mclinker/include/mcld/Script/
Operator.h 30 enum Arity {
97 Operator(Arity pArity, Type pType);
105 Arity arity() const { return m_Arity; } function in class:mcld::Operator
125 Arity m_Arity;
  /external/llvm/include/llvm/Target/
TargetOptions.h 45 Arity, // Use one table per number of function parameters.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
full_lambda.hpp 48 # include <boost/mpl/limits/arity.hpp>
107 AUX778076_ARITY_PARAM(typename Arity)
170 , typename Arity
173 lambda<F,Tag1,Arity>
183 typedef lambda< typename if_<is_le,arity_,Arity>::type,Tag2 > l3;
  /external/clang/lib/AST/
ItaniumMangle.cpp 351 void mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity);
376 void mangleExpression(const Expr *E, unsigned Arity = UnknownArity);
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/
full_lambda.hpp 36 , typename Arity
537 , typename Arity
540 lambda< F,Tag1,Arity >
549 typedef lambda< typename if_< is_le,arity_,Arity >::type, Tag2 > l3;
  /external/chromium_org/v8/src/
types.cc 294 if (this_fun->Arity() != that_fun->Arity() ||
299 for (int i = 0; i < this_fun->Arity(); ++i) {
457 int arity = function->Arity(); local
459 function->Result(), function->Receiver(), bound, arity, region);
460 for (int i = 0; i < arity; ++i) {
827 type->AsFunction()->Arity(), region);
828 for (int i = 0; i < function->Arity(); ++i) {
938 for (int i = 0; i < this->AsFunction()->Arity(); ++i)
    [all...]
types.h 292 TypeHandle result, TypeHandle receiver, int arity, Region* region) {
293 return FunctionType::New(result, receiver, arity, region);
725 int Arity() { return this->Length() - 3; }
735 int arity, Region* region) {
738 StructuralType::New(StructuralType::kFunctionTag, 3 + arity, region));
746 TypeHandle result, TypeHandle receiver, int arity, Region* region) {
748 return New(result, receiver, bound, arity, region);
    [all...]
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 212 clEnumValN(JumpTable::Arity, "arity",
  /external/llvm/lib/CodeGen/
JumpInstrTables.cpp 218 case JumpTable::Arity:
219 // Transform all types to void* so that all functions with the same arity
  /frameworks/compile/mclinker/lib/Script/
Operator.cpp 76 Operator::Operator(Arity pArity,
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 318 int arity = rng_.NextInt(3); local
319 TypeHandle type = Type::Function(result, receiver, arity, region_);
320 for (int i = 0; i < type->AsFunction()->Arity(); ++i) {
646 CHECK_EQ(0, function0->AsFunction()->Arity());
647 CHECK_EQ(1, function1->AsFunction()->Arity());
648 CHECK_EQ(2, function2->AsFunction()->Arity());
    [all...]
  /external/clang/lib/Analysis/
ThreadSafety.cpp 125 unsigned arity() const { function in class:__anon21595::SExpr::SExprNode
258 unsigned makeUnknown(unsigned Arity) {
259 return make(EOP_Unknown, Arity);
592 unsigned ni = NodeVec[i].arity();
593 unsigned nj = Other.NodeVec[j].arity();
654 unsigned NumArgs = N->arity()-1;
671 unsigned NumArgs = N->arity()-1;
695 unsigned NumChildren = N->arity();
    [all...]

Completed in 253 milliseconds