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

1 2 3 4 56 7 8 91011

  /packages/apps/DeskClock/src/com/android/deskclock/
LabelDialogFragment.java 33 import android.text.InputType;
151 mLabelBox.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_CAP_SENTENCES);
  /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/eigen/Eigen/src/Eigenvalues/
EigenSolver.h 146 template<typename InputType>
147 explicit EigenSolver(const EigenBase<InputType>& matrix, bool computeEigenvectors = true)
277 template<typename InputType>
278 EigenSolver& compute(const EigenBase<InputType>& matrix, bool computeEigenvectors = true);
377 template<typename InputType>
379 EigenSolver<MatrixType>::compute(const EigenBase<InputType>& matrix, bool computeEigenvectors)
RealSchur.h 103 template<typename InputType>
104 explicit RealSchur(const EigenBase<InputType>& matrix, bool computeU = true)
169 template<typename InputType>
170 RealSchur& compute(const EigenBase<InputType>& matrix, bool computeU = true);
248 template<typename InputType>
249 RealSchur<MatrixType>& RealSchur<MatrixType>::compute(const EigenBase<InputType>& matrix, bool computeU)
SelfAdjointEigenSolver.h 160 template<typename InputType>
162 explicit SelfAdjointEigenSolver(const EigenBase<InputType>& matrix, int options = ComputeEigenvectors)
201 template<typename InputType>
203 SelfAdjointEigenSolver& compute(const EigenBase<InputType>& matrix, int options = ComputeEigenvectors);
397 template<typename InputType>
400 ::compute(const EigenBase<InputType>& a_matrix, int options)
404 const InputType &matrix(a_matrix.derived());
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TextViewTest.java 155 assertThat(textView.getInputType(), not(equalTo(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD)));
156 textView.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD);
157 assertThat(textView.getInputType(), equalTo(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD));
  /external/deqp/modules/glshared/
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...]
glsVertexArrayTests.cpp 78 std::string Array::inputTypeToString(InputType type)
171 int Array::inputTypeSize (InputType type)
195 static bool inputTypeIsFloatType (Array::InputType type)
532 void ContextArray::bind (int attribNdx, int offset, int size, InputType inputType, OutputType outType, bool normalized, int stride)
537 m_inputType = inputType;
661 GLenum ContextArray::inputTypeToGL (Array::InputType type)
    [all...]
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
NumberPicker.java 22 import android.text.InputType;
123 mText.setRawInputType(InputType.TYPE_CLASS_NUMBER);
341 return InputType.TYPE_CLASS_NUMBER;
  /frameworks/base/core/tests/coretests/src/android/text/method/
ForwardDeleteTest.java 22 import android.text.InputType;
45 return InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_NORMAL;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GridLayout3.java 27 import static android.text.InputType.*;
  /external/eigen/unsupported/test/
NumericalDiff.cpp 20 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
  /external/libmojo/mojo/public/cpp/bindings/tests/
validation_test_input_parser.cc 86 template <typename TargetType, typename InputType>
87 bool ConvertAndAppendData(InputType value) {
96 template <typename TargetType, typename InputType>
97 bool ConvertAndFillData(size_t pos, InputType value) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 25 import android.text.InputType;
200 final int inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_AUTO_CORRECT
201 | InputType.TYPE_TEXT_FLAG_MULTI_LINE;
202 mEditText.setInputType(inputType);
  /external/clang/include/clang/Driver/
ToolChain.h 338 types::ID InputType = types::TY_INVALID) const;
347 types::ID InputType = types::TY_INVALID) const;
  /external/gemmlowp/internal/
output_neon.h 29 typedef RegBufferInt32<4> InputType;
36 OutputType Eval(InputType input) const {
48 typedef RegBufferInt32<8> InputType;
55 OutputType Eval(InputType input) const {
67 typedef RegBufferInt32<16> InputType;
74 OutputType Eval(InputType input) const {
89 typedef RegBufferInt32<32> InputType;
96 OutputType Eval(InputType input) const {
  /external/skia/src/gpu/ccpr/
GrCCPRTriangleProcessor.cpp 61 g->configure(GrGLSLGeometryBuilder::InputType::kTriangles,
106 g->configure(GrGLSLGeometryBuilder::InputType::kTriangles,
  /frameworks/base/core/java/android/text/method/
TextKeyListener.java 26 import android.text.InputType;
219 return InputType.TYPE_NULL;
  /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...]
  /frameworks/base/tests/UsageStatsTest/src/com/android/tests/usagestats/
UsageStatsActivity.java 27 import android.text.InputType;
96 input.setInputType(InputType.TYPE_CLASS_TEXT);
  /frameworks/support/emoji/core/tests/java/android/support/text/emoji/widget/
EmojiExtractTextLayoutTest.java 42 import android.text.InputType;
146 editorInfo.inputType = InputType.TYPE_CLASS_TEXT;
  /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
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 23 import android.text.InputType;
235 editorInfo.inputType = InputType.TYPE_CLASS_TEXT;
  /frameworks/base/core/java/android/app/
SearchDialog.java 33 import android.text.InputType;
396 int inputType = mSearchable.getInputType();
399 if ((inputType & InputType.TYPE_MASK_CLASS) == InputType.TYPE_CLASS_TEXT) {
402 inputType &= ~InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
404 inputType |= InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
407 mSearchAutoComplete.setInputType(inputType);
    [all...]
  /external/deqp/modules/gles2/functional/
es2fVertexArrayTest.cpp 75 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_FIXED, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE};
140 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE, /*Array::INPUTTYPE_UNSIGNED_SHORT, Array::INPUTTYPE_UNSIGNED_BYTE,*/ Array::INPUTTYPE_FIXED};
210 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_BYTE, Array::INPUTTYPE_FIXED};
281 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_BYTE, Array::INPUTTYPE_FIXED};
348 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE, Array::INPUTTYPE_UNSIGNED_SHORT, Array::INPUTTYPE_UNSIGNED_BYTE, Array::INPUTTYPE_FIXED};
410 Array::InputType inputTypes[] = {Array::INPUTTYPE_FLOAT, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_BYTE, Array::INPUTTYPE_UNSIGNED_SHORT, Array::INPUTTYPE_UNSIGNED_BYTE, Array::INPUTTYPE_FIXED};
690 << Array::inputTypeToString(spec.arrays[arrayNdx].inputType)
781 << Array::inputTypeToString(spec.arrays[arrayNdx].inputType)
814 Array::InputType inputTypes[] = {Array::INPUTTYPE_FIXED, Array::INPUTTYPE_BYTE, Array::INPUTTYPE_SHORT, Array::INPUTTYPE_UNSIGNED_BYTE, Array::INPUTTYPE_UNSIGNED_SHORT};

Completed in 3461 milliseconds

1 2 3 4 56 7 8 91011