/system/extras/simpleperf/ |
cmd_dumprecord.cpp | 134 auto it = feature_name_map.find(feature); local 135 if (it != feature_name_map.end()) { 136 return it->second;
|
record.cpp | 42 auto it = record_type_names.find(record_type); local 43 if (it != record_type_names.end()) { 44 return it->second;
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
CommonTreeNodeStream.java | 44 /** If this tree (root) was created from a token stream, track it. */ 51 protected TreeIterator it; field in class:CommonTreeNodeStream 69 it = new TreeIterator(adaptor,root); 74 it.reset(); 84 Object t = it.next(); 86 if ( t == it.up ) { 88 if ( level==0 && hasNilRoot ) return it.next(); // don't give last UP; get EOF 90 else if ( t == it.down ) level++; 93 t = it.next(); // t is now DOWN, so get first real node next 95 t = it.next() [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CertificateFactory2Test.java | 175 Iterator it = certFactory.getCertPathEncodings(); local 177 assertTrue(it.hasNext()); 179 assertFalse(it.hasNext());
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
CMSSignedGenerator.java | 219 Iterator it = signerStore.getSigners().iterator(); local 221 while (it.hasNext()) 223 _signers.add(it.next());
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
NumberingSystem.java | 27 * system types, whether it be a simple alternate digit system such as 249 UResourceBundleIterator it = nsCurrent.getIterator(); local 250 while (it.hasNext()) { 251 temp = it.next(); 261 * a digit string to be valid, it must meet the following criteria: 269 UCharacterIterator it = UCharacterIterator.getInstance(str); local 271 it.setToStart(); 272 while ( (c = it.nextCodePoint()) != UCharacterIterator.DONE) {
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
IntlTestDateFormatAPI.java | 82 DateFormat it = DateFormat.getDateInstance(DateFormat.MEDIUM, Locale.ITALIAN); local 89 if( fr.equals(it) ) { 108 res2 = it.format(d, res2, pos2); 187 fr.setLenient(it.isLenient()); 188 if(fr.isLenient() != it.isLenient()) { 195 it.setCalendar(newCal); 196 if( ! de.getCalendar().equals(it.getCalendar())) { 203 it.setNumberFormat(newNf); 204 if( ! de.getNumberFormat().equals(it.getNumberFormat())) { 211 it.setTimeZone(newTz) [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/asset/ |
ImplHandler.java | 112 * gets a hint that it should suppress {@link AssetNotFoundException}s 198 Iterator<ImplThreadLocal> it = genericLocators.iterator(); local 199 while (it.hasNext()){ 200 ImplThreadLocal locator = it.next(); 203 it.remove();
|
/external/jmonkeyengine/engine/src/core/com/jme3/util/ |
IntMap.java | 201 IntMapIterator it = new IntMapIterator(); local 202 it.beginUse(); 203 return it;
|
/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...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/text/ |
AttributedStringTest.java | 35 AttributedCharacterIterator it = attrString.getIterator(); local 37 buf.append(it.first()); 39 while ((ch = it.next()) != CharacterIterator.DONE) 123 AttributedCharacterIterator it = as.getIterator(); local 124 assertEquals("non-null value limit", 2, it 130 it = as.getIterator(); 131 assertEquals("null value limit", 4, it
|
/libcore/luni/src/main/java/java/security/ |
Security.java | 39 * {@code Security} is the central class in the Java Security API. It manages 177 // It is not clear from spec.: 297 for (Iterator<Entry<String, String>> it = keys.iterator(); it.hasNext();) { 298 entry = it.next(); 336 Iterator<Provider> it = providers.iterator(); local 337 while (it.hasNext()) { 338 Provider p = it.next(); 340 it.remove();
|
/libcore/luni/src/main/java/java/util/ |
AbstractMap.java | 190 Iterator<Map.Entry<K, V>> it = entrySet().iterator(); local 192 while (it.hasNext()) { 193 if (key.equals(it.next().getKey())) { 198 while (it.hasNext()) { 199 if (it.next().getKey() == null) { 214 Iterator<Map.Entry<K, V>> it = entrySet().iterator(); local 216 while (it.hasNext()) { 217 if (value.equals(it.next().getValue())) { 222 while (it.hasNext()) { 223 if (it.next().getValue() == null) 282 Iterator<Map.Entry<K, V>> it = entrySet().iterator(); local 309 Iterator<Map.Entry<K, V>> it = entrySet().iterator(); local 392 Iterator<Map.Entry<K, V>> it = entrySet().iterator(); local 436 Iterator<Map.Entry<K, V>> it = entrySet().iterator(); local [all...] |
TreeSet.java | 91 Iterator<E> it = set.iterator(); local 92 while (it.hasNext()) { 93 add(it.next()); 136 * Removes all elements from this {@code TreeSet}, leaving it empty. 478 Iterator<E> it = backingMap.keySet().iterator(); local 479 while (it.hasNext()) { 480 stream.writeObject(it.next());
|
/libcore/luni/src/main/java/java/util/prefs/ |
FilePreferencesImpl.java | 123 Iterator<String> it = removed.iterator(); local 124 while (it.hasNext()) { 125 currentPrefs.remove(it.next()); 128 it = updated.iterator(); 129 while (it.hasNext()) { 130 Object key = it.next();
|
/libcore/luni/src/main/java/libcore/util/ |
ZoneInfoDB.java | 86 BufferIterator it = mappedFile.bigEndianIterator(); 87 it.skip(byteOffsets[index]); 89 return ZoneInfo.makeTimeZone(id, it); 132 BufferIterator it = mappedFile.bigEndianIterator(); local 135 it.readByteArray(tzdata_version, 0, tzdata_version.length); 142 int index_offset = it.readInt(); 143 int data_offset = it.readInt(); 144 int zonetab_offset = it.readInt(); 146 readIndex(it, index_offset, data_offset); 147 readZoneTab(it, zonetab_offset, (int) mappedFile.size() - zonetab_offset) [all...] |
/libcore/luni/src/test/java/libcore/java/util/ |
CollectionsTest.java | 108 Iterator<String> it = list.iterator(); local 109 it.next(); 112 it.next();
|
/libcore/luni/src/test/java/tests/security/cert/ |
CertificateFactory2Test.java | 166 Iterator<String> it = certFactory.getCertPathEncodings(); local 168 assertTrue(it.hasNext()); 170 assertFalse(it.hasNext());
|
/packages/services/Telephony/src/com/android/services/telephony/ |
ImsConferenceController.java | 160 // If this connection is a member of a conference hosted on another device, it is not 230 // If this conference is not being hosted on the current device, we cannot conference it 281 Iterator<TelephonyConnection> it = mTelephonyConnections.iterator(); local 282 while (it.hasNext()) { 283 TelephonyConnection connection = it.next(); 289 it.remove(); 302 * from the connection service (removing it from Telecom). The connection is put into a held 303 * state to ensure that telecom removes the connection without putting it into a disconnected
|
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/ |
CollectionUtilities.java | 57 for (Iterator it = collection.iterator(); it.hasNext();) { 60 result.append(it.next()); 100 * Get the size of an iterator (number of items in it). 132 for (Iterator it = itemsToRemove.iterator(); it.hasNext();) { 133 Object item = it.next(); 147 Iterator<T> it = c.iterator(); local 148 if (!it.hasNext()) return null; 149 return it.next() 162 Iterator<T> it = c.iterator(); local [all...] |
/art/compiler/dex/ |
global_value_numbering.cc | 158 auto it = array_location_map_.PutBefore(lb, key, location); local 159 array_location_reverse_map_.push_back(&*it);
|
/art/compiler/dex/quick/arm/ |
fp_arm.cc | 342 LIR* it = OpIT((default_result == -1) ? kCondGt : kCondMi, ""); local 345 OpEndIT(it); 347 it = OpIT(kCondEq, ""); 349 OpEndIT(it);
|
/art/compiler/optimizing/ |
stack_map_stream.cc | 75 // companion hash map of locations to indices). Use its index if it 76 // is already in the location catalog. If not, insert it (in the 78 auto it = location_catalog_entries_indices_.Find(location); local 79 if (it != location_catalog_entries_indices_.end()) { 81 dex_register_locations_.Add(it->second);
|
/art/compiler/utils/ |
dedupe_set.h | 35 // Add method. The data-structure is thread-safe through the use of internal locks, it also 91 auto it = keys_[shard_bin].find(hashed_key); local 92 if (it != keys_[shard_bin].end()) { 93 DCHECK(it->store_ptr != nullptr); 94 return it->store_ptr;
|
swap_space.cc | 111 auto it = free_by_start_.empty() local 114 if (it != free_by_size_.end()) { 115 old_chunk = *it->second; 116 RemoveChunk(&free_by_start_, &free_by_size_, it); 173 auto it = free_by_start_.lower_bound(chunk); local 174 if (it != free_by_start_.begin()) { 175 auto prev = it; 185 // "prev" is invalidated but "it" remains valid. 188 if (it != free_by_start_.end()) { 189 CHECK_LE(chunk.End(), it->Start()) [all...] |