HomeSort by relevance Sort by last modified time
    Searched full:arity (Results 1 - 25 of 105) sorted by null

1 2 3 4 5

  /packages/apps/Calculator/
arity-2.1.2.jar 
Android.mk 34 LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := libarity:arity-2.1.2.jar
  /external/chromium/base/
bind_internal_win.h.pump 27 $range ARITY 0..MAX_ARITY
28 $for ARITY [[
29 $range ARG 1..ARITY
31 // __stdcall Function: Arity $(ARITY).
33 $if ARITY > 0[[, ]] $for ARG , [[typename X$(ARG)]]>
38 $if ARITY > 0 [[
46 ]] $$ if ARITY > 0
49 // __fastcall Function: Arity $(ARITY)
    [all...]
bind_internal.h.pump 34 // 2) The arity of the function.
75 $range ARITY 0..MAX_ARITY
76 $for ARITY [[
77 $range ARG 1..ARITY
79 // Function: Arity $(ARITY).
81 $if ARITY > 0[[, ]] $for ARG , [[typename X$(ARG)]]>
86 $if ARITY > 0 [[
94 ]] $$ if ARITY > 0
98 // Method: Arity $(ARITY)
    [all...]
bind_internal_win.h 24 // __stdcall Function: Arity 0.
31 // __fastcall Function: Arity 0.
38 // __stdcall Function: Arity 1.
47 // __fastcall Function: Arity 1.
56 // __stdcall Function: Arity 2.
66 // __fastcall Function: Arity 2.
76 // __stdcall Function: Arity 3.
87 // __fastcall Function: Arity 3.
98 // __stdcall Function: Arity 4.
110 // __fastcall Function: Arity 4
    [all...]
bind_internal.h 31 // 2) The arity of the function.
72 // Function: Arity 0.
80 // Method: Arity 0.
91 // Const Method: Arity 0.
102 // Function: Arity 1.
112 // Method: Arity 1.
124 // Const Method: Arity 1.
136 // Function: Arity 2.
147 // Method: Arity 2.
160 // Const Method: Arity 2
    [all...]
bind.h.pump 28 // unwrap the function signature to determine the signature's arity, and
31 // Each unique combination of (arity, function_type, num_prebound) where
bind.h 24 // unwrap the function signature to determine the signature's arity, and
27 // Each unique combination of (arity, function_type, num_prebound) where
callback.h.pump 141 // - Returning an InvokerStorageHolder<> with an DoInvoke() that has an arity
230 $range ARITY 0..MAX_ARITY
231 $for ARITY [[
232 $range ARG 1..ARITY
234 $if ARITY == 0 [[
245 $if ARITY != 0 [[, ]]
270 $if ARITY != 0 [[, ]]
277 ]] $$ for ARITY
  /external/clang/test/CodeGen/
2002-03-14-BrokenPHINode.c 3 /* GCC was generating PHI nodes with an arity < #pred of the basic block the
  /libcore/luni/src/main/java/javax/xml/xpath/
XPathFunctionResolver.java 26 * <p>XPath functions are resolved by name and arity.
50 * <p>If <code>functionName</code> or <code>arity</code> is <code>null</code>, then a <code>NullPointerException</code> is thrown.</p>
53 * @param arity The number of arguments that the returned function must accept.
55 * @return The function or <code>null</code> if no function named <code>functionName</code> with <code>arity</code> arguments exists.
57 * @throws NullPointerException If <code>functionName</code> or <code>arity</code> is <code>null</code>.
59 public XPathFunction resolveFunction(QName functionName, int arity);
XPathFunction.java 26 * <p>Functions are identified by QName and arity in XPath.</p>
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPExtensionsProvider.java 125 int arity = argVec.size(); local
128 resolver.resolveFunction ( myQName, arity );
131 ArrayList argList = new ArrayList( arity);
132 for ( int i=0; i<arity; i++ ) {
166 int arity = extFunction.getArgCount(); local
180 resolver.resolveFunction( myQName, arity );
182 ArrayList argList = new ArrayList( arity);
183 for ( int i=0; i<arity; i++ ) {
  /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...]
  /external/chromium/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/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/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/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/function/
Function_object.js 56 testcases[count++] = new TestCase( SECTION, "f.arity",
57 3, f.arity);
  /packages/apps/Calculator/src/com/android/calculator2/
HistoryAdapter.java 28 import org.javia.arity.SyntaxException;
Logic.java 28 import org.javia.arity.Symbols;
29 import org.javia.arity.SyntaxException;
30 import org.javia.arity.Util;
  /external/llvm/include/llvm/
OperandTraits.h 30 template <typename SubClass, unsigned ARITY>
33 return reinterpret_cast<Use*>(U) - ARITY;
39 return ARITY;
50 template <typename SubClass, unsigned ARITY = 1>
51 struct OptionalOperandTraits : public FixedNumOperandTraits<SubClass, ARITY> {
  /external/chromium/testing/gmock/include/gmock/
gmock-generated-nice-strict.h.pump 5 $var n = 10 $$ The maximum arity we support.
81 // to define it for each arity.
gmock-generated-function-mockers.h.pump 5 $var n = 10 $$ The maximum arity we support.
121 #define GMOCK_MOCKER_(arity, constness, Method) \
122 GTEST_CONCAT_TOKEN_(gmock##constness##arity##_##Method##_, __LINE__)
  /external/webkit/Source/JavaScriptCore/dfg/
DFGJITCompiler.cpp 228 // This is the main entry point, without performing an arity check.
235 // If we needed to perform an arity check we will already have moved the return address,
294 // generate the entry point with arity check.
333 // In cases where an arity check is necessary, we enter here.
371 // FIXME: switch the register file check & arity check over to DFGOpertaion style calls, not JIT stubs.
  /external/clang/lib/AST/
ItaniumMangle.cpp 285 void mangleOperatorName(OverloadedOperatorKind OO, unsigned Arity);
309 void mangleExpression(const Expr *E, unsigned Arity = UnknownArity);
    [all...]

Completed in 514 milliseconds

1 2 3 4 5