HomeSort by relevance Sort by last modified time
    Searched full:character (Results 76 - 100 of 10114) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/icu/source/common/unicode/
symtable.h 40 * <p>The second kind of mapping is between character values and
47 * names. All symbolic names start with the SYMBOL_REF character.
48 * When a parser encounters this character, it calls parseReference()
58 * The character preceding a symbol reference name.
81 * Lookup the UnicodeMatcher associated with the given character, and
85 * character, or NULL if there is no mapping for ch.
94 * character at pos cannot start a name, or if pos is at or after
96 * isolated SYMBOL_REF character.
98 * @param pos on entry, the index of the first character to parse.
99 * This is the character following the SYMBOL_REF character. O
    [all...]
  /external/icu4c/common/unicode/
symtable.h 40 * <p>The second kind of mapping is between character values and
47 * names. All symbolic names start with the SYMBOL_REF character.
48 * When a parser encounters this character, it calls parseReference()
58 * The character preceding a symbol reference name.
81 * Lookup the UnicodeMatcher associated with the given character, and
85 * character, or NULL if there is no mapping for ch.
94 * character at pos cannot start a name, or if pos is at or after
96 * isolated SYMBOL_REF character.
98 * @param pos on entry, the index of the first character to parse.
99 * This is the character following the SYMBOL_REF character. O
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/text/
SurrogatePairAwareTextIterator.cpp 41 bool SurrogatePairAwareTextIterator::consumeSlowCase(UChar32& character, unsigned& clusterLength)
43 if (character <= 0x30FE) {
46 // Check above for character range to minimize performance impact.
48 character = normalized;
54 if (!U16_IS_SURROGATE(character))
58 if (!U16_IS_SURROGATE_LEAD(character))
62 // Make sure we have another character and it's a low surrogate.
70 character = U16_GET_SUPPLEMENTARY(character, low);
  /external/chromium_org/ui/events/keycodes/
keyboard_code_conversion_mac.h 19 // and corresponding unicode character. |flags| is the modifiers mask such
22 // The corresponding unicode character will be stored in |character|, and the
23 // corresponding unicode character ignoring the modifiers will be stored in
31 unichar* character,
  /external/chromium_org/third_party/re2/doc/
syntax.txt 5 . any character, possibly including newline (s=true)
6 [xyz] character class
7 [^xyz] negated character class
8 \d Perl character class
9 \D negated Perl character class
10 [:alpha:] ASCII character class
11 [:^alpha:] negated ASCII character class
12 \pN Unicode character class (one-letter name)
13 \p{Greek} Unicode character class
14 \PN negated Unicode character class (one-letter name
    [all...]
  /external/regex-re2/doc/
syntax.txt 5 . any character, possibly including newline (s=true)
6 [xyz] character class
7 [^xyz] negated character class
8 \d Perl character class
9 \D negated Perl character class
10 [:alpha:] ASCII character class
11 [:^alpha:] negated ASCII character class
12 \pN Unicode character class (one-letter name)
13 \p{Greek} Unicode character class
14 \PN negated Unicode character class (one-letter name
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractTableTest.java 35 Table<String, Integer, Character> table, Object... data) {
39 (String) data[i], (Integer) data[i+1], (Character) data[i+2]);
69 assertEquals((Character) 'a', table.put("foo", 1, 'd'));
70 assertEquals((Character) 'd', table.get("foo", 1));
71 assertEquals((Character) 'b', table.get("bar", 1));
73 assertEquals((Character) 'd', table.put("foo", 1, 'd'));
74 assertEquals((Character) 'd', table.get("foo", 1));
106 assertEquals((Character) 'b', table.put("bar", 1, null));
118 Table<String, Integer, Character> other = HashBasedTable.create();
123 assertEquals((Character) 'd', table.get("foo", 1))
    [all...]
NewCustomTableTest.java 35 @Override protected Table<String, Integer, Character> create(
37 Supplier<TreeMap<Integer, Character>> factory
38 = new Supplier<TreeMap<Integer, Character>>() {
40 public TreeMap<Integer, Character> get() {
44 Map<String, Map<Integer, Character>> backingMap
46 Table<String, Integer, Character> table
TablesTransformValuesTest.java 33 private static final Function<String, Character> FIRST_CHARACTER
34 = new Function<String, Character>() {
35 @Override public Character apply(String input) {
40 @Override protected Table<String, Integer, Character> create(
66 Table<String, Integer, Character> other = HashBasedTable.create();
74 assertEquals((Character) 'a', table.get("foo", 1));
75 assertEquals((Character) 'b', table.get("bar", 1));
76 assertEquals((Character) 'c', table.get("foo", 3));
  /external/proguard/src/proguard/
WordReader.java 135 Character.isWhitespace(currentLine.charAt(currentIndex)))
169 Character.isWhitespace(currentLine.charAt(currentIndex)))
183 // The next word is a single delimiting character.
188 // The next word is starting with a quote character.
192 // The next word is a quoted character string.
210 // The next word is a simple character string.
217 Character.isWhitespace(currentCharacter))
308 private boolean isDelimiter(char character)
310 return character == '@' ||
311 character == '{' |
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bug-regex16.c 21 if (s == NULL || strcmp (s, "Invalid collation character"))
27 if (s == NULL || strcmp (s, "Invalid collation character"))
33 if (s == NULL || strcmp (s, "Invalid character class name"))
  /external/clang/test/CXX/lex/lex.charset/
p2-cxx11.cpp 26 wchar_t wd800 = L'\ud800'; // expected-error {{invalid universal character}}
27 wchar_t wdfff = L'\udfff'; // expected-error {{invalid universal character}}
32 char32_t w110000 = U'\U00110000'; // expected-error {{invalid universal character}}
39 const wchar_t *p6 = L"foo \U00110000 bar"; // expected-error {{invalid universal character}}
40 const char *p7 = u8"foo \U0000d800 bar"; // expected-error {{invalid universal character}}
41 const char16_t *p8 = u"foo \U0000dfff bar"; // expected-error {{invalid universal character}}
  /libcore/luni/src/main/java/java/text/
AttributedCharacterIterator.java 54 * The attribute describing the language of a character. The value
165 * Returns the value stored in the attribute for the current character. If
169 * @return the value of the requested attribute for the current character or
175 * Returns a map of all attributes of the current character. If no
176 * attributes were defined for the current character then an empty map is
179 * @return a map of all attributes for the current character or an empty
185 * Returns the index of the last character in the run having the same
186 * attributes as the current character.
188 * @return the index of the last character of the current run.
193 * Returns the index of the last character in the run that has the sam
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
charmap.pl 8 # Each set bit represents a character property.
10 # RFC2253 character properties
11 my $RFC2253_ESC = 1; # Character escaped with \
12 my $ESC_CTRL = 2; # Escaped control character
15 my $PSTRING_CHAR = 0x10; # Valid PrintableString character
16 my $RFC2253_FIRST_ESC = 0x20; # Escaped with \ if first character
17 my $RFC2253_LAST_ESC = 0x40; # Escaped with \ if last character
68 * Mask of various character properties
  /external/chromium_org/tools/gyp/test/win/compiler-flags/
character-set.gyp 23 'sources': ['character-set-unicode.cc'],
32 'sources': ['character-set-mbcs.cc'],
  /external/clang/test/Lexer/
utf8-char-literal.cpp 6 int array1['ñ' != u'\xf1'? 1 : -1]; // expected-error {{character too large for enclosing character literal type}}
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-assamese/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-bengali/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-devanagari/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-gujarati/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-gurmukhi/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-kannada/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-malayalam/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-oriya/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language
  /external/harfbuzz_ng/test/shaping/texts/in-tree/shaper-indic/indic/script-sinhala/utrrs/
README 2 A system to compare a reference image of a text character, word or phrase with another image of the character, word or phrase that was rendered by a text rendering engine. Differences between the reference image and the rendered image may be recorded for subsequent analysis. Performance of a text rendering engine producing text according to typographical rules applicable to a natural language can be evaluated by one with no knowledge or ability to read the natural language

Completed in 876 milliseconds

1 2 34 5 6 7 8 91011>>