Searched refs:character (Results 1 - 13 of 13) 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.java96 mEventSender.keyDown((String) map.get("character"),
299 public void keyDown(String character, String[] withModifiers) { argument
302 map.put("character", character);
307 public void keyDown(String character) { argument
308 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/base/media/libstagefright/timedtext/
H A DTimedTextParser.cpp87 char character; local
93 if ((err = mDataSource->readAt(*offset, &character, 1)) < 1) {
103 if (character == 10) {
105 } else if (character == 13) {
106 if ((err = mDataSource->readAt(*offset, &character, 1)) < 1) {
115 if (character != 10) {
121 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/libs/ui/
H A DKeyCharacterMap.cpp98 LOGE("Error %d opening key character map file %s.", status, filename.string());
102 LOGE("Error allocating key character map.");
112 LOGD("Parsed key character map file '%s' %d lines in %0.3fms.",
160 result = behavior->character;
197 // Try to find the most general behavior that maps to this character.
201 if (behavior->character) {
203 if (behavior->character == chars[i]) {
204 result = behavior->character;
231 LOGD("getEvents: deviceId=%d, chars=[%s] ~ Failed to find mapping for character %d.",
289 // Try to find the most general behavior that maps to this character
634 char16_t character; local
[all...]
/frameworks/base/include/ui/
H A DKeyCharacterMap.h60 /* Gets the primary character for this key as in the label physically printed on it.
64 /* Gets the Unicode character for the number or symbol generated by the key
70 /* Gets the Unicode character generated by the key and meta key modifiers.
71 * Returns 0 if no character is generated.
82 /* Gets the first matching Unicode character that can be generated by the key,
84 * Returns 0 if no matching character is generated.
90 * character sequence. Returns false if some of the characters cannot be generated.
105 /* The character to insert. */
106 char16_t character; member in struct:android::KeyCharacterMap::Behavior
116 /* The single character labe
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DPasswordEntryKeyboardHelper.java149 private void sendKeyEventsToTarget(int character) { argument
152 new char[] { (char) character });
/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...]
/frameworks/base/libs/utils/
H A DResourceTypes.cpp533 * data encoded. In that case, drop the high bit of the first character and
534 * add it together with the next character.
555 * data encoded. In that case, drop the high bit of the first character and
556 * add it together with the next character.
3706 * character. Warn them so they don't lose it.
3779 *outErrorMsg = "Bad character in \\u unicode escape sequence";

Completed in 429 milliseconds