/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
TestCanonicalIterator.java | 44 CanonicalIterator it = new CanonicalIterator(""); local 64 characterTest(s, i, it); 66 characterTest(s + "\u0345", i, it); 76 CanonicalIterator it = new CanonicalIterator(s); local 102 it.setSource(s); 104 String item = it.next(); 141 CanonicalIterator it = new CanonicalIterator(testArray[i][0]); local 146 String result = it.next(); 156 it.reset(); 157 if(!it.next().equals(first)) 263 Iterator it = col.iterator(); local [all...] |
/external/owasp/sanitizer/src/tests/org/owasp/html/ |
CssFuzzerTest.java | 123 for (CssTokens.TokenIterator it = tokens.iterator(); it.hasNext(); 124 it.advance()) { 125 System.err.println(it.token() + ":" + it.type()); 143 for (CssTokens.TokenIterator it = tokens.iterator(); it.hasNext();) { 144 CssTokens.TokenType type = it.type(); 145 String token = it.next(); 253 * This hack helps ignore it [all...] |
/frameworks/base/services/core/java/com/android/server/job/controllers/ |
TimeController.java | 87 * Check if the job has a timing constraint, and if so determine where to insert it in our 95 ListIterator<JobStatus> it = mTrackedJobs.listIterator(mTrackedJobs.size()); local 96 while (it.hasPrevious()) { 97 JobStatus ts = it.previous(); 106 it.next(); 108 it.add(job); 155 Iterator<JobStatus> it = mTrackedJobs.iterator(); local 156 while (it.hasNext()) { 157 JobStatus job = it.next(); 166 it.remove() 183 Iterator<JobStatus> it = mTrackedJobs.iterator(); local [all...] |
/frameworks/base/tools/layoutlib/bridge/src/android/text/ |
StaticLayout_Delegate.java | 138 BreakIterator it = BreakIterator.getLineInstance(new ULocale(builder.mLocale)); local 139 it.setText(new Segment(builder.mText, 0, length)); 144 it.first(); 145 while ((loc = it.next()) != BreakIterator.DONE) { 171 * Compute metadata each character - things which help in deciding if it's possible to break
|
/libcore/luni/src/main/java/java/util/ |
AbstractList.java | 25 * modifiable {@code List} it's necessary to override the {@code add()} method that 177 SubAbstractListIterator(ListIterator<E> it, 179 iterator = it; 449 Iterator<? extends E> it = collection.iterator(); local 450 while (it.hasNext()) { 451 add(location++, it.next()); 457 * Removes all elements from this list, leaving it empty. 525 Iterator<?> it = iterator(); local 526 while (it.hasNext()) { 527 Object object = it.next() 543 ListIterator<?> it = listIterator(); local 582 ListIterator<?> it = listIterator(size()); local 655 Iterator<?> it = listIterator(start); local [all...] |
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
SearchIterator.java | 30 * this class, it is easy to scan through text looking for all occurrences of 229 // Create a clone of CharacterItearator, so it won't 261 // Create a clone of CharacterItearator, so it won't 370 CharacterIterator it = search_.text(); local 371 it.setIndex(search_.matchedIndex_); 372 while (it.getIndex() < limit) { 373 result.append(it.current()); 374 it.next(); 376 it.setIndex(search_.matchedIndex_); 413 // if matchedIndex == DONE, it means that either a [all...] |
/frameworks/base/core/java/android/util/ |
MapCollections.java | 200 Iterator<?> it = collection.iterator(); local 201 while (it.hasNext()) { 202 if (!contains(it.next())) { 379 Iterator<?> it = collection.iterator(); local 380 while (it.hasNext()) { 381 if (!contains(it.next())) { 457 Iterator<?> it = collection.iterator(); local 458 while (it.hasNext()) { 459 if (!map.containsKey(it.next())) { 468 Iterator<?> it = collection.iterator() local 477 Iterator<K> it = map.keySet().iterator(); local [all...] |
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/ |
TimeZoneResultAdapter.java | 191 * saved, it will remove the oldest and append this one. 211 Iterator<String> it = recents.iterator(); local 213 if (!it.hasNext()) { 216 it.next(); 217 it.remove(); 275 // We'll need to re-inflate the view if it was null, or if it was used as an empty item.
|
/frameworks/support/v4/java/android/support/v4/util/ |
MapCollections.java | 198 Iterator<?> it = collection.iterator(); local 199 while (it.hasNext()) { 200 if (!contains(it.next())) { 377 Iterator<?> it = collection.iterator(); local 378 while (it.hasNext()) { 379 if (!contains(it.next())) { 455 Iterator<?> it = collection.iterator(); local 456 while (it.hasNext()) { 457 if (!map.containsKey(it.next())) { 466 Iterator<?> it = collection.iterator() local 475 Iterator<K> it = map.keySet().iterator(); local [all...] |
/libcore/luni/src/test/java/libcore/java/text/ |
OldAttributedStringTest.java | 31 AttributedCharacterIterator it = attrString.getIterator(); local 33 buf.append(it.first()); 35 while ((ch = it.next()) != CharacterIterator.DONE) 171 AttributedCharacterIterator it = attrString.getIterator(); local 173 buf.append(it.first()); 175 while ((ch = it.next()) != CharacterIterator.DONE) 286 AttributedCharacterIterator it = as.getIterator(); local 287 assertEquals("non-null value limit", 2, it 293 it = as.getIterator(); 294 assertEquals("null value limit", 4, it 402 AttributedCharacterIterator it = attrString.getIterator(); local 427 AttributedCharacterIterator it = attrString.getIterator(aci); local 459 AttributedCharacterIterator it = attrString.getIterator(aci, 1, 5); local [all...] |
/art/runtime/jdwp/ |
object_registry.cc | 104 // This object isn't in the registry yet, so add it. 124 for (auto it = object_to_entry_.lower_bound(identity_hash_code), end = object_to_entry_.end(); 125 it != end && it->first == identity_hash_code; ++it) { 126 ObjectRegistryEntry* entry = it->second; 173 auto it = id_to_entry_.find(id); local 174 if (it == id_to_entry_.end()) { 178 ObjectRegistryEntry& entry = *it->second; 189 auto it = id_to_entry_.find(id) local 198 auto it = id_to_entry_.find(id); local 206 auto it = id_to_entry_.find(id); local 236 auto it = id_to_entry_.find(id); local 250 auto it = id_to_entry_.find(id); local [all...] |
/bionic/libc/bionic/ |
pthread_atfork.cpp | 52 for (atfork_t* it = first_; it != nullptr; it = it->next) { 53 f(it); 59 for (atfork_t* it = last_; it != nullptr; it = it->prev) { 60 f(it); 78 atfork_t* it = first_; local [all...] |
/cts/tools/cts-api-coverage/src/com/android/cts/apicoverage/ |
ApiPackage.java | 82 Iterator<Entry<String, ApiClass>> it = mApiClassMap.entrySet().iterator(); local 83 while (it.hasNext()) { 84 Map.Entry<String, ApiClass> entry = it.next();
|
/development/cmds/monkey/src/com/android/commands/monkey/ |
MonkeyUtils.java | 100 Iterator<String> it = mValidPackages.iterator(); local 101 while (it.hasNext()) { 102 System.out.println(":AllowPackage: " + it.next()); 106 Iterator<String> it = mInvalidPackages.iterator(); local 107 while (it.hasNext()) { 108 System.out.println(":DisallowPackage: " + it.next());
|
/development/ndk/sources/android/ndk_helper/ |
gestureDetector.cpp | 184 std::vector<int32_t>::iterator it = vec_pointers_.begin(); local 187 for( ; it != it_end; ++it, ++i ) 189 if( *it == released_pointer_id ) 191 vec_pointers_.erase( it ); 292 std::vector<int32_t>::iterator it = vec_pointers_.begin(); local 295 for( ; it != it_end; ++it, ++i ) 297 if( *it == released_pointer_id ) 299 vec_pointers_.erase( it ); [all...] |
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/ |
MyCertificateFactorySpi.java | 100 Iterator it = engineGetCertPathEncodings(); local 101 if (!it.hasNext()) { 104 return engineGenerateCertPath(inStream, (String) it.next());
|
/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...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/ |
X509ExtensionUtil.java | 61 Enumeration it = DERSequence.getInstance(fromExtensionValue(extVal)).getObjects(); local 62 while (it.hasMoreElements()) 64 GeneralName genName = GeneralName.getInstance(it.nextElement());
|
/external/ceres-solver/include/ceres/ |
ordered_groups.h | 66 typename map<T, int>::const_iterator it = element_to_group_.find(element); local 67 if (it != element_to_group_.end()) { 68 if (it->second == group) { 73 group_to_elements_[it->second].erase(element); 74 if (group_to_elements_[it->second].size() == 0) { 75 group_to_elements_.erase(it->second); 89 // Remove the element, no matter what group it is in. Return value 100 // If the group is empty, then get rid of it. 124 typename map<int, set<T> >::reverse_iterator it = local 127 new_group_to_elements[it->first] = it->second 146 typename map<T, int>::const_iterator it = element_to_group_.find(element); local 154 typename map<T, int>::const_iterator it = element_to_group_.find(element); local 161 typename map<int, set<T> >::const_iterator it = local [all...] |
/external/ceres-solver/internal/ceres/ |
coordinate_descent_minimizer.cc | 72 for (map<int, set<double*> >::const_iterator it = group_to_elements.begin(); 73 it != group_to_elements.end(); 74 ++it) { 75 for (set<double*>::const_iterator ptr_it = it->second.begin(); 76 ptr_it != it->second.end(); 83 independent_set_offsets_.back() + it->second.size()); 106 const map<ParameterBlock*, int>::const_iterator it = local 108 if (it != parameter_block_index.end()) { 109 residual_blocks_[it->second].push_back(residual_block); 178 // some ways is fine, since it won't change the parameters an 244 map<int, set<double*> >::const_iterator it = group_to_elements.begin(); local [all...] |
/external/clang/lib/CodeGen/ |
CGRecordLayout.h | 29 /// When the AST record layout does this, we represent it in the LLVM IR's type 36 /// size), loading it, and shifting and masking to extract the particular 117 /// laying it out as a complete object. 121 /// used when laying it out as a base subobject. 208 it = BitFields.find(FD); local 209 assert(it != BitFields.end() && "Unable to find bitfield info"); 210 return it->second;
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AbstractListeningExecutorService.java | 12 * AbstractExecutorService from the JSR166 CVS repository. It contains the desired methods. 134 Iterator<Future<T>> it = futures.iterator(); local 135 while (it.hasNext()) { 136 execute((Runnable) (it.next()));
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
Visitor.java | 62 Iterator it = c.iterator(); local 65 while (it.hasNext()) { 66 Object item = it.next(); 84 UnicodeSetIterator it = new UnicodeSetIterator(c); local 92 while(it.nextRange()) { 93 if (it.codepoint == UnicodeSetIterator.IS_STRING) { 94 item = it.string; 97 cpr.codepoint = it.codepoint; 98 cpr.codepointEnd = it.codepointEnd;
|
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/ |
CompoundCollisionShape.java | 110 for (Iterator<ChildCollisionShape> it = children.iterator(); it.hasNext();) { 111 ChildCollisionShape childCollisionShape = it.next(); 113 it.remove(); 152 for (Iterator<ChildCollisionShape> it = children.iterator(); it.hasNext();) { 153 ChildCollisionShape child = it.next();
|
/external/libvorbis/vq/ |
vqgen.h | 25 int it; member in struct:vqgen
|