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

1 2 3 4 5 6 7 8 91011>>

  /external/tinyxml2/docs/search/
pages_1.js 3 ['load_20an_20xml_20file',['Load an XML File',['../_example_1.html',1,'']]]
pages_2.js 3 ['parse_20an_20xml_20from_20char_20buffer',['Parse an XML from char buffer',['../_example_2.html',1,'']]]
  /external/libcxx/test/std/containers/container.adaptors/priority.queue/priqueue.cons/
ctor_iter_iter.pass.cpp 22 int* an = a + sizeof(a)/sizeof(a[0]); local
23 std::priority_queue<int> q(a, an);
24 assert(q.size() == static_cast<std::size_t>(an - a));
ctor_iter_iter_comp.pass.cpp 23 int* an = a + sizeof(a)/sizeof(a[0]); local
25 q(a, an, std::greater<int>());
26 assert(q.size() == static_cast<std::size_t>(an - a));
  /external/libcxx/test/std/containers/sequences/vector.bool/
construct_iter_iter.pass.cpp 37 bool* an = a + sizeof(a)/sizeof(a[0]); local
38 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
39 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
40 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
41 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
42 test<std::vector<bool> >(a, an);
44 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an));
45 test<std::vector<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an));
46 test<std::vector<bool, min_allocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an));
47 test<std::vector<bool, min_allocator<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an));
    [all...]
construct_iter_iter_alloc.pass.cpp 38 bool* an = a + sizeof(a)/sizeof(a[0]); local
41 test<std::vector<bool> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc);
42 test<std::vector<bool> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc);
43 test<std::vector<bool> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc);
44 test<std::vector<bool> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc);
45 test<std::vector<bool> >(a, an, alloc);
50 test<std::vector<bool, min_allocator<bool>> >(input_iterator<const bool*>(a), input_iterator<const bool*>(an), alloc);
51 test<std::vector<bool, min_allocator<bool>> >(forward_iterator<const bool*>(a), forward_iterator<const bool*>(an), alloc);
52 test<std::vector<bool, min_allocator<bool>> >(bidirectional_iterator<const bool*>(a), bidirectional_iterator<const bool*>(an), alloc);
53 test<std::vector<bool, min_allocator<bool>> >(random_access_iterator<const bool*>(a), random_access_iterator<const bool*>(an), alloc)
    [all...]
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
copy_alloc.pass.cpp 33 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
34 test(std::deque<int, test_allocator<int> >(ab, an, test_allocator<int>(3)),
39 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
40 test(std::deque<int, other_allocator<int> >(ab, an, other_allocator<int>(3)),
46 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
47 test(std::deque<int, min_allocator<int> >(ab, an, min_allocator<int>()),
iter_iter_alloc.pass.cpp 45 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
46 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), test_allocator<int>(3));
47 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), test_allocator<int>(4));
48 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), test_allocator<int>(5));
49 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), test_allocator<int>(6));
51 test(input_iterator<const int*>(ab), input_iterator<const int*>(an), min_allocator<int>());
52 test(forward_iterator<const int*>(ab), forward_iterator<const int*>(an), min_allocator<int>());
53 test(bidirectional_iterator<const int*>(ab), bidirectional_iterator<const int*>(an), min_allocator<int>());
54 test(random_access_iterator<const int*>(ab), random_access_iterator<const int*>(an), min_allocator<int>());
move.pass.cpp 27 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
30 for (int* p = ab; p < an; ++p)
33 for (int* p = ab; p < an; ++p)
44 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
47 for (int* p = ab; p < an; ++p)
50 for (int* p = ab; p < an; ++p)
59 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
62 for (int* p = ab; p < an; ++p)
65 for (int* p = ab; p < an; ++p)
move_alloc.pass.cpp 27 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
30 for (int* p = ab; p < an; ++p)
33 for (int* p = ab; p < an; ++p)
42 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
45 for (int* p = ab; p < an; ++p)
48 for (int* p = ab; p < an; ++p)
57 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
60 for (int* p = ab; p < an; ++p)
63 for (int* p = ab; p < an; ++p)
72 int* an = ab + sizeof(ab)/sizeof(ab[0]) local
    [all...]
move_assign.pass.cpp 27 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
30 for (int* p = ab; p < an; ++p)
33 for (int* p = ab; p < an; ++p)
43 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
46 for (int* p = ab; p < an; ++p)
49 for (int* p = ab; p < an; ++p)
59 int* an = ab + sizeof(ab)/sizeof(ab[0]); local
62 for (int* p = ab; p < an; ++p)
65 for (int* p = ab; p < an; ++p)
75 int* an = ab + sizeof(ab)/sizeof(ab[0]) local
    [all...]
  /build/kati/testcase/
assign_after_tab.mk 1 # This is an assignment.
  /development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
TestHelper.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
31 String an = actual.replaceAll( "[\\s]+", " ").trim(); local
35 en, an);
  /external/chromium-libpac/test/js-unittest/
no_entrypoint.js 1 var x = "This is an invalid PAC script because it lacks a " +
  /external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/
rx-observable.hpp 117 template<class... AN>
118 static observable_type make(const Default&, AN&&... an) {
119 return observable_type(type(std::forward<AN>(an)...));
127 template<class... AN>
128 static observable_type make(const observable_type& that, const AN&...) {
139 template<class... AN>
140 static observable_type make(AN&&... an) {
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/RISCV/
rv64i-invalid.s 5 slliw a0, a0, 32 # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
6 srliw a0, a0, -1 # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
7 sraiw a0, a0, -19 # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
10 addiw a0, a1, -2049 # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [-2048, 2047]
11 ld ra, 2048(sp) # CHECK: :[[@LINE]]:8: error: immediate must be an integer in the range [-2048, 2047]
15 slliw a0, a0, %lo(1) # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
16 srliw a0, a0, %lo(a) # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
17 sraiw a0, a0, %hi(2) # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [0, 31]
20 addiw a0, a1, %hi(foo) # CHECK: :[[@LINE]]:15: error: immediate must be an integer in the range [-2048, 2047]
rv32i-aliases-invalid.s 7 li x0, 4294967296 # CHECK: :[[@LINE]]:8: error: immediate must be an integer in the range [-2147483648, 4294967295]
8 li x0, -2147483649 # CHECK: :[[@LINE]]:8: error: immediate must be an integer in the range [-2147483648, 4294967295]
9 li t4, foo # CHECK: :[[@LINE]]:8: error: immediate must be an integer in the range [-2147483648, 4294967295]
11 negw x1, x2 # CHECK: :[[@LINE]]:1: error: instruction use requires an option to be enabled
12 sext.w x3, x4 # CHECK: :[[@LINE]]:1: error: instruction use requires an option to be enabled
  /external/curl/docs/cmdline-opts/
compressed.d 7 an unsupported encoding, curl will report an error.
data-ascii.d 6 This is just an alias for --data.
  /external/epid-sdk/doc/html/
_examples.js 3 [ "Generating an Intel® EPID Signature", "_user_manual__generating_an_intel_epid_signature.html", [
7 [ "Verifying an Intel® EPID Signature", "_user_manual__verifying_an_intel_epid_signature.html", [
  /external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/
in-order-cpu.s 3 # CHECK: error: please specify an out-of-order cpu. 'atom' is an in-order cpu.
  /external/python/cpython2/Lib/plat-aix3/
regen 4 *) echo Probably not on an AIX 3 system 1>&2
  /external/python/cpython2/Lib/plat-aix4/
regen 4 *) echo Probably not on an AIX 4 system 1>&2
  /external/swiftshader/third_party/llvm-7.0/llvm/test/MC/ARM/
invalid-hint-arm.s 6 @ CHECK: error: operand must be an immediate in the range [0,239]
7 @ CHECK: error: operand must be an immediate in the range [0,239]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
AnimateDrawables.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
49 Animation an = new TranslateAnimation(0, 100, 0, 200); local
50 an.setDuration(2000);
51 an.setRepeatCount(-1);
52 an.initialize(10, 10, 10, 10);
54 mDrawable = new AnimateDrawable(dr, an);
55 an.startNow();

Completed in 1076 milliseconds

1 2 3 4 5 6 7 8 91011>>