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

1 2 3 4 5 6 7

  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
LinesEditor.java 19 import android.text.InputType;
25 return InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_MULTI_LINE;
IntEditor.java 19 import android.text.InputType;
29 return InputType.TYPE_CLASS_NUMBER;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputAttributes.java 23 import android.text.InputType;
62 final int inputType = null != editorInfo ? editorInfo.inputType : 0;
63 final int inputClass = inputType & InputType.TYPE_MASK_CLASS;
64 mInputType = inputType;
65 mIsPasswordField = InputTypeUtils.isPasswordInputType(inputType)
66 || InputTypeUtils.isVisiblePasswordInputType(inputType);
67 if (inputClass != InputType.TYPE_CLASS_TEXT) {
74 } else if (InputType.TYPE_NULL == inputType)
    [all...]
  /frameworks/base/core/java/android/text/method/
DateKeyListener.java 20 import android.text.InputType;
32 return InputType.TYPE_CLASS_DATETIME
33 | InputType.TYPE_DATETIME_VARIATION_DATE;
DateTimeKeyListener.java 19 import android.text.InputType;
32 return InputType.TYPE_CLASS_DATETIME
33 | InputType.TYPE_DATETIME_VARIATION_NORMAL;
TimeKeyListener.java 20 import android.text.InputType;
32 return InputType.TYPE_CLASS_DATETIME
33 | InputType.TYPE_DATETIME_VARIATION_TIME;
  /external/gemmlowp/internal/
output.h 77 // returning OutputType. The OutputType typically depends on the InputType.
88 // InputType's.
89 template <typename OutputStageType, typename InputType>
93 std::is_same<InputType, void>::value,
105 typedef FragmentInt32x1x1 InputType;
111 OutputType Eval(InputType input, int, int) const {
128 typedef FragmentInt32x1x1 InputType;
135 OutputType Eval(InputType input, int row, int col) const {
152 typedef FragmentInt32x1x1 InputType;
159 OutputType Eval(InputType input, int row, int col) const
    [all...]
output_neon.h 44 typedef NEONFragmentInt32x16x1 InputType;
50 OutputType Eval(InputType input, int row, int col) const {
68 typedef NEONFragmentInt32x4x1 InputType;
74 OutputType Eval(InputType input, int, int) const {
95 typedef NEONFragmentInt32x4x1 InputType;
102 OutputType Eval(InputType input, int row, int col) const {
125 typedef NEONFragmentInt32x4x1 InputType;
132 OutputType Eval(InputType input, int row, int col) const {
153 typedef NEONFragmentInt32x4x1 InputType;
159 OutputType Eval(InputType input, int, int) const
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
InputTypeUtils.java 19 import android.text.InputType;
22 public final class InputTypeUtils implements InputType {
34 InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS,
35 InputType.TYPE_TEXT_VARIATION_PASSWORD,
36 InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD,
37 InputType.TYPE_TEXT_VARIATION_WEB_PASSWORD };
44 private static boolean isWebEditTextInputType(final int inputType) {
45 return inputType == (TYPE_CLASS_TEXT | TYPE_TEXT_VARIATION_WEB_EDIT_TEXT);
48 private static boolean isWebPasswordInputType(final int inputType) {
50 && inputType == WEB_TEXT_PASSWORD_INPUT_TYPE
    [all...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
66 (Py_TYPE(O)==PycStringIO->InputType)
  /prebuilts/gdb/linux-x86/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
66 (Py_TYPE(O)==PycStringIO->InputType)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
66 (Py_TYPE(O)==PycStringIO->InputType)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cStringIO.h 60 PyTypeObject *InputType, *OutputType;
66 (Py_TYPE(O)==PycStringIO->InputType)
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/setup/
TextInputWizardFragment.java 24 import android.text.InputType;
43 public static final int INPUT_TYPE_NORMAL = InputType.TYPE_CLASS_TEXT
44 | InputType.TYPE_TEXT_VARIATION_NORMAL;
45 public static final int INPUT_TYPE_PASSWORD = InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
46 | InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD;
47 public static final int INPUT_TYPE_EMAIL = InputType.TYPE_CLASS_TEXT
48 | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS;
49 public static final int INPUT_TYPE_NO_SUGGESTIONS = InputType.TYPE_CLASS_TEXT
50 | InputType.TYPE_TEXT_VARIATION_NORMAL | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS
    [all...]
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
AlertDialogTask.java 49 private InputType mInputType;
59 private enum InputType {
66 mInputType = InputType.DEFAULT;
98 mInputType = InputType.MENU;
113 mInputType = InputType.SINGLE_CHOICE;
133 mInputType = InputType.MULTI_CHOICE;
145 mInputType = InputType.PLAIN_TEXT;
160 mEditInputType = android.text.InputType.TYPE_CLASS_TEXT;
165 mInputType = InputType.PASSWORD;
230 mEditText.setInputType(android.text.InputType.TYPE_TEXT_VARIATION_PASSWORD)
    [all...]
  /packages/apps/Settings/src/com/android/settings/
EditPinPreference.java 21 import android.text.InputType;
56 editText.setInputType(InputType.TYPE_CLASS_NUMBER |
57 InputType.TYPE_NUMBER_VARIATION_PASSWORD);
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/tests/
TestsQwertyEmail.java 20 import android.text.InputType;
48 emailField.inputType =
49 InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS;
TestsQwertyUrl.java 20 import android.text.InputType;
48 emailField.inputType =
49 InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_URI;
TestsDvorakEmail.java 20 import android.text.InputType;
50 emailField.inputType =
51 InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_EMAIL_ADDRESS;
TestsDvorakUrl.java 20 import android.text.InputType;
50 emailField.inputType =
51 InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_URI;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/
KeyboardLayoutSetNavigateMoreKeysBase.java 19 import android.text.InputType;
80 final int elementId, final int inputType, final int imeOptions,
83 editorInfo.inputType = inputType;
121 final int elementId, final int inputType) {
123 doTestMoreKeysOf(code, subtype, elementId, inputType,
127 doTestMoreKeysOf(code, subtype, elementId, inputType,
131 doTestMoreKeysOf(code, subtype, elementId, inputType,
135 doTestMoreKeysOf(code, subtype, elementId, inputType,
139 doTestMoreKeysOf(code, subtype, elementId, inputType,
    [all...]
  /external/eigen/unsupported/Eigen/src/NumericalDiff/
NumericalDiff.h 41 typedef typename Functor::InputType InputType;
64 int df(const InputType& _x, JacobianType &jac) const
71 const typename InputType::Index n = _x.size();
74 InputType x = _x;
  /external/deqp/modules/glshared/
glsDrawTest.hpp 56 enum InputType
177 static std::string inputTypeToString (InputType type);
184 static int inputTypeSize (InputType type);
189 static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor);
190 static AttributeSpec createDefaultAttribute (InputType inputType, OutputType outputType, int componentCount); //!< allowed inputType values: INPUTTYPE_INT, INPUTTYPE_UNSIGNED_INT, INPUTTYPE_FLOAT
192 InputType inputType;
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
DateKeyListenerTest.java 20 import android.text.InputType;
60 int expected = InputType.TYPE_CLASS_DATETIME | InputType.TYPE_DATETIME_VARIATION_DATE;
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffJacobian.h 35 typedef typename Functor::InputType InputType;
48 void operator() (const InputType& x, ValueType* v, JacobianType* _jac=0) const

Completed in 366 milliseconds

1 2 3 4 5 6 7