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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/none/tests/amd64/
nibz_bennee_mmap.stdout.exp 1 made it through alive!
  /external/chromium_org/third_party/angle_dx11/src/compiler/
IntermTraverse.cpp 26 void TIntermSymbol::traverse(TIntermTraverser* it)
28 it->visitSymbol(this);
31 void TIntermConstantUnion::traverse(TIntermTraverser* it)
33 it->visitConstantUnion(this);
39 void TIntermBinary::traverse(TIntermTraverser* it)
46 if(it->preVisit)
48 visit = it->visitBinary(PreVisit, this);
56 it->incrementDepth();
58 if(it->rightToLeft)
62 right->traverse(it);
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/list_update_map_/
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
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it));
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.alg/re.alg.search/
no_update_pos.pass.cpp 29 std::cregex_iterator it{text, text+6, re};
32 assert(it->str() == "a");
33 assert(it->position(0) == 0);
34 assert(it->length(0) == 1);
36 ++it;
37 assert(it == end);
  /external/chromium_org/third_party/WebKit/Source/wtf/tests/
Vector.cpp 41 Vector<int>::iterator it = intVector.begin(); local
43 EXPECT_TRUE(end != it);
45 EXPECT_EQ(10, *it);
46 ++it;
47 EXPECT_EQ(11, *it);
48 ++it;
49 EXPECT_EQ(12, *it);
50 ++it;
51 EXPECT_EQ(13, *it);
52 ++it;
65 Vector<int>::reverse_iterator it = intVector.rbegin(); local
    [all...]
  /external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/
AttributedCharacterIteratorTest.java 32 AttributedCharacterIterator it = attrString.getIterator(); local
33 assertEquals("Wrong first", 'T', it.current());
34 it.next();
35 assertEquals("Wrong second", 'e', it.current());
37 it.next();
38 assertEquals("Wrong last", 'g', it.current());
39 it.next();
40 assertTrue("Wrong final", it.current() == CharacterIterator.DONE);
42 it = attrString.getIterator(null, 2, 8);
43 assertEquals("Wrong first2", 's', it.current())
52 AttributedCharacterIterator it = attrString.getIterator(); local
68 AttributedCharacterIterator it = attrString.getIterator(null, 2, 6); local
78 AttributedCharacterIterator it = attrString.getIterator(null, 2, 6); local
88 AttributedCharacterIterator it = attrString.getIterator(); local
105 AttributedCharacterIterator it = attrString.getIterator(); local
121 AttributedCharacterIterator it = attrString.getIterator(); local
138 AttributedCharacterIterator it = attrString.getIterator(); local
149 AttributedCharacterIterator it = attrString.getIterator(); local
161 AttributedCharacterIterator it = as.getIterator(); local
    [all...]
  /build/tools/atree/
atree.cpp 36 " of files included. It sets the variable ATREE_FILES.\n"
53 " 'rm DEST' removes the destination file and fails if it's missing.\n"
171 for (vector<string>::iterator it=g_listFiles.begin();
172 it!=g_listFiles.end(); it++) {
173 printf("-f \"%s\"\n", it->c_str());
175 for (vector<string>::iterator it=g_inputBases.begin();
176 it!=g_inputBases.end(); it++) {
177 printf("-I \"%s\"\n", it->c_str())
    [all...]
  /libcore/luni/src/main/java/java/util/
AbstractCollection.java 26 * modifiable collection it's necessary to override the {@code add()} method that
68 * if {@code collection} is {@code null}, or if it contains
74 Iterator<? extends E> it = collection.iterator(); local
75 while (it.hasNext()) {
76 if (add(it.next())) {
84 * Removes all elements from this {@code Collection}, leaving it empty (optional).
93 * it the iterator does not support removing elements from
100 Iterator<E> it = iterator(); local
101 while (it.hasNext()) {
102 it.next()
127 Iterator<E> it = iterator(); local
165 Iterator<?> it = collection.iterator(); local
225 Iterator<?> it = iterator(); local
275 Iterator<?> it = iterator(); local
316 Iterator<?> it = iterator(); local
370 Iterator<?> it = iterator(); local
    [all...]
  /external/chromium_org/cc/test/
fake_content_layer_client.cc 25 for (RectPaintVector::const_iterator it = draw_rects_.begin();
26 it != draw_rects_.end(); ++it) {
27 const gfx::RectF& draw_rect = it->first;
28 const SkPaint& paint = it->second;
36 for (BitmapVector::const_iterator it = draw_bitmaps_.begin();
37 it != draw_bitmaps_.end(); ++it) {
38 canvas->drawBitmap(it->bitmap, it->point.x(), it->point.y(), &it->paint)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
remove_stale_cache_files.cc 23 scoped_ptr<FileCache::Iterator> it = cache->GetIterator(); local
24 for (; !it->IsAtEnd(); it->Advance()) {
26 FileError error = resource_metadata->GetResourceEntryById(it->GetID(),
30 (!it->GetValue().is_dirty() &&
31 it->GetValue().md5() != entry.file_specific_info().md5())) {
32 FileError error = cache->Remove(it->GetID());
35 << it->GetID();
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
stl_util.h 34 for (ForwardIterator it = begin; it != end; ++it) {
35 delete it->second;
42 for (typename T::iterator it = container->begin(); it != container->end();
43 ++it) {
44 delete *it;
  /external/svox/pico/lang/
PicoLangItItInSystem.mk 2 # Installation of it-IT for the Pico TTS engine in the system image
4 # Include this file in a product makefile to include the language files for it-IT
10 external/svox/pico/lang/it-IT_cm0_sg.bin:system/tts/lang_pico/it-IT_cm0_sg.bin \
11 external/svox/pico/lang/it-IT_ta.bin:system/tts/lang_pico/it-IT_ta.bin
  /external/chromium_org/cc/layers/
layer_iterator.cc 21 LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>* it) {
22 it->target_render_surface_layer_index_ = 0;
23 it->current_layer_index_ =
34 LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>* it) {
35 it->target_render_surface_layer_index_ =
37 it->current_layer_index_ = 0;
45 LayerIterator<LayerType, LayerList, RenderSurfaceType, ActionType>* it) {
48 if (it->current_layer_represents_contributing_render_surface()) {
51 // came from in the next RenderSurface so we can get back to it.
52 it->target_render_surface()->current_layer_index_history_
    [all...]
  /external/chromium_org/content/browser/indexed_db/
list_set_unittest.cc 17 list_set<int>::iterator it = set.begin(); local
18 EXPECT_EQ(3, *it);
19 ++it;
20 EXPECT_EQ(2, *it);
21 it++;
22 EXPECT_EQ(1, *it);
23 --it;
24 EXPECT_EQ(2, *it);
25 it--;
26 EXPECT_EQ(3, *it);
42 list_set<int>::const_iterator it = ref.begin(); local
55 list_set<int>::iterator it = set.begin(); local
73 list_set<int>::iterator it = set.begin(); local
90 list_set<int>::iterator it = set.begin(); local
116 list_set<Wrapped<int> >::iterator it = set.begin(); local
127 list_set<Wrapped<int> >::iterator it = set.begin(); local
143 list_set<Wrapped<int> >::iterator it = set.begin(); local
156 list_set<Wrapped<int>*>::iterator it = set.begin(); local
167 list_set<Wrapped<int>*>::iterator it = set.begin(); local
183 list_set<Wrapped<int>*>::iterator it = set.begin(); local
204 list_set<scoped_refptr<RefCounted<int> > >::iterator it = set.begin(); local
219 list_set<scoped_refptr<RefCounted<int> > >::iterator it = set.begin(); local
235 list_set<scoped_refptr<RefCounted<int> > >::iterator it = set.begin(); local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
tasn_new.c 67 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
69 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
71 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
76 if (ASN1_item_ex_new(&ret, it) > 0)
83 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
85 return asn1_item_ex_combine_new(pval, it, 0);
88 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
94 const ASN1_AUX *aux = it->funcs;
106 if (it->sname
268 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
    [all...]
  /external/openssl/crypto/asn1/
tasn_new.c 67 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
69 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
71 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
73 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
76 if (ASN1_item_ex_new(&ret, it) > 0)
83 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
85 return asn1_item_ex_combine_new(pval, it, 0);
88 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
94 const ASN1_AUX *aux = it->funcs;
106 if (it->sname
268 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
    [all...]
  /external/oprofile/libutil++/
sparse_array.h 29 typename container_type::const_iterator it = container.find(index); local
30 if (it != container.end())
31 return it->second;
50 typename container_type::const_iterator it = rhs.container.begin(); local
52 for ( ; it != it_end; it++)
53 container[it->first] += it->second;
64 typename container_type::const_iterator it = rhs.container.begin(); local
66 for ( ; it != it_end; it++
88 typename container_type::const_iterator it = container.begin(); local
    [all...]

Completed in 1691 milliseconds

1 2 3 4 5 6 7 8 91011>>