/dalvik/dx/tests/112-dex-return-jsr-result/ |
info.txt | 1 This test checks to make sure a result returned more-or-less directly
|
/external/chromium_org/mojo/public/interfaces/bindings/tests/data/validation/ |
conformance_mthd0_struct_num_fields_less_than_min_requirement.data | 8 [u4]0 // num_fields: Less than the minimal number of fields
|
conformance_mthd3_array_num_bytes_less_than_array_header.data | 13 [u4]7 // num_bytes: Less than the size of array header.
|
conformance_mthd3_array_num_bytes_less_than_necessary_size.data | 13 [dist4]array // num_bytes: Less than the size needed (array header + 12 boolean
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
mutation-observer-leaks-nodes.html | 13 <p>Number of leaked nodes reported by DRT should be less than 100</p>
|
/external/chromium_org/third_party/skia/include/core/ |
SkTSearch.h | 34 // The most general form of SkTSearch takes an array of T and a key of type K. A functor, less, is 38 template <typename T, typename K, typename LESS> 39 int SkTSearch(const T base[], int count, const K& key, size_t elemSize, LESS& less) 55 if (less(*elem, key)) 62 if (less(*elem, key)) { 65 } else if (less(key, *elem)) { 71 // Adapts a less-than function to a functor. 72 template <typename T, bool (LESS)(const T&, const T&)> struct SkTLessFunctionToFunctorAdaptor { 73 bool operator()(const T& a, const T& b) { return LESS(a, b); [all...] |
/external/iptables/include/linux/netfilter_ipv4/ |
ipt_ttl.h | 12 IPT_TTL_LT, /* less than */
|
/external/iptables/include/linux/netfilter_ipv6/ |
ip6t_hl.h | 13 IP6T_HL_LT, /* less than */
|
/external/jsoncpp/test/data/ |
test_real_08.json | 2 // same as UINT_MAX in base 10 and digit less than UINT_MAX's last digit in
|
test_real_09.json | 2 // as ULONG_MAX in base 10 and digit less than ULONG_MAX's last digit in order
|
test_real_10.json | 2 // the same as INT_MIN in base 10 and digit less than INT_MIN's last digit in
|
test_real_11.json | 2 // the same as LONG_MIN in base 10 and digit less than LONG_MIN's last digit in
|
/external/kernel-headers/original/uapi/linux/netfilter_ipv4/ |
ipt_ttl.h | 12 IPT_TTL_LT, /* less than */
|
/external/kernel-headers/original/uapi/linux/netfilter_ipv6/ |
ip6t_hl.h | 13 IP6T_HL_LT, /* less than */
|
/external/libcxx/test/containers/associative/multiset/ |
types.pass.cpp | 12 // template <class Key, class Compare = less<Key>, 42 static_assert((std::is_same<std::multiset<int>::key_compare, std::less<int> >::value), ""); 43 static_assert((std::is_same<std::multiset<int>::value_compare, std::less<int> >::value), ""); 54 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::key_type, int>::value), ""); 55 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::value_type, int>::value), ""); 56 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::key_compare, std::less<int> >::value), ""); 57 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::value_compare, std::less<int> >::value), ""); 58 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::allocator_type, min_allocator<int>>::value), "") [all...] |
/external/libcxx/test/containers/associative/set/ |
types.pass.cpp | 12 // template <class Key, class Compare = less<Key>, 42 static_assert((std::is_same<std::set<int>::key_compare, std::less<int> >::value), ""); 43 static_assert((std::is_same<std::set<int>::value_compare, std::less<int> >::value), ""); 54 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::key_type, int>::value), ""); 55 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::value_type, int>::value), ""); 56 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::key_compare, std::less<int> >::value), ""); 57 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::value_compare, std::less<int> >::value), ""); 58 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::allocator_type, min_allocator<int> >::value), "") [all...] |
/external/llvm/cmake/modules/ |
LLVMConfigVersion.cmake.in | 4 # and patch versions not less than that requested.
|
/external/llvm/test/CodeGen/Generic/ |
ConstantExprLowering.ll | 12 br i1 %t1, label %less, label %not_less 14 less: ; preds = %entry 17 not_less: ; preds = %less, %entry 18 %t2 = phi i32 [ sub (i32 ptrtoint (i32* @XA to i32), i32 ptrtoint (i32* @XB to i32)), %less ], [ sub (i32 ptrtoint (i32* @XA to i32), i32 ptrtoint (i32* @XB to i32)), %entry ] ; <i32> [#uses=1]
|
/external/mockito/src/org/mockito/internal/util/ |
RemoveFirstLine.java | 11 * @return less first line
|
/external/skia/include/core/ |
SkTSearch.h | 34 // The most general form of SkTSearch takes an array of T and a key of type K. A functor, less, is 38 template <typename T, typename K, typename LESS> 39 int SkTSearch(const T base[], int count, const K& key, size_t elemSize, LESS& less) 55 if (less(*elem, key)) 62 if (less(*elem, key)) { 65 } else if (less(key, *elem)) { 71 // Adapts a less-than function to a functor. 72 template <typename T, bool (LESS)(const T&, const T&)> struct SkTLessFunctionToFunctorAdaptor { 73 bool operator()(const T& a, const T& b) { return LESS(a, b); [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/multiset/ |
types.pass.cpp | 12 // template <class Key, class Compare = less<Key>, 42 static_assert((std::is_same<std::multiset<int>::key_compare, std::less<int> >::value), ""); 43 static_assert((std::is_same<std::multiset<int>::value_compare, std::less<int> >::value), ""); 54 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::key_type, int>::value), ""); 55 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::value_type, int>::value), ""); 56 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::key_compare, std::less<int> >::value), ""); 57 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::value_compare, std::less<int> >::value), ""); 58 static_assert((std::is_same<std::multiset<int, std::less<int>, min_allocator<int>>::allocator_type, min_allocator<int>>::value), "") [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/associative/set/ |
types.pass.cpp | 12 // template <class Key, class Compare = less<Key>, 42 static_assert((std::is_same<std::set<int>::key_compare, std::less<int> >::value), ""); 43 static_assert((std::is_same<std::set<int>::value_compare, std::less<int> >::value), ""); 54 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::key_type, int>::value), ""); 55 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::value_type, int>::value), ""); 56 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::key_compare, std::less<int> >::value), ""); 57 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::value_compare, std::less<int> >::value), ""); 58 static_assert((std::is_same<std::set<int, std::less<int>, min_allocator<int>>::allocator_type, min_allocator<int> >::value), "") [all...] |
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/mpl/aux_/preprocessed/gcc/ |
less.hpp | 9 // Preprocessed version of "boost/mpl/less.hpp" header 67 struct less struct in namespace:boost::mpl 74 BOOST_MPL_AUX_LAMBDA_SUPPORT(2, less, (N1, N2)) 78 BOOST_MPL_AUX_NA_SPEC2(2, 2, less)
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/netfilter_ipv4/ |
ipt_ttl.h | 10 IPT_TTL_LT, /* less than */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/netfilter_ipv6/ |
ip6t_hl.h | 11 IP6T_HL_LT, /* less than */
|