HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 1026 - 1050 of 1441) sorted by null

<<41424344454647484950>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UnicodeSet.java 55 * a <code>UnicodeSet</code> object. It conforms to Java 2's
147 * right character it is a syntax error. If a '-' occurs as the first
148 * character after the opening '[' or '[^', or if it occurs as the
149 * last character before the closing ']', then it is taken as a
276 * That method is, however, not particularly efficient, since it "boxes" each code point into a String.
329 * most economical pattern. It is the pattern supplied to
394 * In each pair (..., si, ei, ...) it must be true that si <= ei
395 * Between adjacent pairs (...ei, sj...), it must be true that ei+1 < sj
403 list = new int[pairs.length + 1]; // don't allocate extra space, because it is likely that this is a fixed set.
690 * calling this function is passed to a UnicodeSet constructor, it
1042 Iterator<String> it = strings.iterator(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
BasicTest.java 111 // it should go all the way down to conjoining Jamo characters.
133 // And finally, make sure you can do it in reverse too
154 // And finally, make sure you can do it in reverse too
275 // The following method works too, but it is somewhat
276 // incestuous. It uses UInfo, which is the same database that
278 // UInfo, the following test won't show it. All it will show
732 // Run through the iterator forwards and stick it into a StringBuffer
738 // Now do it backwards
759 // Run through the iterator forwards and stick it into
2019 UnicodeSetIterator it = new UnicodeSetIterator(set); local
2456 UnicodeSetIterator it = new UnicodeSetIterator(set); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
ULocaleTest.java 55 // so we can't test it yet. If it becomes public,
90 // Currency getLocale API is obsolete in 3.2. Since it now returns ULocale.ROOT,
415 * FAKE. In other words, it should be something like
430 * FAKE. In other words, it should be something like
555 { "", "", "", "", "NY", "", "", "", "" }, /* TODO: currently there is no translation for NY in Greek fix this test when we have it */
1222 Iterator it = loc.getKeywords(); local
    [all...]
  /external/javassist/src/main/javassist/
CtClassType.java 223 * It releases the class files that have not been recently used
411 // if it is an immediate nested class
1504 CodeIterator it = codeAttr.iterator(); local
1565 CodeIterator it = codeAttr.iterator(); local
    [all...]
  /external/lldb/tools/debugserver/source/
RNBRemote.cpp 106 // in RNBRemote::CommDataReceived so it doesn't reject the new packet
141 t.push_back (Packet (vattachwait, &RNBRemote::HandlePacket_v, NULL, "vAttachWait", "Wait for a process to start up then attach to it"));
142 t.push_back (Packet (vattachorwait, &RNBRemote::HandlePacket_v, NULL, "vAttachOrWait", "Attach to the process or if it doesn't exist, wait for the process to start up then attach to it"));
146 // The X packet doesn't currently work. If/when it does, remove the line above and uncomment out the line below
407 for (std::string::iterator it = return_packet.begin ();
408 it != return_packet.end ();
409 ++it)
411 computed_checksum += *it;
498 Packet::iterator it; local
2778 std::vector<uint8_t>::const_iterator it; local
    [all...]
  /external/v8/src/arm64/
assembler-arm64.cc 49 // csp will always be aligned if it is enabled by probing at runtime.
152 // Add x18 to the safepoint list, as although it's not in kJSCallerSaved, it
174 // specially coded on ARM64 means that it is a movz/movk sequence. We don't
392 // Emit the constant pool. It is preceded by an optional branch if
407 // be preserved on compaction. Currently it works as allocation seems to be
655 // It is also the last instruction in the chain, so it is the only branch
684 // Some other work could be attempted to fix up the chain, but it would be
770 // The label is bound, so it does not need to be updated. Referrin
826 unresolved_info_it it; local
    [all...]
  /frameworks/av/media/libstagefright/
MPEG4Writer.cpp 123 typename List<TYPE *>::iterator it = mTableEntryList.begin(); local
124 delete[] (*it);
125 mTableEntryList.erase(it);
136 typename List<TYPE *>::iterator it = mTableEntryList.begin(); local
138 while (it != mTableEntryList.end() && iterations > 0) {
139 ++it;
142 CHECK(it != mTableEntryList.end());
145 (*it)[(pos % (mElementCapacity * mEntryCapacity))] = value;
157 typename List<TYPE *>::iterator it = mTableEntryList.begin(); local
159 while (it != mTableEntryList.end() && iterations > 0)
403 List<Track *>::iterator it = mTracks.begin(); local
1658 List<MediaBuffer *>::iterator it = chunk->mSamples.begin(); local
    [all...]
OMXCodec.cpp 124 for (std::list<omx_message>::const_iterator it = messages.cbegin();
125 it != messages.cend(); ++it) {
126 codec->on_message(*it);
461 // violates it...
614 // and have the decoder figure it all out.
816 * need to be (w*h*3)/2. It just needs to
2010 List<int64_t>::iterator it = mDecodingTimeList.begin(); local
    [all...]
  /frameworks/base/core/java/android/net/
ConnectivityManager.java 56 * Class that answers queries about the state of network connectivity. It also
79 * sent as an extra; it should be consulted to see what kind of
154 * Retrieve it with {@link android.content.Intent#getBooleanExtra(String,boolean)}.
159 * there is another network that it may be possible to connect to. Retrieve with
166 * Retrieve it with {@link android.content.Intent#getBooleanExtra(String,boolean)}.
171 * to a network failed. The string has no particular structure. It is
173 * it with {@link android.content.Intent#getStringExtra(String)}.
181 * it with {@link android.content.Intent#getStringExtra(String)}.
187 * 100 indicates a great connection. Retrieve it with
197 * signing in to captive portal. Retrieve it wit
1292 ITelephony it = ITelephony.Stub.asInterface(b); local
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
WifiScanningServiceImpl.java 629 Iterator<Map.Entry<Integer, ScanSettings>> it = mScanSettings.entrySet().iterator(); local
630 for (; it.hasNext(); ) {
631 Map.Entry<Integer, ScanSettings> entry = it.next();
668 Iterator<Integer> it = mScanSettings.keySet().iterator(); local
669 while (it.hasNext()) {
670 int handler = it.next();
744 Iterator<Integer> it = mScanSettings.keySet().iterator(); local
745 while (it.hasNext()) {
746 int handler = it.next();
756 if (DBG) localLog("sending it to " + handler)
793 Iterator<Map.Entry<Integer, WifiScanner.HotlistSettings>> it = local
848 Iterator<Integer> it = mSignificantWifiHandlers.iterator(); local
859 Iterator<Integer> it = mSignificantWifiHandlers.iterator(); local
1161 Iterator it = ci.getScans(); local
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java 1864 Iterator it = extKeyUsage.iterator(); local
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-clean-plugin/2.5/
maven-clean-plugin-2.5.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/1.4.0-alpha1/
gradle-core-1.4.0-alpha1.jar 
  /prebuilts/tools/common/m2/repository/com/cenqua/clover/clover/3.1.12/
clover-3.1.12.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.sat4j.pb_2.3.5.v201308161310.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.sat4j.pb_2.3.5.v20130525.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/1.3.0-beta2/
gradle-core-1.3.0-beta2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/1.3.0-beta3/
gradle-core-1.3.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/1.3.0-beta4/
gradle-core-1.3.0-beta4.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/gradle-core/1.3.1/
gradle-core-1.3.1.jar 
  /prebuilts/tools/common/m2/repository/org/freemarker/freemarker/2.3.20/
freemarker-2.3.20.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-utils/2.0.5/
plexus-utils-2.0.5.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.help.base_3.5.2.v201011171123.jar 
  /packages/apps/Messaging/build/gcheckstyle/
google-style-checker_deploy.jar 
  /art/runtime/gc/
heap.cc 307 // Reserve the non moving mem map before the other two since it needs to be at a specific
424 // Remove the main backup space since it slows down the GC to have unused extra spaces.
462 // It's still too early to take a lock because there are no threads yet, but we can create locks
463 // now. We don't create it earlier to make it clear that you can't use locks during heap
576 // If we are the zygote and don't yet have a zygote space, it means that the zygote fork will
623 // The allocation stack may have non movable objects in it. We need to flush it since the GC
932 auto it = std::find(continuous_spaces_.begin(), continuous_spaces_.end(), continuous_space); local
940 auto it = std::find(discontinuous_spaces_.begin(), discontinuous_spaces_.end(), local
946 auto it = std::find(alloc_spaces_.begin(), alloc_spaces_.end(), space->AsAllocSpace()); local
2138 auto it = bins_.lower_bound(alloc_size); local
2998 auto it = mod_union_tables_.find(space); local
3006 auto it = remembered_sets_.find(space); local
3674 auto it = remembered_sets_.find(space); local
    [all...]

Completed in 1191 milliseconds

<<41424344454647484950>>