HomeSort by relevance Sort by last modified time
    Searched refs:it (Results 76 - 100 of 10401) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/pat_trie_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
71 for (const_iterator it = begin(); it != end(); ++it)
74 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
75 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/pat_trie_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
71 for (const_iterator it = begin(); it != end(); ++it)
74 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
75 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
move.pass.cpp 42 recursive_directory_iterator it(std::move(endIt2));
43 TEST_CHECK(it == endIt);
52 // build 'it' up with "interesting" non-default state so we can test
53 // that it gets copied. We want to get 'it' into a state such that:
54 // it.options() != directory_options::none
55 // it.depth() != 0
56 // it.recursion_pending() != true
58 recursive_directory_iterator it(testDir, opts);
59 TEST_REQUIRE(it != endIt)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
increment.pass.cpp 54 recursive_directory_iterator it(testDir, ec);
59 TEST_REQUIRE(it != endIt);
60 const path entry = *it;
62 recursive_directory_iterator& it_ref = ++it;
63 TEST_CHECK(&it_ref == &it);
66 TEST_CHECK(it == endIt);
77 recursive_directory_iterator it(testDir, ec);
82 TEST_REQUIRE(it != endIt);
83 const path entry = *it;
85 const path entry2 = *it++
    [all...]
move.pass.cpp 42 recursive_directory_iterator it(std::move(endIt2));
43 TEST_CHECK(it == endIt);
52 // build 'it' up with "interesting" non-default state so we can test
53 // that it gets copied. We want to get 'it' into a state such that:
54 // it.options() != directory_options::none
55 // it.depth() != 0
56 // it.recursion_pending() != true
58 recursive_directory_iterator it(testDir, opts);
59 TEST_REQUIRE(it != endIt)
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssGrammar.java 34 CssTokens.TokenIterator it) {
36 for (; it.hasNext(); it.advance()) {
37 switch (it.type()) {
39 it.advance();
51 if (bracketDepth != 0) { it.advance(); }
67 CssTokens.TokenIterator it = tokens.iterator(); local
69 while (it.hasTokenAfterSpace()) {
71 if (it.type() != CssTokens.TokenType.IDENT) {
72 errorRecoveryUntilSemiOrCloseBracket(it);
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.members/
copy.pass.cpp 40 directory_iterator it(endIt);
41 TEST_CHECK(it == endIt);
49 const directory_iterator it(testDir);
50 TEST_REQUIRE(it != endIt);
51 const path entry = *it;
53 const directory_iterator it2(it);
54 TEST_REQUIRE(it2 == it);
56 TEST_CHECK(*it == entry);
move.pass.cpp 42 directory_iterator it(std::move(endIt2));
43 TEST_CHECK(it == endIt);
52 directory_iterator it(testDir);
53 TEST_REQUIRE(it != endIt);
54 const path entry = *it;
56 const directory_iterator it2(std::move(it));
59 TEST_CHECK(it == it2 || it == endIt);
move_assign.pass.cpp 28 // the directory iterators. Turn off this warning so we can test it.
77 directory_iterator it(testDir);
78 TEST_REQUIRE(it != endIt);
79 ++it;
80 TEST_REQUIRE(it != endIt);
81 const path entry = *it;
84 TEST_REQUIRE(it2 != it);
88 it2 = std::move(it);
95 directory_iterator it; local
97 directory_iterator& ref = (it2 = it);
    [all...]
  /external/libvpx/libvpx/third_party/libyuv/source/
mjpeg_validate.cc 24 const uint8* it = sample; local
25 while (it < end) {
27 it = static_cast<const uint8 *>(memchr(it, 0xff, end - it));
28 if (it == NULL) {
31 if (it[1] == 0xd9) {
34 ++it; // Skip over current 0xff.
  /external/libyuv/files/source/
mjpeg_validate.cc 24 const uint8* it = sample; local
25 while (it < end) {
27 it = static_cast<const uint8*>(memchr(it, 0xff, end - it));
28 if (it == NULL) {
31 if (it[1] == 0xd9) {
34 ++it; // Skip over current 0xff.
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.directory_iterator/directory_iterator.members/
copy.pass.cpp 40 directory_iterator it(endIt);
41 TEST_CHECK(it == endIt);
49 const directory_iterator it(testDir);
50 TEST_REQUIRE(it != endIt);
51 const path entry = *it;
53 const directory_iterator it2(it);
54 TEST_REQUIRE(it2 == it);
56 TEST_CHECK(*it == entry);
move.pass.cpp 42 directory_iterator it(std::move(endIt2));
43 TEST_CHECK(it == endIt);
52 directory_iterator it(testDir);
53 TEST_REQUIRE(it != endIt);
54 const path entry = *it;
56 const directory_iterator it2(std::move(it));
59 TEST_CHECK(it == it2 || it == endIt);
move_assign.pass.cpp 28 // the directory iterators. Turn off this warning so we can test it.
77 directory_iterator it(testDir);
78 TEST_REQUIRE(it != endIt);
79 ++it;
80 TEST_REQUIRE(it != endIt);
81 const path entry = *it;
84 TEST_REQUIRE(it2 != it);
88 it2 = std::move(it);
95 directory_iterator it; local
97 directory_iterator& ref = (it2 = it);
    [all...]
  /art/test/478-checker-clinit-check-pruning/src/
Main.java 44 // CFG as it is before the next pass (liveness analysis) instead.
84 // dumped after (nor before) this step, we check the CFG as it is
299 * later invoke-static (or it's ClinitCheck).
309 static void constClassAndInvokeStatic(Iterable<?> it) {
311 ClassWithClinit7.$noinline$someStaticMethod(it);
322 static void $noinline$someStaticMethod(Iterable<?> it) {
323 it.iterator();
340 static void sgetAndInvokeStatic(Iterable<?> it) {
342 ClassWithClinit8.$noinline$someStaticMethod(it);
354 static void $noinline$someStaticMethod(Iterable<?> it) {
542 Iterable it = new Iterable() { public java.util.Iterator iterator() { return null; } }; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/tree_policy/
order_statistics_imp.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
46 node_iterator it = node_begin(); local
49 while (it != end_it)
51 node_iterator l_it = it.get_l_child();
55 return *it;
57 it = l_it;
61 it = it.get_r_child()
79 node_const_iterator it = node_begin(); local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/tree_policy/
order_statistics_imp.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
46 node_iterator it = node_begin(); local
49 while (it != end_it)
51 node_iterator l_it = it.get_l_child();
55 return *it;
57 it = l_it;
61 it = it.get_r_child()
79 node_const_iterator it = node_begin(); local
    [all...]
  /system/core/base/
quick_exit.cpp 32 for (auto it = quick_exit_handlers.rbegin(); it != quick_exit_handlers.rend(); ++it) {
33 (*it)();
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
arm-it-bad-3.d 1 #name: Test automatic IT generation in Thumb-1 architectures.
2 #as: -mimplicit-it=always
3 #error-output: arm-it-bad-3.l
arm-it-bad.d 1 #name: Test IT block validation in ARM mode.
2 #as: -march=armv7a -mimplicit-it=never
3 #error-output: arm-it-bad.l
armv8-a-it-bad.d 1 #name: Deprecated IT blocks (ARM v8)
2 #error-output: armv8-a-it-bad.l
3 #as: -mimplicit-it=always
thumb2_bcond.d 7 0+000 <[^>]+> bf18[ ]+it ne
9 0+00. <[^>]+> bf38[ ]+it cc
11 0+00. <[^>]+> bf28[ ]+it cs
13 0+0.. <[^>]+> bfb8[ ]+it lt
15 0+0.. <[^>]+> bf08[ ]+it eq
17 0+0.. <[^>]+> bfc8[ ]+it gt
19 0+0.. <[^>]+> bfb8[ ]+it lt
21 0+0.. <[^>]+> bf08[ ]+it eq
  /art/runtime/gc/accounting/
heap_bitmap.cc 28 auto it = std::find(continuous_space_bitmaps_.begin(), continuous_space_bitmaps_.end(), local
30 CHECK(it != continuous_space_bitmaps_.end()) << " continuous space bitmap " << old_bitmap
32 *it = new_bitmap;
37 auto it = std::find(large_object_bitmaps_.begin(), large_object_bitmaps_.end(), old_bitmap); local
38 CHECK(it != large_object_bitmaps_.end()) << " large object bitmap " << old_bitmap
40 *it = new_bitmap;
57 auto it = std::find(continuous_space_bitmaps_.begin(), continuous_space_bitmaps_.end(), bitmap); local
58 DCHECK(it != continuous_space_bitmaps_.end());
59 continuous_space_bitmaps_.erase(it);
69 auto it = std::find(large_object_bitmaps_.begin(), large_object_bitmaps_.end(), bitmap) local
    [all...]
  /device/generic/goldfish-opengl/shared/OpenglCodecCommon/
IndexRangeCache.cpp 40 IndexRangeMap::const_iterator it = local
44 if (it != mIndexRangeCache.end()) {
45 if (start_out) *start_out = it->second.start;
46 if (end_out) *end_out = it->second.end;
60 IndexRangeMap::iterator it = local
67 while (it != mIndexRangeCache.end()) {
68 size_t rangeStart = it->first.offset;
70 it->first.offset +
71 it->first.count * glSizeof(it->first.type)
    [all...]
  /frameworks/compile/mclinker/unittests/
SymbolTableTest.cpp 17 // create testee. modify it if need
37 mcld::SymbolTable<>::iterator it; local
38 it = m_pTestee->begin();
39 ASSERT_EQ(it, m_pTestee->end());

Completed in 445 milliseconds

1 2 34 5 6 7 8 91011>>