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

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/none/tests/amd64/
nibz_bennee_mmap.stdout.exp 1 made it through alive!
  /external/androidplot/AndroidPlot-Core/src/test/java/com/androidplot/mock/
MockRectF.java 31 public RectF it; field in class:MockRectF
40 it.left = rhs.left;
41 it.top = rhs.top;
42 it.right = rhs.right;
43 it.bottom = rhs.bottom;
48 it.left = left;
49 it.top = top;
50 it.right = right;
51 it.bottom = bottom;
61 it.left = it.left + dx;
    [all...]
  /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));
  /external/libcxx/test/std/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);
backup.pass.cpp 31 std::sregex_iterator it(s.begin(), s.end(), re);
34 assert(it->position(0) == 0);
35 assert(it->length(0) == 1);
37 ++it;
38 assert(it->position(0) == 5);
39 assert(it->length(0) == 1);
41 ++it;
42 assert(it == end);
50 std::regex_iterator<std::list<char>::iterator> it(l.begin(), l.end(), re);
53 assert(it->position(0) == 0)
    [all...]
  /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);
backup.pass.cpp 31 std::sregex_iterator it{s.begin(), s.end(), re};
34 assert(it->position(0) == 0);
35 assert(it->length(0) == 1);
37 ++it;
38 assert(it->position(0) == 5);
39 assert(it->length(0) == 1);
41 ++it;
42 assert(it == end);
50 std::regex_iterator<std::list<char>::iterator> it{l.begin(), l.end(), re};
53 assert(it->position(0) == 0)
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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"
93 // Escape the filename so that it can be added to the makefile properly.
191 for (vector<string>::iterator it=g_listFiles.begin();
192 it!=g_listFiles.end(); it++) {
193 printf("-f \"%s\"\n", it->c_str());
195 for (vector<string>::iterator it=g_inputBases.begin();
196 it!=g_inputBases.end(); it++)
    [all...]
  /frameworks/compile/mclinker/lib/LD/
MergedStringTable.cpp 19 string_map_iterator it, end = m_StringMap.end(); local
21 for (it = m_StringMap.begin(); it != end; ++it) {
22 it->setValue(offset);
23 offset += it->getKey().size() + 1;
30 string_map_iterator it, end = m_StringMap.end(); local
31 for (it = m_StringMap.begin(); it != end; ++it) {
    [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/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
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
CodeGenUtil.kt 21 fun toCode(it : Expr, full : Boolean) : KCode {
22 if (it.isDynamic() && !full) {
23 return kcode(it.executePendingLocalName)
25 return when (it) {
27 app("", it.getLeft().toCode())
28 app(" ", it.getOp()).app(" ")
29 app("", it.getRight().toCode())
32 app("", it.getExpr().toCode())
34 app("", it.getType().toJavaCode())
37 if (it.isListener())
    [all...]
  /external/boringssl/src/crypto/asn1/
tasn_new.c 10 * apply to all code found in this distribution, be it the RC4, RSA,
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
267 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
    [all...]
  /frameworks/compile/mclinker/lib/Script/
SectionsCmd.cpp 24 for (iterator it = begin(), ie = end(); it != ie; ++it) {
25 if (*it != NULL)
26 delete *it;
33 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
34 switch ((*it)->getKind()) {
39 (*it)->dump()
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/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));
75 _GLIBCXX_DEBUG_ASSERT(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/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));
75 _GLIBCXX_DEBUG_ASSERT(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /external/webp/src/enc/
iterator.c 22 static void InitLeft(VP8EncIterator* const it) {
23 it->y_left_[-1] = it->u_left_[-1] = it->v_left_[-1] =
24 (it->y_ > 0) ? 129 : 127;
25 memset(it->y_left_, 129, 16);
26 memset(it->u_left_, 129, 8);
27 memset(it->v_left_, 129, 8);
28 it->left_nz_[8] = 0;
31 static void InitTop(VP8EncIterator* const it) {
    [all...]
  /external/v8/src/arm64/
decoder-arm64.cc 33 std::list<DecoderVisitor*>::iterator it; local
34 for (it = visitors_.begin(); it != visitors_.end(); it++) {
35 if (*it == registered_visitor) {
36 visitors_.insert(it, new_visitor);
42 DCHECK(*it == registered_visitor);
43 visitors_.insert(it, new_visitor);
50 std::list<DecoderVisitor*>::iterator it; local
51 for (it = visitors_.begin(); it != visitors_.end(); it++)
    [all...]
  /external/compiler-rt/test/asan/TestCases/Windows/
crt_initializers.cc 18 for (FPTR* it = &__xi_a; it < &__xi_z; ++it) {
19 if (*it)

Completed in 1420 milliseconds

1 2 3 4 5 6 7 8 91011>>