HomeSort by relevance Sort by last modified time
    Searched refs:Input (Results 1 - 25 of 39) sorted by null

1 2

  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/stk/
Input.java 24 * Container class for STK GET INPUT, GET IN KEY commands parameters.
27 public class Input implements Parcelable {
40 Input() {
54 private Input(Parcel in) {
86 public static final Parcelable.Creator<Input> CREATOR = new Parcelable.Creator<Input>() {
87 public Input createFromParcel(Parcel in) {
88 return new Input(in);
91 public Input[] newArray(int size) {
92 return new Input[size]
    [all...]
CommandParams.java 154 Input input = null; field in class:GetInputParams
156 GetInputParams(CommandDetails cmdDet, Input input) {
158 this.input = input;
162 if (icon != null && input != null) {
163 input.icon = icon;
StkCmdMessage.java 32 private Input mInput;
70 mInput = ((GetInputParams) cmdParams).input;
156 public Input geInput() {
CommandParamsFactory.java 367 Input input = new Input(); local
373 input.text = ValueParser.retrieveTextString(ctlv);
383 input.minLen = 1;
384 input.maxLen = 1;
386 input.digitOnly = (cmdDet.commandQualifier & 0x01) == 0;
387 input.ucs2 = (cmdDet.commandQualifier & 0x02) != 0;
388 input.yesNo = (cmdDet.commandQualifier & 0x04) != 0;
389 input.helpAvailable = (cmdDet.commandQualifier & 0x80) != 0
417 Input input = new Input(); local
    [all...]
  /external/skia/src/animator/
SkDisplayInput.h 25 DECLARE_MEMBER_INFO(Input);
SkDisplayType.cpp 146 CASE_NEW(Input);
301 CASE_GET_INFO(Input);
468 { "input", SkType_Input INIT_BOOL_FIELDS },
  /external/astl/tests/
test_iterator.cpp 38 struct Input {
71 enum Category {UNKNOWN, INPUT, FORWARD, BIDIRECTIONAL, RANDOM};
81 return INPUT;
105 EXPECT_TRUE(category(android::iterator_category(Input())) == INPUT);
  /external/ppp/pppd/plugins/radius/etc/
dictionary.merit 13 ATTRIBUTE Acct-Input-Packets 47 integer
dictionary 77 ATTRIBUTE Acct-Input-Octets 42 integer
82 ATTRIBUTE Acct-Input-Packets 47 integer
248 VALUE Octets-Direction Input 1
dictionary.ascend 84 ATTRIBUTE Ascend-Pre-Input-Octets 190 integer
86 ATTRIBUTE Ascend-Pre-Input-Packets 192 integer
191 VALUE Ascend-TS-Idle-Mode TS-Idle-Input 1
192 VALUE Ascend-TS-Idle-Mode TS-Idle-Input-Output 2
  /external/skia/src/images/
fpdfemb_ext.h 16 /** Input JPEG encoded data from the source.
19 void (*Input)(void* pContext, const unsigned char* src_buf, unsigned long src_size);
30 /** Get number of available source bytes left in the input stream */
  /external/v8/src/
unicode.h 177 template <class Reader, class Input = Reader*, unsigned kSize = 256>
181 inline void Reset(Input input);
183 inline void Reset(unsigned position, Input input);
186 explicit InputBuffer(Input input) { Reset(input); }
192 // The input string
193 Input input_
    [all...]
  /frameworks/base/cmds/input/src/com/android/commands/input/
Input.java 17 package com.android.commands.input;
32 public class Input {
40 (new Input()).run(args);
70 * @param text is a string of characters you want to input to the device.
106 Log.i("Input", "DeadOjbectException");
131 Log.i("Input", "DeadOjbectException");
140 System.err.println("usage: input [text|keyevent]");
141 System.err.println(" input text <string>");
142 System.err.println(" input keyevent <event_code>");
  /frameworks/base/libs/ui/
Android.mk 15 Input.cpp \
Input.cpp 6 #define LOG_TAG "Input"
10 #include <ui/Input.h>
  /frameworks/base/include/ui/
InputManager.h 21 * Native input manager.
25 #include <ui/Input.h>
45 * The input manager is the core of the system event processing.
47 * The input manager uses two threads.
49 * 1. The InputReaderThread (called "InputReader") reads and preprocesses raw input events,
69 /* Starts the input manager threads. */
72 /* Stops the input manager threads and waits for them to exit. */
75 /* Gets the input reader. */
78 /* Gets the input dispatcher. */
InputTransport.h 21 * Native input transport.
23 * Uses anonymous shared memory as a whiteboard for sending input events from an
34 #include <ui/Input.h>
43 * An input channel consists of a shared memory buffer and a pair of pipes
44 * used to send input messages from an InputPublisher to an InputConsumer
49 * The input channel is closed when all references to it are released.
59 /* Creates a pair of input channels and their underlying shared memory buffers
81 * (Should only call this after poll() indicates that the receivePipeFd has available input.)
98 * Private intermediate representation of input events as messages written into an
166 * Publishes input events to an anonymous shared memory buffer
    [all...]
  /sdk/anttasks/src/com/android/ant/
MultiApkExportTask.java 29 import org.apache.tools.ant.taskdefs.Input;
128 Input input = new Input(); local
129 input.setProject(antProject);
130 input.setAddproperty("key.store.password");
131 input.setMessage(String.format("Please enter keystore password (store: %1$s):",
133 input.execute();
135 input = new Input();
    [all...]
  /frameworks/base/core/jni/
android_view_KeyEvent.cpp 23 #include <ui/Input.h>
android_view_MotionEvent.cpp 23 #include <ui/Input.h>
  /packages/apps/Stk/src/com/android/stk/
StkInputActivity.java 40 import com.android.internal.telephony.gsm.stk.Input;
44 * Display a request for a text input a long with a text edit form.
56 private Input mStkInput = null;
88 String input = null; local
96 input = mTextIn.getText().toString();
100 input = YES_STR_RESPONSE;
103 input = NO_STR_RESPONSE;
107 sendResponse(StkAppService.RES_ID_INPUT, input, false);
139 mStkInput = intent.getParcelableExtra("INPUT");
188 private void sendResponse(int resId, String input, boolean help)
    [all...]
  /external/v8/tools/
csvparser.js 58 * @param {string} line Input line.
  /frameworks/base/docs/html/resources/
resources_toc.cs 56 <li><a href="<?cs var:toroot ?>resources/articles/creating-input-method.html">
57 <span class="en">Creating an Input Method</span>
96 <span class="en">Onscreen Input Methods</span>
104 <li><a href="<?cs var:toroot ?>resources/articles/speech-input.html">
105 <span class="en">Speech Input</span>
  /external/libvpx/vp8/encoder/arm/neon/
shortfdct_neon.asm 21 ; r0 short *input
24 ; Input has a pitch, output is contiguous
97 ; r0 short *input
101 ; Store link register and input before calling
  /frameworks/base/native/android/
input.cpp 17 #define LOG_TAG "input"
20 #include <android/input.h>
21 #include <ui/Input.h>

Completed in 1232 milliseconds

1 2