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

1 2 3 4 5 6 7 8 91011>>

  /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...]
  /external/deqp/framework/referencerenderer/
rrShaders.cpp 30 GeometryShader::GeometryShader (size_t numVaryingInputs, size_t numVaryingOutputs, GeometryShaderInputType inputType, GeometryShaderOutputType outputType, size_t verticesOut, size_t numInvocations)
31 : m_inputType (inputType)
  /external/swiftshader/src/Renderer/
ETC_Decoder.hpp 18 enum InputType
38 /// @param inputType src's format
40 static bool Decode(const unsigned char* src, unsigned char *dst, int w, int h, int dstW, int dstH, int dstPitch, int dstBpp, InputType inputType);
  /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...]
  /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...]
  /external/skia/src/gpu/glsl/
GrGLSLGeometryShaderBuilder.cpp 12 static const char* input_type_name(GrGLSLGeometryBuilder::InputType in) {
13 using InputType = GrGLSLGeometryBuilder::InputType;
15 case InputType::kPoints: return "points";
16 case InputType::kLines: return "lines";
17 case InputType::kLinesAdjacency: return "lines_adjacency";
18 case InputType::kTriangles: return "triangles";
19 case InputType::kTrianglesAdjacency: return "triangles_adjacency";
41 void GrGLSLGeometryBuilder::configure(InputType inputType, OutputType outputType, int maxVertices
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/suggestions/
SuggestionStripLayoutHelperTests.java 26 private static void confirmShowTypedWord(final String message, final int inputType) {
28 inputType,
32 inputType,
36 inputType,
40 inputType,
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 24 import android.text.InputType;
35 public class EditorInfo implements InputType, Parcelable {
37 * Masks for {@link inputType}
86 * {@link InputType}.
88 * @see InputType
93 public int inputType = TYPE_NULL;
478 * {@link InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS},
479 * {@link InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD},
480 * {@link InputType#TYPE_NUMBER_VARIATION_NORMAL},
481 * {@link InputType#TYPE_NUMBER_VARIATION_PASSWORD}
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 21 import android.text.InputType;
164 final int inputType = mEditorInfo.inputType;
165 return InputTypeUtils.isPasswordInputType(inputType)
166 || InputTypeUtils.isVisiblePasswordInputType(inputType);
170 return (mEditorInfo.inputType & InputType.TYPE_TEXT_FLAG_MULTI_LINE) != 0;
214 return a.inputType == b.inputType
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedAction.java 24 import android.text.InputType;
126 private int mInputType = InputType.TYPE_CLASS_TEXT
127 | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS;
128 private int mDescriptionInputType = InputType.TYPE_CLASS_TEXT
129 | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS;
130 private int mEditInputType = InputType.TYPE_CLASS_TEXT;
131 private int mDescriptionEditInputType = InputType.TYPE_CLASS_TEXT;
403 * Sets {@link InputType} of this action title not in editing.
405 * @param inputType InputType for the action title not in editing
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/account/
AccountType.java 417 public int inputType;
428 public EditField(String column, int titleRes, int inputType) {
430 this.inputType = inputType;
454 return (inputType & EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE) != 0;
465 + " inputType="
466 + 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...]
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
EditorInfoTest.java 55 info.inputType = EditorInfo.TYPE_MASK_CLASS;
81 assertEquals(info.inputType, targetInfo.inputType);
  /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...]
glsDrawTest.cpp 110 static GLenum inputTypeToGL (DrawTestSpec::InputType type)
188 static bool inputTypeIsFloatType (DrawTestSpec::InputType type)
513 static GLValue getMaxValue (DrawTestSpec::InputType type);
514 static GLValue getMinValue (DrawTestSpec::InputType type);
516 DrawTestSpec::InputType type;
601 GLValue GLValue::getMaxValue (DrawTestSpec::InputType type)
619 GLValue GLValue::getMinValue (DrawTestSpec::InputType type)
640 template<> struct GLValueTypeTraits<GLValue::Float> { static const DrawTestSpec::InputType Type = DrawTestSpec::INPUTTYPE_FLOAT; };
641 template<> struct GLValueTypeTraits<GLValue::Double> { static const DrawTestSpec::InputType Type = DrawTestSpec::INPUTTYPE_DOUBLE; };
642 template<> struct GLValueTypeTraits<GLValue::Byte> { static const DrawTestSpec::InputType Type = DrawTestSpec::INPUTTYPE_BYTE; }
    [all...]
  /frameworks/rs/
rsProgramFragment.cpp 112 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1);
116 tmp[1] = (uintptr_t)inputType.get();
118 Allocation *constAlloc = Allocation::createAllocation(rsc, inputType.get(),
  /packages/apps/Contacts/src/com/android/contacts/model/account/
AccountType.java 442 public int inputType;
453 public EditField(String column, int titleRes, int inputType) {
455 this.inputType = inputType;
479 return (inputType & EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE) != 0;
488 + " inputType=" + inputType
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsSource.java 297 public int inputType;
306 public EditField(String column, int titleRes, int inputType) {
308 this.inputType = inputType;
  /packages/inputmethods/LatinIME/java-overridable/src/com/android/inputmethod/latin/utils/
StatsUtils.java 71 public static void onStartInputView(int inputType, int displayOrientation, boolean restarting) {
  /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;
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
MethodDescriptor.cs 42 private MessageDescriptor inputType;
53 public MessageDescriptor InputType { get { return inputType; } }
88 IDescriptor lookup = File.DescriptorPool.LookupSymbol(Proto.InputType, this);
91 throw new DescriptorValidationException(this, "\"" + Proto.InputType + "\" is not a message type.");
93 inputType = (MessageDescriptor) lookup;
  /frameworks/data-binding/extensions/baseAdapters/src/main/java/android/databinding/adapters/
TextViewBindingAdapter.java 29 import android.text.InputType;
47 @BindingMethod(type = TextView.class, attribute = "android:inputType", method = "setRawInputType"),
89 int inputType = listener != null ? listener.getInputType() : 0;
90 if ((inputType & InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS) != 0) {
92 } else if ((inputType & InputType.TYPE_TEXT_FLAG_CAP_WORDS) != 0) {
94 } else if ((inputType & InputType.TYPE_TEXT_FLAG_CAP_SENTENCES) != 0) {
104 int inputType = listener.getInputType()
    [all...]
  /external/deqp/modules/gles2/scripts/
gen-swizzles.py 107 for (inputType, dataType, precision) in combinations.iterate():
109 print inputType, precision, dataType
  /external/deqp/modules/gles3/scripts/
gen-swizzles.py 107 for (inputType, dataType, precision) in combinations.iterate():
109 print inputType, precision, dataType

Completed in 594 milliseconds

1 2 3 4 5 6 7 8 91011>>