HomeSort by relevance Sort by last modified time
    Searched defs:text (Results 76 - 100 of 4188) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/clang/test/Index/
complete-memfunc-cvquals.cpp 17 void text(Foo f, Foo *fp, const Foo &fc, const Foo *fcp, function
  /external/icu/android_icu4j/src/main/java/android/icu/text/
CharsetRecognizer.java 10 package android.icu.text;
43 * Test the match of this charset with the input text data
46 * @param det The CharsetDetector, which contains the input text
DictionaryMatcher.java 10 package android.icu.text;
12 import java.text.CharacterIterator;
20 * Find dictionary words that match the text.
22 * @param text A CharacterIterator representing the text. The iterator is
29 * @return The number of characters in text that were matched.
31 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths,
34 public int matches(CharacterIterator text, int maxLength, int[] lengths,
36 return matches(text, maxLength, lengths, count, limit, null);
LanguageBreakEngine.java 10 package android.icu.text;
12 import java.text.CharacterIterator;
29 * @param text The text to break over
40 int findBreaks(CharacterIterator text, int startPos, int endPos,
PluralRulesSerialProxy.java 10 package android.icu.text;
RBNFPostProcessor.java 11 package android.icu.text;
RawCollationKey.java 11 package android.icu.text;
RbnfLenientScanner.java 11 package android.icu.text;
40 * @param prefix The text we're hoping to see at the beginning of "str"
UForwardCharacterIterator.java 10 package android.icu.text;
14 * on text objects.
36 * a code unit and advance an internal position into the text object,
37 * similar to a <code>return text[position++]</code>.<br>
65 * Indicator that we have reached the ends of the UTF16 text.
72 * of the text.
74 * of the text.
85 * @return the next codepoint in text, or DONE if the index is at
86 * the limit of the text.
UnicodeFilter.java 10 package android.icu.text;
16 @SuppressWarnings("javadoc") // com.imb.icu.text.Transliterator is in another project
32 public int matches(Replaceable text,
38 contains(c = text.char32At(offset[0]))) {
42 if (offset[0] > limit && contains(text.char32At(offset[0]))) {
48 offset[0] -= UTF16.getCharCount(text.char32At(offset[0])) - 1;
UnicodeReplacer.java 14 package android.icu.text;
19 * text. The replacement is done via the Replaceable API so as to
26 * Replace characters in 'text' from 'start' to 'limit' with the
27 * output text of this object. Update the 'cursor' parameter to
29 * replacement text.
31 * @param text the text to be matched
32 * @param start inclusive start index of text to be replaced
33 * @param limit exclusive end index of text to be replaced;
39 * @return the number of 16-bit code units in the text replacin
    [all...]
  /external/icu/icu4c/source/i18n/
regextxt.h 38 UText *text; member in struct:URegexUTextUnescapeCharContext
41 #define U_REGEX_UTEXT_UNESCAPE_CONTEXT(text) { (text), -1 }
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
UFormat.java 9 package com.ibm.icu.text;
11 import java.text.Format;
14 * An abstract class that extends {@link java.text.Format} to provide
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
ArabicShapingException.java 10 package com.ibm.icu.text;
DictionaryMatcher.java 9 package com.ibm.icu.text;
11 import java.text.CharacterIterator;
19 * Find dictionary words that match the text.
21 * @param text A CharacterIterator representing the text. The iterator is
28 * @return The number of characters in text that were matched.
30 public abstract int matches(CharacterIterator text, int maxLength, int[] lengths,
33 public int matches(CharacterIterator text, int maxLength, int[] lengths,
35 return matches(text, maxLength, lengths, count, limit, null);
LanguageBreakEngine.java 9 package com.ibm.icu.text;
11 import java.text.CharacterIterator;
28 * @param text The text to break over
39 int findBreaks(CharacterIterator text, int startPos, int endPos,
RBNFPostProcessor.java 10 package com.ibm.icu.text;
RbnfLenientScannerProvider.java 10 package com.ibm.icu.text;
StringTransform.java 9 package com.ibm.icu.text;
12 * Provide a base class for Transforms that focuses just on the transformation of the text. APIs that take Transliterator, but only depend on the text transformation should use this interface in the API instead.
20 * Transform the text in some way, to be determined by the subclass.
21 * @param source text to be transformed (eg lowercased)
Transform.java 9 package com.ibm.icu.text;
12 * Provide an interface for Transforms that focuses just on the transformation of the text.
  /external/skia/gm/
encode.cpp 40 const char text[] = "Images should look identical."; variable
41 canvas->drawText(text, sizeof(text) - 1, 450.0f, 550.0f, SkPaint());
largeglyphblur.cpp 19 const char text[] = "Hamburgefons"; local
34 sk_tool_utils::add_to_text_blob(&builder, text, paint, 0, 0);
40 size_t len = strlen(text);
41 canvas->drawText(text, len, 10, 500, blurPaint);
42 canvas->drawText(text, len, 10, 500, paint);
  /external/syslinux/gpxe/src/include/gpxe/
errortab.h 16 const char *text; member in struct:errortab
  /frameworks/base/core/java/android/text/
ClipboardManager.java 17 package android.text;
20 * @deprecated Old text-only interface to the clipboard. See
26 * Returns the text on the clipboard. It will eventually be possible
27 * to store types other than text too, in which case this will return
28 * null if the type cannot be coerced to text.
33 * Sets the contents of the clipboard to the specified text.
35 public abstract void setText(CharSequence text);
38 * Returns true if the clipboard contains text; false otherwise.
ParcelableSpan.java 17 package android.text;
23 * A special kind of Parcelable for objects that will serve as text spans.

Completed in 404 milliseconds

1 2 34 5 6 7 8 91011>>