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

1 2 3 4

  /packages/apps/Calculator/
arity-2.1.2.jar 
Android.mk 34 LOCAL_PREBUILT_STATIC_JAVA_LIBRARIES := libarity:arity-2.1.2.jar
  /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);
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/
inserter_algorithm.hpp 38 # define BOOST_MPL_AUX_INSERTER_ALGORITHM_DEF(arity, name) \
41 BOOST_MPL_PP_DEFAULT_PARAMS(arity, typename P, na) \
44 : aux::name##_impl<BOOST_MPL_PP_PARAMS(arity, P)> \
49 BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), typename P) \
51 struct name< BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), P),na > \
54 BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), P) \
58 BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), P) \
66 BOOST_MPL_PP_DEFAULT_PARAMS(arity, typename P, na) \
69 : aux::reverse_##name##_impl<BOOST_MPL_PP_PARAMS(arity, P)> \
74 BOOST_MPL_PP_PARAMS(BOOST_PP_DEC(arity), typename P)
    [all...]
arity.hpp 13 // $Id: arity.hpp 49267 2008-10-11 06:19:02Z agurtovoy $
28 // that require the arity workaround in the first place
30 struct arity struct in namespace:boost::mpl::aux
arity_spec.hpp 18 #include <boost/mpl/limits/arity.hpp>
21 #include <boost/mpl/aux_/arity.hpp>
31 struct arity< \
lambda_support.hpp 47 typedef BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::int_<i> arity; \
73 typedef BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::int_<i> arity; \
102 typedef BOOST_MPL_AUX_ADL_BARRIER_NAMESPACE::int_<i> arity; \
na_spec.hpp 22 # include <boost/mpl/aux_/arity.hpp>
46 struct arity< \
template_arity.hpp 50 # include <boost/mpl/limits/arity.hpp>
149 : F::arity
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/
protect.hpp 18 #include <boost/mpl/aux_/arity.hpp>
41 struct arity< protect<T>, N > struct in namespace:boost::mpl::aux
42 : arity<T,N>
apply_fwd.hpp 35 # include <boost/mpl/limits/arity.hpp>
bind_fwd.hpp 36 # include <boost/mpl/limits/arity.hpp>
placeholders.hpp 48 # include <boost/mpl/limits/arity.hpp>
apply_wrap.hpp 22 # include <boost/mpl/aux_/arity.hpp>
38 # include <boost/mpl/limits/arity.hpp>
125 ::boost::mpl::aux::arity<F,i_>::value
arg.hpp 41 # include <boost/mpl/limits/arity.hpp>
quote.hpp 49 # include <boost/mpl/limits/arity.hpp>
  /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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
function_traits.hpp 26 BOOST_STATIC_CONSTANT(unsigned, arity = 0);
33 BOOST_STATIC_CONSTANT(unsigned, arity = 1);
42 BOOST_STATIC_CONSTANT(unsigned, arity = 2);
53 BOOST_STATIC_CONSTANT(unsigned, arity = 3);
63 BOOST_STATIC_CONSTANT(unsigned, arity = 4);
75 BOOST_STATIC_CONSTANT(unsigned, arity = 5);
88 BOOST_STATIC_CONSTANT(unsigned, arity = 6);
102 BOOST_STATIC_CONSTANT(unsigned, arity = 7);
117 BOOST_STATIC_CONSTANT(unsigned, arity = 8);
133 BOOST_STATIC_CONSTANT(unsigned, arity = 9)
    [all...]
  /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++ ) {
  /packages/apps/Calculator/src/com/android/calculator2/
HistoryAdapter.java 28 import org.javia.arity.SyntaxException;
Logic.java 32 import org.javia.arity.Symbols;
33 import org.javia.arity.SyntaxException;
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-arity-mismatch.js 30 // Test inlining at call sites with mismatched arity.
  /external/v8/test/mjsunit/compiler/
inline-arity-mismatch.js 30 // Test inlining at call sites with mismatched arity.
  /external/valgrind/main/VEX/priv/
guest_arm_helpers.c 563 Int i, arity = 0; local
565 arity++;
569 for (i = 0; i < arity; i++) {
585 vassert(arity == 4);
771 vassert(arity == 4);
821 vassert(arity == 4);
    [all...]

Completed in 433 milliseconds

1 2 3 4