HomeSort by relevance Sort by last modified time
    Searched full:character (Results 126 - 150 of 12872) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/clang/test/Preprocessor/
ucn-allowed-chars.c 29 #define A \u0000 // expected-error{{control character}}
30 #define B \u001F // expected-error{{control character}}
31 #define C \u007F // expected-error{{control character}}
32 #define D \u009F // expected-error{{control character}}
43 // expected-warning@7 {{using this character in an identifier is incompatible with C++98}}
44 // expected-warning@8 {{using this character in an identifier is incompatible with C++98}}
47 // expected-error@33 {{invalid universal character}}
55 // expected-warning@33 {{universal character name refers to a surrogate character}}
61 // expected-warning@7 {{using this character in an identifier is incompatible with C99}
    [all...]
  /external/libxml2/os400/iconv/
README.iconv 4 - Supported character sets names are all of the form IBMCCSIDccsid..., where
5 ccsid is a decimal 5-digit integer identifying an IBM coded character set.
6 In addition, character set names have to be given in EBCDIC.
7 Standard character set names like "UTF-8" are NOT recognized.
18 - All IANA character set names are recognized in a coding- and case-insensitive
20 http://www.iana.org/assignments/character-sets/character-sets.xhtml
30 - Character code names can be given in any code.
32 Character set names to CCSID conversion.
33 - http://www.iana.org/assignments/character-sets/character-sets.xhtml provide
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractImmutableTableTest.java 31 abstract Iterable<ImmutableTable<Character, Integer, String>>
36 for (ImmutableTable<Character, Integer, String> testInstance : getTestInstances()) {
48 for (ImmutableTable<Character, Integer, String> testInstance : getTestInstances()) {
60 for (ImmutableTable<Character, Integer, String> testInstance : getTestInstances()) {
72 for (ImmutableTable<Character, Integer, String> testInstance : getTestInstances()) {
83 for (ImmutableTable<Character, Integer, String> testInstance : getTestInstances()) {
89 for (ImmutableTable<Character, Integer, String> testInstance : getTestInstances()) {
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
  /packages/inputmethods/LatinIME/java/res/xml/
rowkeys_thai4.xml 30 <!-- U+0E09: "?" THAI CHARACTER CHO CHING -->
32 <!-- U+0E2E: "?" THAI CHARACTER HO NOKHUK -->
35 U+0E3A: " ?" THAI CHARACTER PHINTHU -->
36 <!-- Note: The space character is needed as a preceding letter to draw some Thai
42 U+0E4C: " ?" THAI CHARACTER THANTHAKHAT -->
43 <!-- Note: The space character is needed as a preceding letter to draw some Thai
51 <!-- U+0E12: "?" THAI CHARACTER THO PHUTHAO -->
53 <!-- U+0E2C: "?" THAI CHARACTER LO CHULA -->
55 <!-- U+0E26: "?" THAI CHARACTER LU -->
59 <!-- U+0E1C: "?" THAI CHARACTER PHO PHUNG --
    [all...]
  /external/owasp/sanitizer/lib/htmlparser-1.3/doc/
tokenization.txt 16 states consume a single character, which may have various side-effects,
18 same character, or switches it to a new state (to consume the next
19 character), or repeats the same state (to consume the next character).
32 following tokens: DOCTYPE, start tag, end tag, comment, character,
42 Comment and character tokens have data.
78 Consume the next input character:
83 character reference data state.
95 In any case, emit the input character as a character token. Sta
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
CharMatcher.java 33 * character" is used to mean "any character {@code c} for which {@code
45 public abstract class CharMatcher implements Predicate<Character> {
58 * Determines whether a character is whitespace according to the latest
73 * Determines whether a character is a breaking whitespace (that is,
86 * Determines whether a character is ASCII, meaning that its code point is
92 * Determines whether a character is a digit according to
110 * Determines whether a character is whitespace according to {@link
111 * Character#isWhitespace(char) Java's definition}; it is usually preferable
127 * Determines whether a character is a digit according to {@lin
    [all...]
  /external/clang/include/clang/Basic/
CharInfo.h 42 /// Returns true if this is an ASCII character.
47 /// Returns true if this is a valid first character of a C identifier,
57 /// Returns true if this is a body character of a C identifier,
67 /// Returns true if this character is horizontal ASCII whitespace:
76 /// Returns true if this character is vertical ASCII whitespace: '\\n', '\\r'.
84 /// Return true if this character is horizontal or vertical ASCII whitespace:
93 /// Return true if this character is an ASCII digit: [0-9]
99 /// Return true if this character is a lowercase ASCII letter: [a-z]
105 /// Return true if this character is an uppercase ASCII letter: [A-Z]
111 /// Return true if this character is an ASCII letter: [a-zA-Z
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
CharMatcher.java 34 * <p>Throughout the documentation of this class, the phrase "matching character" is used to mean
35 * "any character {@code c} for which {@code this.matches(c)} returns {@code true}".
55 public abstract class CharMatcher implements Predicate<Character> {
59 * Determines whether a character is a breaking whitespace (that is, a whitespace which can be
96 * Determines whether a character is ASCII, meaning that its code point is less than 128.
144 * Determines whether a character is a digit according to
152 * Determines whether a character is a digit according to {@linkplain Character#isDigit(char)
158 return Character.isDigit(c);
163 * Determines whether a character is a letter according to {@linkplain Character#isLetter(char
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
SymbolTable.java 26 * <p>The second kind of mapping is between character values and
33 * names. All symbolic names start with the SYMBOL_REF character.
34 * When a parser encounters this character, it calls parseReference()
41 * The character preceding a symbol reference name.
56 * Lookup the UnicodeMatcher associated with the given character, and
60 * character, or null if there is no mapping for ch.
68 * character at pos cannot start a name, or if pos is at or after
70 * SYMBOL_REF character.
72 * @param pos on entry, the index of the first character to parse.
73 * This is the character following the SYMBOL_REF character. O
    [all...]
  /external/icu/icu4c/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/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
SymbolTable.java 25 * <p>The second kind of mapping is between character values and
32 * names. All symbolic names start with the SYMBOL_REF character.
33 * When a parser encounters this character, it calls parseReference()
42 * The character preceding a symbol reference name.
59 * Lookup the UnicodeMatcher associated with the given character, and
63 * character, or null if there is no mapping for ch.
72 * character at pos cannot start a name, or if pos is at or after
74 * SYMBOL_REF character.
76 * @param pos on entry, the index of the first character to parse.
77 * This is the character following the SYMBOL_REF character. O
    [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/data/tokenization/
test4.test 47 {"description":"Text after bogus character reference",
49 "output":["ParseError",["StartTag","z",{"z":"&xlink_xmlns;"}],["Character","bar"],["StartTag","z",{}]]},
51 {"description":"Text after hex character reference",
53 "output":[["StartTag","z",{"z":" foo"}],["Character","bar"],["StartTag","z",{}]]},
109 "output":["ParseError", "ParseError", ["Character", "\uFFFD"]]},
113 "output":["ParseError", "ParseError", ["Character", "\uFFFD"]]},
117 "output":[["Character", "A"]]},
121 "output":[["Character", "A"]]},
125 "output":["ParseError", ["Character", "&#x "], "ParseError", ["Character", "&#X "]]}
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
LocaleExtensions.java 27 private SortedMap<Character, Extension> _map;
30 private static final SortedMap<Character, Extension> EMPTY_MAP =
31 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
44 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
45 CALENDAR_JAPANESE._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.CA_JAPANESE);
49 NUMBER_THAI._map = new TreeMap<Character, Extension>();
50 NUMBER_THAI._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.NU_THAI);
72 _map = new TreeMap<Character, Extension>();
87 _map.put(Character.valueOf(key), e);
112 _map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), ule)
    [all...]
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 23 private SortedMap<Character, Extension> _map;
26 private static final SortedMap<Character, Extension> EMPTY_MAP =
27 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
40 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
41 CALENDAR_JAPANESE._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.CA_JAPANESE);
45 NUMBER_THAI._map = new TreeMap<Character, Extension>();
46 NUMBER_THAI._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.NU_THAI);
68 _map = new TreeMap<Character, Extension>();
83 _map.put(Character.valueOf(key), e);
108 _map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), ule)
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
LocaleExtensions.java 23 private SortedMap<Character, Extension> _map;
26 private static final SortedMap<Character, Extension> EMPTY_MAP =
27 Collections.unmodifiableSortedMap(new TreeMap<Character, Extension>());
40 CALENDAR_JAPANESE._map = new TreeMap<Character, Extension>();
41 CALENDAR_JAPANESE._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.CA_JAPANESE);
45 NUMBER_THAI._map = new TreeMap<Character, Extension>();
46 NUMBER_THAI._map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), UnicodeLocaleExtension.NU_THAI);
68 _map = new TreeMap<Character, Extension>();
83 _map.put(Character.valueOf(key), e);
108 _map.put(Character.valueOf(UnicodeLocaleExtension.SINGLETON), ule)
    [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/icu/android_icu4j/src/main/java/android/icu/impl/coll/
UTF16CollationIterator.java 16 * UTF-16 collation element and character iterator.
77 if(Character.isHighSurrogate(c) && pos != limit &&
78 Character.isLowSurrogate(trail = seq.charAt(pos))) {
80 return Character.toCodePoint(c, trail);
93 if(Character.isLowSurrogate(c) && pos != start &&
94 Character.isHighSurrogate(lead = seq.charAt(pos - 1))) {
96 return Character.toCodePoint(lead, c);
115 if(Character.isLowSurrogate(trail = seq.charAt(pos))) { ++pos; }
126 if(Character.isHighSurrogate(c) && pos != limit &&
127 Character.isLowSurrogate(seq.charAt(pos)))
    [all...]
  /external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
UTF16CollationIterator.java 15 * UTF-16 collation element and character iterator.
75 if(Character.isHighSurrogate(c) && pos != limit &&
76 Character.isLowSurrogate(trail = seq.charAt(pos))) {
78 return Character.toCodePoint(c, trail);
91 if(Character.isLowSurrogate(c) && pos != start &&
92 Character.isHighSurrogate(lead = seq.charAt(pos - 1))) {
94 return Character.toCodePoint(lead, c);
113 if(Character.isLowSurrogate(trail = seq.charAt(pos))) { ++pos; }
124 if(Character.isHighSurrogate(c) && pos != limit &&
125 Character.isLowSurrogate(seq.charAt(pos)))
    [all...]
  /external/libchrome/base/strings/
pattern.h 16 // The backslash character (\) is an escape character for * and ?
18 // ? matches 0 or 1 character, while * matches 0 or more characters.
  /external/smali/util/src/main/java/org/jf/util/
StringUtils.java 54 writer.write(Character.forDigit(c >> 12, 16));
55 writer.write(Character.forDigit((c >> 8) & 0x0f, 16));
56 writer.write(Character.forDigit((c >> 4) & 0x0f, 16));
57 writer.write(Character.forDigit(c & 0x0f, 16));
79 writer.write(Character.forDigit(c >> 12, 16));
80 writer.write(Character.forDigit((c >> 8) & 0x0f, 16));
81 writer.write(Character.forDigit((c >> 4) & 0x0f, 16));
82 writer.write(Character.forDigit(c & 0x0f, 16));
108 sb.append(Character.forDigit(c >> 12, 16));
109 sb.append(Character.forDigit((c >> 8) & 0x0f, 16))
    [all...]
  /toolchain/binutils/binutils-2.25/libiberty/
at-file.texi 11 character may be included in an option by surrounding the entire
12 option in either single or double quotes. Any character (including a
13 backslash) may be included by prefixing the character to be included
  /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}}
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TablesTransformValuesTest.java 32 private static final Function<String, Character> FIRST_CHARACTER
33 = new Function<String, Character>() {
34 @Override public Character apply(String input) {
39 @Override protected Table<String, Integer, Character> create(
64 Table<String, Integer, Character> other = HashBasedTable.create();
72 assertEquals((Character) 'a', table.get("foo", 1));
73 assertEquals((Character) 'b', table.get("bar", 1));
74 assertEquals((Character) 'c', table.get("foo", 3));

Completed in 944 milliseconds

1 2 3 4 56 7 8 91011>>