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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/chrome/test/chromedriver/
keycode_text_conversion_unittest.cc 17 void CheckCharToKeyCode16(char16 character, ui::KeyboardCode key_code,
23 character, &actual_key_code, &actual_modifiers, &error_msg));
24 EXPECT_EQ(key_code, actual_key_code) << "Char: " << character;
25 EXPECT_EQ(modifiers, actual_modifiers) << "Char: " << character;
28 void CheckCharToKeyCode(char character, ui::KeyboardCode key_code,
30 CheckCharToKeyCode16(UTF8ToUTF16(std::string(1, character))[0],
35 void CheckCharToKeyCode(wchar_t character, ui::KeyboardCode key_code,
37 CheckCharToKeyCode16(WideToUTF16(std::wstring(1, character))[0],
42 void CheckCantConvertChar(wchar_t character) {
44 character_string.push_back(character);
    [all...]
  /libcore/luni/src/main/java/java/lang/
Appendable.java 22 * Declares methods to append characters or character sequences. Any class that
24 * {@link java.util.Formatter}. The appended character or character sequence
26 * {@link Character Unicode Character Representation}.
38 * Appends the specified character.
41 * the character to append.
49 * Appends the character sequence {@code csq}. Implementation classes may
56 * the character sequence to append.
72 * the character sequence to append
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/regex/
Pattern2Test.java 342 // Test \c (control character) sequence
357 // character
361 p = Pattern.compile("\\c" + Character.toString((char) ('A' + i)));
364 m = p.matcher(Character.toString((char) j));
412 // Test one character range
423 // Test two character range
456 // Test character range using -
478 // Test ranges including the "-" character
503 // Test character class intersection with &&
570 // Test character class subtraction with && and
    [all...]
  /external/apache-http/src/org/apache/commons/codec/net/
StringEncodings.java 29 * Seven-bit ASCII, also known as ISO646-US, also known as the Basic Latin block of the Unicode character set.
32 * Every implementation of the Java platform is required to support this character encoding.
35 * @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
45 * Every implementation of the Java platform is required to support this character encoding.
48 * @see <a href="http://java.sun.com/j2se/1.3/docs/api/java/lang/package-summary.html#charenc">JRE character
  /external/qemu/distrib/sdl-1.2.15/docs/man3/
SDL_keysym.3 27 Translated character
52 \fBmod\fR stores the current state of the keyboard modifiers as explained in \fI\fBSDL_GetModState\fP\fR\&. The \fBunicode\fR is only used when UNICODE translation is enabled with \fI\fBSDL_EnableUNICODE\fP\fR\&. If \fBunicode\fR is non-zero then this a the UNICODE character corresponding to the keypress\&. If the high 9 bits of the character are 0, then this maps to the equivalent ASCII character:
60 printf("An International Character\&.
  /external/llvm/docs/
re_format.7 152 (matching any single character),
161 (matching that character taken as an ordinary character),
164 followed by any other character**
165 (matching that character taken as an ordinary character,
169 or a single character with no other significance (matching that character).
172 followed by a character other than a digit is an ordinary character,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/
UTF8.cpp 282 UChar32 character = 0; local
286 case 6: character += static_cast<unsigned char>(*sequence++); character <<= 6;
287 case 5: character += static_cast<unsigned char>(*sequence++); character <<= 6;
288 case 4: character += static_cast<unsigned char>(*sequence++); character <<= 6;
289 case 3: character += static_cast<unsigned char>(*sequence++); character <<= 6;
290 case 2: character += static_cast<unsigned char>(*sequence++); character <<= 6
317 UChar32 character = readUTF8Sequence(source, utf8SequenceLength); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/utils/
XMLString.java 26 * This class is meant to be an interface to character strings, whether they
28 * other character data. By using XMLString, character copies can be reduced
63 * replaced by a single space character (#x20), except spaces after punctuation which
87 * Returns the character at the specified index. An index ranges
88 * from <code>0</code> to <code>length() - 1</code>. The first character
92 * @param index the index of the character.
93 * @return the character at the specified index of this string.
94 * The first character is at index <code>0</code>.
102 * Copies characters from this string into the destination character
    [all...]
XMLChar.java 25 * This class defines the basic XML character properties. The data
26 * in this class can be used to verify that a character is a valid
27 * XML character or if the character is a space, name start, or name
28 * character.
32 * character performance, the tables of character properties are
33 * public. Using the character as an index into the <code>CHARS</code>
53 /** Character flags. */
56 /** Valid character mask. *
    [all...]
XMLStringDefault.java 75 * replaced by a single space character (#x20), except spaces after punctuation which
105 * Returns the character at the specified index. An index ranges
106 * from <code>0</code> to <code>length() - 1</code>. The first character
110 * @param index the index of the character.
111 * @return the character at the specified index of this string.
112 * The first character is at index <code>0</code>.
123 * Copies characters from this string into the destination character
126 * @param srcBegin index of the first character in the string
128 * @param srcEnd index after the last character in the string
218 * @see java.lang.Character#toLowerCase(char
    [all...]
  /external/chromium_org/third_party/icu/source/common/
util.h 49 * Return true if the character is NOT printable ASCII.
58 * U+FFFF and \Uxxxxxxxx for U+10000 and above. If the character is
65 * Returns the index of a character, ignoring quoted text.
73 * @param c character to search for
84 * character at or after pos, or str.length(), if there is none.
86 * @return the index of the first non-white-space character at or
114 * Parse a single non-whitespace character 'ch', optionally
118 * offset of the first character to be parsed. On output, pos[0]
119 * is the index after the last parsed character. If the parse
121 * @param ch the non-whitespace character to be parsed
    [all...]
  /libcore/luni/src/main/java/java/text/
DecimalFormatSymbols.java 249 * Returns the character which represents the decimal point in a number.
251 * @return the decimal separator character.
258 * Returns the character which represents a single digit in a format
261 * @return the digit pattern character.
268 * Returns the character used as the thousands separator in a number.
270 * @return the thousands separator character.
286 * Returns the minus sign character.
288 * @return the minus sign as a character.
295 * Returns the character which represents the decimal point in a monetary
298 * @return the monetary decimal point as a character
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthIterator.cpp 71 GlyphData WidthIterator::glyphDataForCharacter(UChar32 character, bool mirror, int currentCharacter, unsigned& advanceLength)
77 return renderingContext->glyphDataForCharacter(*m_font, m_run, *this, character, mirror, currentCharacter, advanceLength);
80 return m_font->glyphDataForCharacter(character, mirror);
156 UChar32 character = 0; local
159 while (textIterator.consume(character, clusterLength)) {
161 const GlyphData& glyphData = glyphDataForCharacter(character, rtl, textIterator.currentCharacter(), advanceLength);
169 if (character == '\t' && m_run.allowTabs())
180 // match the width of the space character have the same width as the space character.
193 if (!m_font->isSmallCaps() || character == toUpper(character)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextCodecUTF8.cpp 145 static inline UChar* appendCharacter(UChar* destination, int character)
147 ASSERT(character != nonCharacter);
148 ASSERT(!U_IS_SURROGATE(character));
149 if (U_IS_BMP(character))
150 *destination++ = character;
152 *destination++ = U16_LEAD(character);
153 *destination++ = U16_TRAIL(character);
169 // Each error generates a replacement character and consumes one byte.
206 int character = decodeNonASCIISequence(m_partialSequence, count); local
207 if ((character == nonCharacter) || (character > 0xff)
253 int character = decodeNonASCIISequence(m_partialSequence, count); local
318 int character; local
395 int character; local
441 UChar32 character; local
    [all...]
  /external/chromium_org/ui/keyboard/resources/elements/
kb-altkey-data.html 16 * the concatenation of the keycodes of every character in the string.
22 // Returns the key code for the character.
23 function(character) {
24 return character.charCodeAt(0);
34 * @param {string} char The base character.
73 * @param {string} char The base character.
75 * displayed to the left of the base character to prevent running
78 * displayed to the right of the base character to prvent running
115 // Verify that there is room remaining for an additional character.
  /external/guava/guava-tests/test/com/google/common/collect/
BstRangeOpsTest.java 45 private static final SortedSet<Character> MODEL =
119 countAggregate, GeneralRange.<Character>all(Ordering.natural()), ROOT));
124 GeneralRange<Character> range = GeneralRange.all(Ordering.natural());
142 GeneralRange<Character> range1 = GeneralRange.downTo(Ordering.natural(), 'f', CLOSED);
145 GeneralRange<Character> range2 = GeneralRange.downTo(Ordering.natural(), 'f', OPEN);
148 GeneralRange<Character> range3 = GeneralRange.downTo(Ordering.natural(), 'a', CLOSED);
151 GeneralRange<Character> range4 = GeneralRange.downTo(Ordering.natural(), 'a', OPEN);
154 GeneralRange<Character> range5 = GeneralRange.downTo(Ordering.natural(), 'c', OPEN);
157 GeneralRange<Character> range6 = GeneralRange.downTo(Ordering.natural(), 'c', CLOSED);
175 GeneralRange<Character> range1 = GeneralRange.upTo(Ordering.natural(), 'f', CLOSED)
    [all...]
  /external/icu4c/common/
util.h 48 * Return true if the character is NOT printable ASCII.
57 * U+FFFF and \Uxxxxxxxx for U+10000 and above. If the character is
64 * Returns the index of a character, ignoring quoted text.
72 * @param c character to search for
83 * character at or after pos, or str.length(), if there is none.
85 * @return the index of the first non-white-space character at or
113 * Parse a single non-whitespace character 'ch', optionally
117 * offset of the first character to be parsed. On output, pos[0]
118 * is the index after the last parsed character. If the parse
120 * @param ch the non-whitespace character to be parsed
    [all...]
  /frameworks/base/core/java/android/text/
AndroidCharacter.java 20 * AndroidCharacter exposes some character properties that are not
21 * easily accessed from java.lang.Character.
35 * This is just like Character.getDirectionality() except it is a
42 * Calculate the East Asian Width of a character according to
49 * @param input the character to measure
64 * @param src character array of input to measure
65 * @param start first character in array to measure
67 * @param dest byte array of results for each character in src
78 * @param start first character in array to mirror
  /libcore/luni/src/main/java/javax/xml/parsers/
FilePathToURI.java 24 // the first hex character if a character needs to be escaped
26 // the second hex character if a character needs to be escaped
68 ch = Character.toUpperCase(path.charAt(0));
74 // for each character in the path
78 // if it's not an ASCII character, break here, and use UTF-8 encoding
92 // we saw some non-ascii character
108 // for non-ascii character: make it positive, then escape
  /libcore/luni/src/main/java/javax/xml/transform/stream/
FilePathToURI.java 24 // the first hex character if a character needs to be escaped
26 // the second hex character if a character needs to be escaped
68 ch = Character.toUpperCase(path.charAt(0));
74 // for each character in the path
78 // if it's not an ASCII character, break here, and use UTF-8 encoding
92 // we saw some non-ascii character
108 // for non-ascii character: make it positive, then escape
  /libcore/luni/src/main/java/org/w3c/dom/
CDATASection.java 24 * that, depending on the character encoding ("charset") chosen for
32 * therefore possible to have the character sequence <code>"]]&gt;"</code>
34 * presence of this character sequence must generate a fatal error during
39 * <code>CDATASection</code>, character numeric references cannot be used as
41 * when serializing a <code>CDATASection</code> with a character encoding
45 * end the CDATA section before the character, output the character using a
46 * character reference or entity reference, and open a new CDATA section for
49 * exception when a character is missing from the encoding, making the task
  /external/svox/pico/lib/
picobase.h 41 /* maximum number of bytes of an UTF8 character */
60 * @return <0 : not starting with a valid UTF8 character
68 * Determines the number of bytes an UTF8 character used based
69 * on the first byte of the UTF8 character
70 * @param firstchar: the first (and maybe only) byte of an UTF8 character
71 * @return positive value in {1,4} : number of bytes of the UTF8 character
72 * @return 0 :if not a valid UTF8 character start
81 * on the first byte of the UTF8 character
101 * Gets next UTF8 character 'utf8char' from the UTF8 string
105 * @param pos : position from where the UTF8 character is checked and copie
    [all...]
  /packages/inputmethods/LatinIME/java/res/xml/
rowkeys_thai1.xml 47 U+0E39: " ?" THAI CHARACTER SARA UU -->
48 <!-- Note: The space character is needed as a preceding letter to draw some Thai
80 <!-- U+0E45: "?" THAI CHARACTER LAKKHANGYAO -->
96 <!-- U+0E20: "?" THAI CHARACTER PHO SAMPHAO
104 <!-- U+0E16: "?" THAI CHARACTER THO THUNG
113 U+0E38: " ?" THAI CHARACTER SARA U -->
114 <!-- Note: The space character is needed as a preceding letter to draw some Thai
121 U+0E36: " ?" THAI CHARACTER SARA UE -->
122 <!-- Note: The space character is needed as a preceding letter to draw some Thai
128 <!-- U+0E04: "?" THAI CHARACTER KHO KHWA
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
HanziToPinyin.java 28 * An object to convert Chinese character to its corresponding pinyin string.
97 private void tokenize(char character, Token token) {
98 token.source = Character.toString(character);
101 if (character < 128) {
108 if (character < 0x250 || (0x1e00 <= character && character < 0x1eff)) {
126 * space will be put into a Token, One Hanzi character which has pinyin will be treated as a
144 // c. current character is space
146 final char character = input.charAt(i); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Text_Suite.py 32 class character(aetools.ComponentItem): class in inherits:aetools.ComponentItem
33 """character - A character """
56 """color - the color of the first character """
60 """font - the name of the font of the first character """
68 """size - the size in points of the first character """
72 """style - the text style of the first character of the first character """
115 character._superclassnames = ['text']
116 character._privpropdict =
    [all...]

Completed in 616 milliseconds

1 2 3 4 56 7 8 91011>>