HomeSort by relevance Sort by last modified time
    Searched refs:InputType (Results 51 - 75 of 252) sorted by null

1 23 4 5 6 7 8 91011

  /frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
TextViewBindingObject.java 22 import android.text.InputType;
39 private int mInputType = InputType.TYPE_CLASS_PHONE;
270 mInputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_WORDS;
306 return InputType.TYPE_CLASS_TEXT;
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/action/
ActionTestsBase.java 21 import android.text.InputType;
99 editorInfo.inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_NORMAL;
110 editorInfo.inputType =
111 InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_VARIATION_PASSWORD;
  /external/deqp/modules/gles3/stress/
es3sVertexArrayTests.cpp 78 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE};
149 SingleVertexArrayStrideGroup (Context& context, Array::InputType type);
158 Array::InputType m_type;
161 SingleVertexArrayStrideGroup::SingleVertexArrayStrideGroup (Context& context, Array::InputType type)
244 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, /*Array::INPUTTYPE_UNSIGNED_SHORT, Array::INPUTTYPE_UNSIGNED_BYTE,*/ Array::INPUTTYPE_FIXED, Array::INPUTTYPE_INT_2_10_10_10 };
255 SingleVertexArrayFirstGroup (Context& context, Array::InputType type);
263 Array::InputType m_type;
266 SingleVertexArrayFirstGroup::SingleVertexArrayFirstGroup (Context& context, Array::InputType type)
348 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_INT_2_10_10_10 };
359 SingleVertexArrayOffsetGroup (Context& context, Array::InputType type)
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiApDialog.java 28 import android.text.InputType;
210 InputType.TYPE_CLASS_TEXT |
212 InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD :
213 InputType.TYPE_TEXT_VARIATION_PASSWORD));
230 InputType.TYPE_CLASS_TEXT | (((CheckBox) view).isChecked() ?
231 InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD :
232 InputType.TYPE_TEXT_VARIATION_PASSWORD));
  /packages/apps/DeskClock/src/com/android/deskclock/actionbarmenu/
SearchMenuItemController.java 23 import android.text.InputType;
77 searchView.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_WORDS);
  /packages/apps/Settings/src/com/android/settings/widget/
ValidatedEditTextPreference.java 23 import android.text.InputType;
74 InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
  /packages/services/Telephony/src/com/android/phone/settings/fdn/
GetPin2Screen.java 23 import android.text.InputType;
58 InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_VARIATION_PASSWORD);
  /external/eigen/Eigen/src/Eigenvalues/
HessenbergDecomposition.h 118 template<typename InputType>
119 explicit HessenbergDecomposition(const EigenBase<InputType>& matrix)
151 template<typename InputType>
152 HessenbergDecomposition& compute(const EigenBase<InputType>& matrix)
RealSchur_LAPACKE.h 41 template<> template<typename InputType> inline \
43 RealSchur<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const EigenBase<InputType>& matrix, bool computeU) \
SelfAdjointEigenSolver_LAPACKE.h 41 template<> template<typename InputType> inline \
43 SelfAdjointEigenSolver<Matrix<EIGTYPE, Dynamic, Dynamic, EIGCOLROW> >::compute(const EigenBase<InputType>& matrix, int options) \
ComplexEigenSolver.h 125 template<typename InputType>
126 explicit ComplexEigenSolver(const EigenBase<InputType>& matrix, bool computeEigenvectors = true)
212 template<typename InputType>
213 ComplexEigenSolver& compute(const EigenBase<InputType>& matrix, bool computeEigenvectors = true);
259 template<typename InputType>
261 ComplexEigenSolver<MatrixType>::compute(const EigenBase<InputType>& matrix, bool computeEigenvectors)
  /external/eigen/unsupported/test/
forward_adolc.cpp 31 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
63 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
101 typename Func::InputType x = Func::InputType::Random(f.inputs());
autodiff.cpp 40 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
72 void operator() (const InputType& x, ValueType* v, JacobianType* _j) const
114 typedef Matrix<Scalar, 2, 1> InputType;
161 typedef typename Func::InputType InputType;
164 InputType x = InputType::Random(InputType::RowsAtCompileTime);
193 typename Func::InputType x = Func::InputType::Random(f.inputs())
    [all...]
  /frameworks/base/core/java/android/text/
InputType.java 28 * <dd>inputType = TYPE_CLASS_TEXT |
32 * <dd>inputType = TYPE_CLASS_TEXT |
37 * <dd>inputType = TYPE_CLASS_DATETIME |
41 public interface 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...]
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
TextEditor.java 20 import android.text.InputType;
62 return InputType.TYPE_CLASS_TEXT;
  /external/eigen/Eigen/src/LU/
PartialPivLU.h 115 template<typename InputType>
116 explicit PartialPivLU(const EigenBase<InputType>& matrix);
125 template<typename InputType>
126 explicit PartialPivLU(EigenBase<InputType>& matrix);
128 template<typename InputType>
129 PartialPivLU& compute(const EigenBase<InputType>& matrix) {
314 template<typename InputType>
315 PartialPivLU<MatrixType>::PartialPivLU(const EigenBase<InputType>& matrix)
327 template<typename InputType>
328 PartialPivLU<MatrixType>::PartialPivLU(EigenBase<InputType>& matrix
    [all...]
  /external/deqp/modules/gles3/functional/
es3fVertexArrayTest.cpp 75 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE};
146 SingleVertexArrayStrideGroup (Context& context, Array::InputType type);
155 Array::InputType m_type;
158 SingleVertexArrayStrideGroup::SingleVertexArrayStrideGroup (Context& context, Array::InputType type)
241 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE, /*Array::INPUTTYPE_UNSIGNED_SHORT, Array::INPUTTYPE_UNSIGNED_BYTE,*/ Array::INPUTTYPE_FIXED, Array::INPUTTYPE_INT_2_10_10_10 };
252 SingleVertexArrayFirstGroup (Context& context, Array::InputType type);
260 Array::InputType m_type;
263 SingleVertexArrayFirstGroup::SingleVertexArrayFirstGroup (Context& context, Array::InputType type)
345 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_BYTE, Array::INPUTTYPE_INT_2_10_10_10 };
356 SingleVertexArrayOffsetGroup (Context& context, Array::InputType type)
    [all...]
es3fShaderMatrixTests.cpp 206 enum InputType
217 ShaderInput (InputType inputType_, DataType dataType_, Precision precision_)
218 : inputType (inputType_)
224 InputType inputType;
884 typedef void (*MatrixShaderEvalFunc) (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type);
892 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
905 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type
    [all...]
  /external/deqp/modules/glshared/
glsVertexArrayTests.hpp 65 enum InputType
144 static std::string inputTypeToString (InputType type);
149 static int inputTypeSize (InputType type);
154 virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, bool normalized, int stride) = 0;
160 virtual InputType getInputType (void) const = 0;
176 virtual void bind (int attribNdx, int offset, int size, InputType inType, OutputType outType, bool normalized, int stride);
183 virtual Array::InputType getInputType (void) const { return m_inputType; }
194 static deUint32 inputTypeToGL (Array::InputType type);
209 Array::InputType m_inputType;
399 static GLValue getMaxValue (Array::InputType type)
    [all...]
  /cts/tests/tests/text/src/android/text/method/cts/
DateTimeKeyListenerTest.java 27 import android.text.InputType;
118 final int dateTimeType = InputType.TYPE_CLASS_DATETIME
119 | InputType.TYPE_DATETIME_VARIATION_NORMAL;
121 final int textType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_NORMAL;
QwertyKeyListenerTest.java 26 import android.text.InputType;
189 assertEquals(InputType.TYPE_CLASS_TEXT, listener.getInputType());
227 assertEquals(InputType.TYPE_CLASS_TEXT, listener.getInputType());
230 final int expected = InputType.TYPE_CLASS_TEXT
231 | InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS;
TimeKeyListenerTest.java 27 import android.text.InputType;
114 final int dateTimeType = InputType.TYPE_CLASS_DATETIME
115 | InputType.TYPE_DATETIME_VARIATION_TIME;
117 final int textType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_NORMAL;
ForwardDeleteTest.java 23 import android.text.InputType;
39 return InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_NORMAL;
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderMatrixTests.cpp 201 enum InputType
212 ShaderInput (InputType inputType_, DataType dataType_, Precision precision_)
213 : inputType (inputType_)
219 InputType inputType;
879 typedef void (*MatrixShaderEvalFunc) (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type);
887 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type)
900 static void evaluate (ShaderEvalContext& evalCtx, InputType in0Type, InputType in1Type
    [all...]

Completed in 2565 milliseconds

1 23 4 5 6 7 8 91011