OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CharSourceWrapper
(Results
1 - 4
of
4
) sorted by null
/external/cldr/tools/java/org/unicode/cldr/util/
CharUtilities.java
11
public static class
CharSourceWrapper
<T extends CharSequence> implements CharSource {
14
public
CharSourceWrapper
(T source) {
31
return new
CharSourceWrapper
<CharSequence>(source.subSequence(start, end));
35
return new
CharSourceWrapper
<CharSequence>(source.subSequence(start, source.length()));
TestStateDictionaryBuilder.java
18
import org.unicode.cldr.util.CharUtilities.
CharSourceWrapper
;
105
tryFind(string, new
CharSourceWrapper
<CharSequence>(string), stateDictionary, filter);
201
if (source instanceof
CharSourceWrapper
) {
202
CharSourceWrapper
new_name = (
CharSourceWrapper
) source;
286
crossCheck(new
CharSourceWrapper
<CharSequence>(myText));
308
crossCheck(new
CharSourceWrapper
<CharSequence>(myText));
Dictionary.java
17
import org.unicode.cldr.util.CharUtilities.
CharSourceWrapper
;
169
this.text = new CharUtilities.
CharSourceWrapper
<CharSequence>(text);
459
public static class DictionaryCharList<T extends CharSequence> extends
CharSourceWrapper
<T> {
LenientDateParser.java
111
parse(new CharUtilities.
CharSourceWrapper
<CharSequence>(text), parsePosition);
[
all
...]
Completed in 676 milliseconds