/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/ceres-solver/internal/ceres/ |
gradient_checker_test.cc | 56 GoodTestTerm(int arity, int const *dim) : arity_(arity) { 57 // Make 'arity' random vectors. 109 BadTestTerm(int arity, int const *dim) : arity_(arity) { 110 // Make 'arity' random vectors. 164 int const arity = 3; local 165 int const dim[arity] = { 2, 3, 4 }; 168 FixedArray<double*> parameters(arity); 169 for (int j = 0; j < arity; ++j) [all...] |
gradient_checking_cost_function_test.cc | 72 TestTerm(int arity, int const *dim) : arity_(arity) { 73 // Make 'arity' random vectors. 136 int const arity = 3; local 137 int const dim[arity] = { 2, 3, 4 }; 140 vector<double*> parameters(arity); 141 for (int j = 0; j < arity; ++j) { 150 vector<double*> original_jacobians(arity); 151 vector<double*> jacobians(arity); 153 for (int j = 0; j < arity; ++j) 193 int const arity = 3; local [all...] |
/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)) 278 // %(Arity)s predicate assertion macros. 316 """Given the maximum arity n, updates the header file that implement [all...] |
/external/libvpx/libvpx/third_party/googletest/src/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/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;
|
/external/llvm/include/llvm/IR/ |
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/v8/test/mjsunit/compiler/ |
inline-arity-mismatch.js | 30 // Test inlining at call sites with mismatched 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.
|