/external/fio/lib/ |
lfsr.c | 115 * b. Check if we have a spin value that produces a repeating subsequence.
|
/external/guava/guava/src/com/google/common/base/ |
CharMatcher.java | [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/lang/ |
CharSequences.java | 46 // s.trim() => UnicodeSet.trim(CharSequence s); return a subsequence starting with the first character not in the set to the last character not in the set.
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
BytesTrieBuilder.java | 40 public CharSequence subSequence(int start, int end) { return null; }
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/ |
CharSequences.java | 44 // s.trim() => UnicodeSet.trim(CharSequence s); return a subsequence starting with the first character not in the set to the last character not in the set.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
BytesTrieBuilder.java | 40 public CharSequence subSequence(int start, int end) { return null; }
|
/frameworks/av/media/libmedia/include/media/ |
MediaProfiles.h | 92 * Returns the singleton instance for subsequence queries or NULL if error.
|
/frameworks/base/core/tests/coretests/src/android/widget/ |
TextViewTest.java | 89 assertEquals(" Wo", newText.subSequence(1, 4));
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/ |
OsuProviderInfo.java | 258 * Creates a new byte buffer whose content is a shared subsequence of
|
/frameworks/opt/setupwizard/library/gingerbread/src/com/android/setupwizardlib/util/ |
LinkAccessibilityHelper.java | 250 return spannedText.subSequence(
|
/frameworks/support/compat/src/androidTest/java/androidx/core/text/ |
PrecomputedTextCompatTest.java | 210 final CharSequence s3 = s.subSequence(0, 3);
|
/frameworks/support/emoji/core/src/main/java/androidx/emoji/widget/ |
SpannableBuilder.java | 124 public CharSequence subSequence(int start, int end) {
|
/libcore/ojluni/src/main/java/java/nio/file/ |
Path.java | 49 * subpath} methods to access the path components or a subsequence of its name 191 * Returns a relative {@code Path} that is a subsequence of the name 195 * subsequence of name elements. The name that is <em>closest</em> to the root 207 * @return a new {@code Path} object that is a subsequence of the name [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
unordered_map.h | 565 * @brief Finds a subsequence matching given key. 567 * @return Pair of iterators that possibly points to the subsequence [all...] |
unordered_set.h | 539 * @brief Finds a subsequence matching given key. 541 * @return Pair of iterators that possibly points to the subsequence [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/parallel/ |
settings.h | 239 /// Maximal subsequence __length to switch to unbalanced __base case.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
unordered_map.h | 565 * @brief Finds a subsequence matching given key. 567 * @return Pair of iterators that possibly points to the subsequence [all...] |
unordered_set.h | 539 * @brief Finds a subsequence matching given key. 541 * @return Pair of iterators that possibly points to the subsequence [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/parallel/ |
settings.h | 239 /// Maximal subsequence __length to switch to unbalanced __base case.
|
/cts/tests/tests/text/src/android/text/cts/ |
SpannableStringBuilderTest.java | 282 CharSequence text = builder.subSequence(0, 2); 287 builder.subSequence(2, 0);
|
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/ |
Splitter.java | 309 * should be removed from the beginning/end of a subsequence 554 return toSplit.subSequence(start, end).toString();
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
Normalizer2.java | 228 return normalizeSecondAndAppend(sb, src.subSequence(spanLength, src.length())).toString(); 375 * the substring <code>s.subSequence(0, end)</code>
|
/external/llvm/lib/Support/ |
YAMLParser.cpp | 209 /// subsequence and the subsequence's length in code units (uint8_t). 309 /// @brief Decode a UTF-8 minimal well-formed code unit subsequence starting 313 /// code unit subsequence, then the Unicode scalar value is 0, and the length 385 /// subsequence that Func accepted. 401 /// @brief Consume a minimal well-formed code unit subsequence starting at 409 /// @brief Return true if the minimal well-formed code unit subsequence at 726 } else if (*i & 0x80) { // UTF-8 multiple code unit subsequence. [all...] |
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
ScriptEditor.java | 452 mmAfterChange = s.subSequence(start, start + count); 460 mmBeforeChange = s.subSequence(start, start + count);
|
/frameworks/base/core/java/android/text/ |
PrecomputedText.java | 610 public CharSequence subSequence(int start, int end) { 611 return PrecomputedText.create(mText.subSequence(start, end), mParams);
|