Searched refs:character (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DEventSender.java25 public void keyDown (String character, String[] withModifiers); argument
26 public void keyDown (String character); argument
H A DWebViewEventSender.java52 public void keyDown(String character, String[] withModifiers) { argument
53 Log.e("EventSender", "KeyDown: " + character + "("
54 + character.getBytes()[0] + ") Modifiers: "
64 int keyCode = keyMapper(character.toLowerCase().toCharArray()[0]);
70 public void keyDown(String character) { argument
71 keyDown(character, null);
H A DCallbackProxy.java93 mEventSender.keyDown((String) map.get("character"),
291 public void keyDown(String character, String[] withModifiers) { argument
294 map.put("character", character);
299 public void keyDown(String character) { argument
300 obtainMessage(EVENT_KEY_DOWN_2, character).sendToTarget();
/frameworks/base/core/java/android/util/
H A DPatterns.java219 char character = matchingRegion.charAt(i);
221 if (character == '+' || Character.isDigit(character)) {
222 buffer.append(character);
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
H A DEventSender.java43 public void keyDown(String character, String[] withModifiers) { argument
44 mEventSenderImpl.keyDown(character, withModifiers);
47 public void keyDown(String character) { argument
48 keyDown(character, null);
H A DEventSenderImpl.java171 String character = bundle.getString("character");
181 charToKeyCode(character.toLowerCase().toCharArray()[0]));
368 public void keyDown(String character, String[] withModifiers) { argument
370 bundle.putString("character", character);
/frameworks/av/media/libstagefright/timedtext/
H A DTimedTextSRTSource.cpp182 char character; local
183 if ((readSize = mSource->readAt(*offset, &character, 1)) < 1) {
193 if (character == 10) {
195 } else if (character == 13) {
196 if ((readSize = mSource->readAt(*offset, &character, 1)) < 1) {
204 if (character != 10) {
209 data->append(character);
/frameworks/base/data/keyboards/
H A Dcommon.mk15 # This is the list of framework provided keylayouts and key character maps to include.
/frameworks/base/core/java/android/view/
H A DKeyCharacterMap.java81 * symbols may only be accessible using special on-screen character pickers.
113 * This private-use character is used to trigger Unicode character
119 * This private-use character is used to bring up a character picker for
125 * Modifier keys may be chorded with character keys.
132 * Modifier keys may be chorded with character keys or they may toggle
147 * a printable representation of the accent character of a "dead key."
239 * Maps combinations of (display-form) combining key and second character
240 * to combined output character
[all...]
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp114 ALOGE("Error %d opening key character map file %s.", status, filename.string());
129 ALOGE("Error %d opening key character map.", status);
142 ALOGE("Error allocating key character map.");
152 ALOGD("Parsed key character map file '%s' %d lines in %0.3fms.",
234 result = behavior->character;
271 // Try to find the most general behavior that maps to this character.
275 if (behavior->character) {
277 if (behavior->character == chars[i]) {
278 result = behavior->character;
305 ALOGD("getEvents: deviceId=%d, chars=[%s] ~ Failed to find mapping for character
583 char16_t character = parcel->readInt32(); local
928 char16_t character; local
[all...]
H A DResourceTypes.cpp532 * data encoded. In that case, drop the high bit of the first character and
533 * add it together with the next character.
554 * data encoded. In that case, drop the high bit of the first character and
555 * add it together with the next character.
4624 * character. Warn them so they don't lose it.
4697 *outErrorMsg = "Bad character in \\u unicode escape sequence";
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java177 private void sendKeyEventsToTarget(int character) { argument
180 new char[] { (char) character });
/frameworks/base/include/androidfw/
H A DKeyCharacterMap.h71 /* Loads a key character map from a file. */
74 /* Loads a key character map from its string contents. */
78 /* Combines a base key character map and an overlay. */
82 /* Returns an empty key character map. */
88 /* Gets the primary character for this key as in the label physically printed on it.
92 /* Gets the Unicode character for the number or symbol generated by the key
98 /* Gets the Unicode character generated by the key and meta key modifiers.
99 * Returns 0 if no character is generated.
110 /* Gets the first matching Unicode character that can be generated by the key,
112 * Returns 0 if no matching character i
150 char16_t character; member in struct:android::KeyCharacterMap::Behavior
[all...]
/frameworks/base/core/java/com/google/android/util/
H A DAbstractMessageParser.java252 * Looks for a music track (\u266B is first character, everything else is
326 /** Determines if this is an allowable domain character. */
388 // also be a punctuation character.
401 // punctuation, or a colon, slash, question, or hash character. The
405 // character that follows it.
411 // If the next character is whitespace or punctuation (or missing),
442 // next whitespace character.
474 * - Only a single instance of a particular format character within a block
476 * other instances simply print the character itself.
497 // Keeps track of whether we've seen a character (i
[all...]

Completed in 172 milliseconds