/libcore/luni/src/main/java/javax/xml/datatype/ |
FactoryFinder.java | 35 * <p>This class is duplicated for each JAXP subpackage so keep it in 36 * sync. It is package private for secure class loading.</p> 117 // class. If there is a Context ClassLoader then use it. 327 URL it; local 330 it = loader.getResource(classnameAsResource); 332 it = ClassLoader.getSystemResource(classnameAsResource); 335 if (it != null) { 336 return it.toString();
|
/libcore/luni/src/main/java/javax/xml/validation/ |
SchemaFactoryFinder.java | 249 * <p>Creates an instance of the specified and returns it.</p> 255 * if it fails. Error messages will be printed by this method. 265 if(debug) debugPrintln("loaded it from "+which(clazz)); 303 // wrap it into an Iterator. 323 // encoding. Theoretically, we should simply let it fail in 324 // that case, since the JVM is obviously broken if it 401 * @return the source location of the resource, or null if it wasn't found 408 URL it = loader.getResource(classnameAsResource); local 409 return it != null ? it.toString() : null [all...] |
/libcore/luni/src/main/java/javax/xml/xpath/ |
XPathFactoryFinder.java | 224 * <p>Creates an instance of the specified and returns it.</p> 230 * if it fails. Error messages will be printed by this method. 240 if(debug) debugPrintln("loaded it from "+which(clazz)); 361 * @return the source location of the resource, or null if it wasn't found 367 URL it = loader.getResource(classnameAsResource); local 368 return it != null ? it.toString() : null;
|
/libcore/luni/src/test/java/libcore/java/util/jar/ |
StrictJarFileTest.java | 60 Iterator<ZipEntry> it = jarFile.iterator(); local 62 while (it.hasNext()) { 63 final ZipEntry ze = it.next();
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/basic_cstring/ |
basic_cstring.hpp | 92 self_type& trim_right( iterator it ); 93 self_type& trim_left( iterator it ); 289 basic_cstring<CharT>::trim_left( iterator it ) 291 m_begin = it; 307 iterator it; local 308 for( it = begin(); it != end(); ++it ) { 309 if( traits_type::find( exclusions.begin(), exclusions.size(), *it ) == reinterpret_cast<pointer>(0) ) 313 return trim_left( it ); 351 iterator it; local [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
map_test.cpp | 449 typedef map<IncompleteClass, IncompleteClass>::iterator it; typedef in class:IncompleteClass
|
set_test.cpp | 242 set<int>::iterator it = tree.begin(); local 243 int const& int_ref = *it++; 246 CPPUNIT_ASSERT( it == tree.end() ); 247 CPPUNIT_ASSERT( it != tree.begin() ); 502 typedef set<IncompleteClass>::iterator it; typedef in class:IncompleteClass
|
vector_test.cpp | 86 vector<vector<int> >::iterator it(vect.begin()), end(vect.end()); 87 for (; it != end; ++it) { 88 CPPUNIT_ASSERT( (*it).empty() ); 89 CPPUNIT_ASSERT( (*it).size() == 0 ); 90 CPPUNIT_ASSERT( (*it).capacity() == 0 ); 91 CPPUNIT_ASSERT( (*it).begin() == (*it).end() ); 496 typedef vector<IncompleteClass>::iterator it; typedef in class:IncompleteClass 525 * optimization. Some compilers (VC6) do not implement it [all...] |
/ndk/tests/device/test-stlport/unit/ |
map_test.cpp | 449 typedef map<IncompleteClass, IncompleteClass>::iterator it; typedef in class:IncompleteClass
|
set_test.cpp | 242 set<int>::iterator it = tree.begin(); local 243 int const& int_ref = *it++; 246 CPPUNIT_ASSERT( it == tree.end() ); 247 CPPUNIT_ASSERT( it != tree.begin() ); 502 typedef set<IncompleteClass>::iterator it; typedef in class:IncompleteClass
|
vector_test.cpp | 86 vector<vector<int> >::iterator it(vect.begin()), end(vect.end()); 87 for (; it != end; ++it) { 88 CPPUNIT_ASSERT( (*it).empty() ); 89 CPPUNIT_ASSERT( (*it).size() == 0 ); 90 CPPUNIT_ASSERT( (*it).capacity() == 0 ); 91 CPPUNIT_ASSERT( (*it).begin() == (*it).end() ); 496 typedef vector<IncompleteClass>::iterator it; typedef in class:IncompleteClass 525 * optimization. Some compilers (VC6) do not implement it [all...] |
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/ |
HandleMap.java | 164 for(Iterator <Entry> it = mEntries.iterator(); it.hasNext();) { 165 Entry entry = it.next(); 170 it.remove();
|
/packages/apps/Nfc/nci/jni/ |
RouteDataSet.cpp | 144 Database::iterator it; local 146 for (it = mDefaultRouteDatabase.begin(); it != mDefaultRouteDatabase.end(); it++) 147 delete (*it); 150 for (it = mSecElemRouteDatabase.begin(); it != mSecElemRouteDatabase.end(); it++) 151 delete (*it);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/ |
Builder.java | 68 ChildNodeIterator it = new ChildNodeIterator(node); local 69 Node n = it.nextNode(); 78 Node n2 = it.nextNode(); 99 ChildNodeIterator it = new ChildNodeIterator(node); local 100 while (it.hasNext()) { 101 Node n = it.nextNode(); 111 ChildNodeIterator it = new ChildNodeIterator(node); local 112 Node n = it.nextNode(); 128 ChildNodeIterator it = new ChildNodeIterator(node); local 129 Node n = it.nextNode() 149 ChildNodeIterator it = new ChildNodeIterator(node); local 169 ChildNodeIterator it = new ChildNodeIterator(node); local 184 ChildNodeIterator it = new ChildNodeIterator(node); local [all...] |
/packages/inputmethods/LatinIME/native/jni/src/dictionary/header/ |
header_read_write_utils.cpp | 97 AttributeMap::const_iterator it = headerAttributes->find(keyVector); local 98 if (it == headerAttributes->end()) { 101 return it->second.data(); 141 for (AttributeMap::const_iterator it = headerAttributes->begin(); 142 it != headerAttributes->end(); ++it) { 143 if (it->first.empty() || it->second.empty()) { 147 if (!buffer->writeCodePointsAndAdvancePosition(&(it->first.at(0)), it->first.size() 193 AttributeMap::const_iterator it = headerAttributes->find(keyVector); local 220 AttributeMap::const_iterator it = headerAttributes->find(*key); local [all...] |
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/backward/v402/ |
ver4_patricia_trie_node_writer.cpp | 273 PtNodeWriter::PtNodePositionRelocationMap::const_iterator it = local 275 if (it != dictPositionRelocationMap->mPtNodePositionRelocationMap.end()) { 276 parentPos = it->second; 290 PtNodeWriter::PtNodeArrayPositionRelocationMap::const_iterator it = local 292 if (it != dictPositionRelocationMap->mPtNodeArrayPositionRelocationMap.end()) { 293 childrenPos = it->second;
|
/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/ |
language_model_dict_content.cpp | 278 const auto it = terminalIdMap->find(entry.key()); local 279 if (it == terminalIdMap->end() || it->second == Ver4DictConstants::NOT_A_TERMINAL_ID) { 283 if (!mTrieMap.put(it->second, entry.value(), nextLevelBitmapEntryIndex)) { 288 mTrieMap.getNextLevelBitmapEntryIndex(it->second, nextLevelBitmapEntryIndex))) {
|
/packages/services/Telephony/src/org/apache/james/mime4j/field/address/ |
Builder.java | 68 ChildNodeIterator it = new ChildNodeIterator(node); local 69 Node n = it.nextNode(); 78 Node n2 = it.nextNode(); 99 ChildNodeIterator it = new ChildNodeIterator(node); local 100 while (it.hasNext()) { 101 Node n = it.nextNode(); 111 ChildNodeIterator it = new ChildNodeIterator(node); local 112 Node n = it.nextNode(); 128 ChildNodeIterator it = new ChildNodeIterator(node); local 129 Node n = it.nextNode() 149 ChildNodeIterator it = new ChildNodeIterator(node); local 169 ChildNodeIterator it = new ChildNodeIterator(node); local 184 ChildNodeIterator it = new ChildNodeIterator(node); local [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/ |
util.py | 38 import threading # we want threading to install it's namespace 192 Run the callback unless it has already been called or cancelled 303 # it's None, any call to ``active_children()`` will throw an
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/ |
util.py | 38 import threading # we want threading to install it's namespace 192 Run the callback unless it has already been called or cancelled 303 # it's None, any call to ``active_children()`` will throw an
|
/system/core/logd/ |
LogStatistics.h | 51 for(iterator it = map.begin(); it != map.end(); ++it) { 52 const TEntry &entry = it->second; 80 iterator it = map.find(key); local 81 if (it == map.end()) { 82 it = map.insert(std::make_pair(key, TEntry(e))).first; 84 it->second.add(e); 86 return it; 90 iterator it = map.find(key) local 100 iterator it = map.find(key); local 107 iterator it = map.find(key); local [all...] |
/system/extras/simpleperf/ |
environment.cpp | 144 // There is no /proc/modules on Android devices, so we don't print error if failed to open it. 194 // TODO: There is no /proc/modules or /lib/modules on Android, find methods work on it. 201 auto it = module_file_map.find(module.name); local 202 if (it != module_file_map.end()) { 203 module.filepath = it->second;
|
/system/netd/server/ |
TetherController.cpp | 85 InterfaceCollection::iterator it; local 87 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) { 88 free(*it); 143 * the daemon if it exits prematurely 285 InterfaceCollection::iterator it; local 288 for (it = mInterfaces->begin(); it != mInterfaces->end(); ++it) { 319 InterfaceCollection::iterator it; local 334 InterfaceCollection::iterator it; local [all...] |
/frameworks/data-binding/plugins-repo/com/android/databinding/localizemaven/1.0/ |
localizemaven-1.0.jar | |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
RuleBasedNumberFormat.java | 49 * Each rule has a string of output text and a value or range of values it is applicable to. 72 * isolate the number's ones digit, format it using this same set of rules, and place the 83 * the hundreds digit (and any digits to its left), formats it using this same rule set, and 85 * >> has changed: it now refers to both the tens and the ones digits. The meaning of 161 * >> token here means "find the number's absolute value, format it with these 273 * on whether it is used to format a number's integral part (or the whole number) or a 274 * number's fractional part. Using a rule set to format a rule's fractional part makes it a 292 * rule that precedes it in the rule list. Otherwise, use the rule itself.</li> 306 * the rule following the matching rule has the same base value, use it if the numerator of 346 * <td>Isolate the number's fractional part and format it.</td 792 UResourceBundleIterator it = rules.getIterator(); local [all...] |