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

12

  /frameworks/base/tools/aapt2/
Resources.proto 388 // The arity of the plural.
389 enum Arity {
398 // The plural value for a given arity.
406 // The arity of the plural.
407 optional Arity arity = 3;
413 // The set of arity/plural mappings.
  /external/llvm/lib/Fuzzer/
FuzzerFnAdapter.h 149 enum { Arity = sizeof...(Args) };
163 // S is Seq<0, ..., Arity-1>
164 auto S = typename GenSeq<FnTraits<Fn>::Arity>::type();
  /prebuilts/clang/host/linux-x86/clang-3859424/prebuilt_include/llvm/lib/Fuzzer/
FuzzerFnAdapter.h 149 enum { Arity = sizeof...(Args) };
163 // S is Seq<0, ..., Arity-1>
164 auto S = typename GenSeq<FnTraits<Fn>::Arity>::type();
  /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/v8/src/ast/
ast-types.cc 471 if (this_fun->Arity() != that_fun->Arity() ||
476 for (int i = 0, n = this_fun->Arity(); i < n; ++i) {
485 if (this_tuple->Arity() != that_tuple->Arity()) {
488 for (int i = 0, n = this_tuple->Arity(); i < n; ++i) {
    [all...]
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/libcxx/test/libcxx/utilities/function.objects/func.require/
invoke_helpers.h 249 // Arity - The Arity of the call signature.
252 template <class ID, int Arity, class ObjectCaster = LValueCaster,
257 Int<Arity> A;
263 Int<Arity> A;
  /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>{}));
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/libcxx/utilities/function.objects/func.require/
invoke_helpers.h 249 // Arity - The Arity of the call signature.
252 template <class ID, int Arity, class ObjectCaster = LValueCaster,
257 Int<Arity> A;
263 Int<Arity> A;
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyDescriptorPool.java 76 if (block.arity() == Arity.ONE_ARGUMENT) {
  /frameworks/compile/mclinker/lib/Script/
Operator.cpp 43 Operator::Operator(Arity pArity, Type pType)
  /external/llvm/include/llvm/CodeGen/
CommandFlags.h 257 clEnumValN(JumpTable::Arity, "arity",
  /external/v8/src/compiler/
types.cc 490 if (this_tuple->Arity() != that_tuple->Arity()) {
493 for (int i = 0, n = this_tuple->Arity(); i < n; ++i) {
    [all...]
types.h 466 int Arity() { return this->Length(); }
typer.cc 664 int arity = node->op()->ValueInputCount(); local
666 for (int i = 1; i < arity; ++i) {
673 int arity = NodeProperties::GetControlInput(node)->op()->ControlInputCount(); local
691 for (int i = 0; i < arity; ++i) {
854 if (type->IsTuple() && index < type->AsTuple()->Arity()) {
    [all...]
  /external/clang/lib/Parse/
ParseExprCXX.cpp     [all...]
  /build/kati/
expr.go 624 arity := f.Arity()
634 if arity != 0 && narg >= arity {

Completed in 630 milliseconds

12