HomeSort by relevance Sort by last modified time
    Searched full:lead (Results 201 - 225 of 2191) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/support/samples/SupportAppNavigation/res/values/
strings.xml 40 <string name="intermediate_description">This activity is a parent for the example content viewer activity. Navigating up from the content viewer will lead here. Navigating up from here will lead back to the app navigation home activity. Note that if you reached this activity by navigating up from the example content viewer activity, you are back on the main app navigation example task. Press the button below to navigate to the content viewer activity.</string>
  /libcore/luni/src/main/java/java/util/concurrent/locks/
ReadWriteLock.java 30 * lock will lead to performance improvements over the use of a mutual
62 * short and infrequent. Reader preference is less common as it can lead to
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderItemView.java 90 * Returns true if the two folders lead to identical {@link FolderItemView} objects.
93 * @return true if the two folders would still lead to the same {@link FolderItemView}.
  /packages/services/Car/service/src/com/android/car/
CarInputService.java 62 * If listener is set, short key press will lead into calling the listener.
74 * If listener is set, short long press will lead into calling the listener.
  /prebuilts/go/darwin-x86/src/runtime/
sigqueue.go 23 // If several sigsends and signal_recv execute concurrently, it can lead to
24 // unnecessary rechecks of sig.mask, but it cannot lead to missed signals
  /prebuilts/go/linux-x86/src/runtime/
sigqueue.go 23 // If several sigsends and signal_recv execute concurrently, it can lead to
24 // unnecessary rechecks of sig.mask, but it cannot lead to missed signals
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/sepolgen/
util.py 101 # which may lead to UnicodeError if `text` contains non ascii signs
115 # which may lead to UnicodeError if `text` contains non ascii signs
  /external/icu/icu4c/source/common/
ucnv_u16.c 92 /* the last buffer ended with a lead surrogate, output the surrogate pair */
218 /* unmatched lead surrogate */
291 * and the preceding, unmatched lead surrogate was put into toUBytes[]
346 /* unmatched lead surrogate, handle here for consistent toUBytes[] */
356 * used for the lead unit's bytes
459 /* unmatched lead surrogate */
532 /* unmatched lead surrogate */
688 /* the last buffer ended with a lead surrogate, output the surrogate pair */
814 /* unmatched lead surrogate */
887 * and the preceding, unmatched lead surrogate was put into toUBytes[
    [all...]
ucnvscsu.c 1030 UChar lead, trail; local
1520 UChar lead, trail; local
    [all...]
utrie2.cpp 603 * Enumerate values for lead surrogate code points, not code units:
729 utrie2_enumForLeadSurrogate(const UTrie2 *trie, UChar32 lead,
732 if(!U16_IS_LEAD(lead)) {
735 lead=(lead-0xd7c0)<<10; /* start code point */
736 enumEitherTrie(trie, lead, lead+0x400, enumValue, enumRange, context);
  /external/bison/lib/
printf-parse.c 113 /* Overflow, would lead to out of memory. */ \
170 /* n too large, would lead to out of memory later. */
247 /* n too large, would lead to out of memory later. */
304 /* n too large, would lead to out of memory
590 /* Overflow, would lead to out of memory. */
  /external/icu/icu4c/source/i18n/
collationdatareader.cpp 315 // Mark each lead surrogate as "unsafe"
318 for(UChar lead = 0xd800; lead < 0xdc00; ++lead, c += 0x400) {
320 tailoring.unsafeBackwardSet->add(lead);
collationfastlatin.h 39 static const int32_t LATIN_MAX_UTF8_LEAD = 0xc5; // UTF-8 lead byte of LATIN_MAX
271 * Each of these values maps the variable top lead byte of a supported maxVariable group
275 * 6..0: regular primary lead byte
306 * Special reorder groups do not necessarily start on whole primary lead bytes any more.
308 * Version 1 stored the lead bytes of the highest root primaries for
collationsettings.cpp 152 // Write the lead byte permutation table.
153 // Set a 0 for each lead byte that has a range boundary in the middle.
178 // The lead byte permutation table alone suffices for reordering.
  /external/icu/icu4c/source/test/intltest/
testidn.cpp 386 UChar lead = U16_LEAD(mapping[i]); local
388 if(mappingData[index+i] != lead ||
390 pTestIDNA->errln( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X", lead, trail, mappingData[index+i], mappingData[index+i+1]);
415 // get data for lead surrogate
419 // get the real data from the folded lead/trail units
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
writer.h 279 unsigned lead = (s >> 10) + 0xD800; local
281 os_->Put(hexDigits[(lead >> 12) & 15]);
282 os_->Put(hexDigits[(lead >> 8) & 15]);
283 os_->Put(hexDigits[(lead >> 4) & 15]);
284 os_->Put(hexDigits[(lead ) & 15]);
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
CollationDataReader.java 351 // Mark each lead surrogate as "unsafe"
354 for(int lead = 0xd800; lead < 0xdc00; ++lead, c += 0x400) {
356 tailoring.unsafeBackwardSet.add(lead);
440 throw new ICUException("Data for compressible primary lead bytes but no mappings");
452 throw new ICUException("Missing data for compressible primary lead bytes");
  /external/icu/icu4c/source/common/unicode/
ucharstrie.h 381 // pos is already after the leadUnit, and the lead unit has bit 15 reset.
473 // starting from a position on a node lead unit.
486 // Types of nodes are distinguished by their node lead unit ranges.
496 // Aside from the value, which uses the node lead unit's high bits:
516 // Match-node lead unit values, after masking off intermediate-value bits:
529 // Match-node lead unit bits 14..6 for the optional intermediate value.
546 // Compact intermediate-value integer, lead unit shared with a branch or linear-match node.
utf.h 66 * (lead unit without trail unit or vice versa) and just return the unit itself
170 * Is this code point a lead surrogate (U+d800..U+dbff)?
195 * is it a lead surrogate?
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetUTF8.java 185 * either the lead byte in the code sequence is invalid (bytes == 0) or the
186 * lead byte combined with all the trail chars does not form a valid code
250 * - use only trail bytes after a lead byte (checked above)
251 * - use the right number of trail bytes for a given lead byte
322 * either the lead byte in the code sequence is invalid (bytes == 0) or the
323 * lead byte combined with all the trail chars does not form a valid code
665 * Is this code unit (byte) a UTF-8 lead byte?
CharsetASCII.java 321 * if the character is a lead surrogate, we need to call encodeTrail to attempt to match
329 private final CoderResult encodeTrail(CharBuffer source, char lead, boolean flush) {
334 CoderResult cr = handleSurrogates(source, lead);
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
CollationDataReader.java 350 // Mark each lead surrogate as "unsafe"
353 for(int lead = 0xd800; lead < 0xdc00; ++lead, c += 0x400) {
355 tailoring.unsafeBackwardSet.add(lead);
439 throw new ICUException("Data for compressible primary lead bytes but no mappings");
451 throw new ICUException("Missing data for compressible primary lead bytes");
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CharsTrie.java 515 // lead unit with a match node which we have to evaluate
517 // Instead, keep pos_ on the node lead unit itself.
620 // pos is already after the leadUnit, and the lead unit has bit 15 reset.
834 // starting from a position on a node lead unit.
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CharsTrie.java 540 // lead unit with a match node which we have to evaluate
542 // Instead, keep pos_ on the node lead unit itself.
646 // pos is already after the leadUnit, and the lead unit has bit 15 reset.
860 // starting from a position on a node lead unit.
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/
SensorIntegrationTests.java 63 * of several clients can lead to the failing state.
124 * of several clients can lead to the failing state.
222 * of several clients can lead to the failing state.

Completed in 821 milliseconds

1 2 3 4 5 6 7 891011>>