Home
last modified time | relevance | path

Searched refs:character (Results 1 – 25 of 81) sorted by relevance

1234

/frameworks/base/media/libstagefright/timedtext/
DTimedTextParser.cpp87 char character; in readNextLine() local
93 if ((err = mDataSource->readAt(*offset, &character, 1)) < 1) { in readNextLine()
103 if (character == 10) { in readNextLine()
105 } else if (character == 13) { in readNextLine()
106 if ((err = mDataSource->readAt(*offset, &character, 1)) < 1) { in readNextLine()
115 if (character != 10) { in readNextLine()
121 data->append(character); in readNextLine()
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
DEventSender.java43 public void keyDown(String character, String[] withModifiers) { in keyDown() argument
44 mEventSenderImpl.keyDown(character, withModifiers); in keyDown()
47 public void keyDown(String character) { in keyDown() argument
48 keyDown(character, null); in keyDown()
DEventSenderImpl.java171 String character = bundle.getString("character");
181 charToKeyCode(character.toLowerCase().toCharArray()[0]));
368 public void keyDown(String character, String[] withModifiers) { in keyDown() argument
370 bundle.putString("character", character); in keyDown()
/frameworks/base/core/java/android/util/
DPatterns.java219 char character = matchingRegion.charAt(i); in digitsAndPlusOnly() local
221 if (character == '+' || Character.isDigit(character)) { in digitsAndPlusOnly()
222 buffer.append(character); in digitsAndPlusOnly()
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
DEventSender.java25 public void keyDown (String character, String[] withModifiers); in keyDown() argument
26 public void keyDown (String character); in keyDown() argument
DWebViewEventSender.java52 public void keyDown(String character, String[] withModifiers) { in keyDown() argument
53 Log.e("EventSender", "KeyDown: " + character + "(" in keyDown()
54 + character.getBytes()[0] + ") Modifiers: " in keyDown()
64 int keyCode = keyMapper(character.toLowerCase().toCharArray()[0]); in keyDown()
70 public void keyDown(String character) { in keyDown() argument
71 keyDown(character, null); in keyDown()
DCallbackProxy.java299 public void keyDown(String character, String[] withModifiers) { in keyDown() argument
302 map.put("character", character); in keyDown()
307 public void keyDown(String character) { in keyDown() argument
308 obtainMessage(EVENT_KEY_DOWN_2, character).sendToTarget(); in keyDown()
/frameworks/base/libs/ui/
DKeyCharacterMap.cpp171 result = behavior->character; in getCharacter()
212 if (behavior->character) { in getMatch()
214 if (behavior->character == chars[i]) { in getMatch()
215 result = behavior->character; in getMatch()
304 if (behavior->character == ch) { in findKey()
453 next(NULL), metaState(0), character(0), fallbackKeyCode(0) { in Behavior()
645 char16_t character; in parseKeyProperty() local
646 status_t status = parseCharacterLiteral(&character); in parseKeyProperty()
647 if (status || !character) { in parseKeyProperty()
657 behavior.character = character; in parseKeyProperty()
[all …]
/frameworks/base/core/java/com/android/internal/widget/
DPasswordEntryKeyboardHelper.java149 private void sendKeyEventsToTarget(int character) { in sendKeyEventsToTarget() argument
152 new char[] { (char) character }); in sendKeyEventsToTarget()
/frameworks/base/docs/html/guide/topics/manifest/
Dgrant-uri-permission-element.jd56 the immediately preceding character.</li>
63 Because '{@code \}' is used as an escape character when the string is read
Dpath-permission-element.jd53 the immediately preceding character.</li>
60 Because '<code class="Code prettyprint">\</code>' is used as an escape character when the string is…
Ddata-element.jd105 the immediately preceding character.</li>
112 Because '{@code \}' is used as an escape character when the string is read
Dinstrumentation-element.jd49 if the first character of the name is a period, it is appended to the package
Dmeta-data-element.jd72 &mdash; such as "{@code \\n}" and "{@code \\uxxxxx}" for a Unicode character.</td>
Dreceiver-element.jd121 as a shorthand, if the first character of the name is a period (for example,
164 If the process name begins with a lowercase character, the receiver will run
Dservice-element.jd120 the first character of the name is a period (for example, "{@code .RoomService}"),
172 If the process name begins with a lowercase character, the service will run
Dprovider-element.jd199 However, as a shorthand, if the first character of the name is a period,
242 If the process name begins with a lowercase character, the activity will run
/frameworks/base/data/keyboards/
DGeneric.kcm16 # Generic key character map for full alphabetic US English PC style external keyboards.
19 # Do not edit the generic key character map to support a specific keyboard; instead, create
20 # a new key character map file with the required keyboard configuration.
Dqwerty.kcm16 # Emulator keyboard character map #1.
18 # This file is no longer used as the platform's default keyboard character map.
Dqwerty2.kcm16 # Emulator keyboard character map #2.
DVirtual.kcm16 # Key character map for a built-in generic virtual keyboard primarily used
/frameworks/base/include/ui/
DKeyCharacterMap.h107 char16_t character; member
/frameworks/base/docs/html/guide/developing/tools/
Demulator.jd225 <td>Enable the root shell (as in <code>-shell</code> and specify the QEMU character
291 <td>Redirect radio modem interface to a host character device.</td>
363 <td>Redirect NMEA GPS to character device.</td>
365 …an external character device or socket. The format of <code>&lt;device&gt;</code> must be QEMU-spe…
383 <td>Redirect radio mode to the specified character device.</td>
/frameworks/base/docs/html/guide/webapps/
Dbest-practices.jd41 DOCTYPE, be sure to declare the appropriate character encoding for the document (such as
/frameworks/base/docs/html/guide/topics/resources/
Dcolor-list-resource.jd88 <p>The value always begins with a pound (#) character and then followed by the

1234