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

1 2 3 4 56 7 8 9

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DistracterFilterCheckingExactMatchesAndSuggestions.java 27 import android.text.InputType;
127 editorInfo.inputType = InputType.TYPE_CLASS_TEXT;
CapsModeUtils.java 19 import android.text.InputType;
84 * to match those in {@link InputType}.
  /frameworks/base/core/java/android/app/
SearchDialog.java 33 import android.text.InputType;
398 int inputType = mSearchable.getInputType();
401 if ((inputType & InputType.TYPE_MASK_CLASS) == InputType.TYPE_CLASS_TEXT) {
404 inputType &= ~InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
406 inputType |= InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
409 mSearchAutoComplete.setInputType(inputType);
    [all...]
SearchableInfo.java 33 import android.text.InputType;
321 InputType.TYPE_CLASS_TEXT |
322 InputType.TYPE_TEXT_VARIATION_NORMAL);
733 * {@link InputType#TYPE_CLASS_TEXT} if not specified (which is appropriate
    [all...]
  /external/deqp/modules/glshared/
glsVertexArrayTests.cpp 80 std::string Array::inputTypeToString(InputType type)
188 int Array::inputTypeSize (InputType type)
215 static bool inputTypeIsFloatType (Array::InputType type)
552 void ContextArray::bind (int attribNdx, int offset, int size, InputType inputType, OutputType outType, bool normalized, int stride)
557 m_inputType = inputType;
686 GLenum ContextArray::inputTypeToGL (Array::InputType type)
    [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};
es2fShaderMatrixTests.cpp 101 enum InputType
112 ShaderInput (InputType inputType_, DataType dataType_, Precision precision_)
113 : inputType (inputType_)
119 InputType inputType;
651 InputType in0Type = in0.inputType == INPUTTYPE_DYNAMIC ? INPUTTYPE_DYNAMIC : INPUTTYPE_CONST;
652 InputType in1Type = in1.inputType == INPUTTYPE_DYNAMIC ? INPUTTYPE_DYNAMIC : INPUTTYPE_CONST;
775 bool isInDynMat0 = isDataTypeMatrix(m_in0.dataType) && m_in0.inputType == INPUTTYPE_DYNAMIC
    [all...]
  /packages/apps/Stk/src/com/android/stk/
StkInputActivity.java 28 import android.text.InputType;
386 mTextIn.setInputType(InputType.TYPE_CLASS_NUMBER
387 | InputType.TYPE_NUMBER_VARIATION_PASSWORD);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
BluetoothPairingDialog.java 38 import android.text.InputType;
294 mTextInput.setInputType(InputType.TYPE_CLASS_NUMBER);
301 mTextInput.setInputType(InputType.TYPE_CLASS_TEXT);
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
ImageInputType.cpp 48 PassRefPtrWillBeRawPtr<InputType> ImageInputType::create(HTMLInputElement& element)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLInputElement.h 41 class InputType;
204 // Functions for InputType classes.
372 RefPtrWillBeMember<InputType> m_inputType;
  /external/eigen/unsupported/Eigen/src/LevenbergMarquardt/
LevenbergMarquardt.h 49 typedef Matrix<Scalar,InputsAtCompileTime,1> InputType;
61 //int operator()(const InputType &x, ValueType& fvec) { }
64 //int df(const InputType &x, JacobianType& fjac) { }
73 typedef Matrix<Scalar,Dynamic,1> InputType;
88 //int operator()(const InputType &x, ValueType& fvec) { }
91 //int df(const InputType &x, JacobianType& fjac) { }
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 24 import android.text.InputType;
333 editorInfo.inputType = InputType.TYPE_CLASS_TEXT;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiConfigController.java 46 import android.text.InputType;
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ChooseLockPassword.java 34 import android.text.InputType;
237 : (InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_VARIATION_PASSWORD));
  /frameworks/base/core/java/android/widget/
SearchView.java 40 import android.text.InputType;
344 final int inputType = a.getInt(R.styleable.SearchView_inputType, -1);
345 if (inputType != -1) {
346 setInputType(inputType);
448 * @param inputType the input type to set on the query text field
452 public void setInputType(int inputType) {
453 mSearchSrcTextView.setInputType(inputType);
    [all...]
NumberPicker.java 32 import android.text.InputType;
724 mInputText.setRawInputType(InputType.TYPE_CLASS_NUMBER);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SearchView.java 48 import android.text.InputType;
343 final int inputType = a.getInt(R.styleable.SearchView_android_inputType, -1);
344 if (inputType != -1) {
345 setInputType(inputType);
464 * @param inputType the input type to set on the query text field
466 public void setInputType(int inputType) {
467 mQueryTextView.setInputType(inputType);
    [all...]
  /external/chromium_org/v8/src/arm/
simulator-arm.h 353 template<class InputType, int register_size>
354 void SetVFPRegister(int reg_index, const InputType& value);
  /packages/apps/Contacts/src/com/android/contacts/editor/
TextFieldsEditorView.java 24 import android.text.InputType;
246 int inputType = field.inputType;
247 fieldView.setInputType(inputType);
248 if (inputType == InputType.TYPE_CLASS_PHONE) {
  /external/clang/lib/Driver/
Driver.cpp     [all...]
ToolChains.h 246 types::ID InputType) const override;
350 types::ID InputType) const override;
  /external/deqp/modules/gles2/stress/
es2sDrawTests.cpp 60 spec.attribs[0].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT;
71 spec.attribs[1].inputType = gls::DrawTestSpec::INPUTTYPE_FLOAT;
279 gls::DrawTestSpec::InputType inputTypes[] =
343 attribSpec.inputType = random.chooseWeighted<gls::DrawTestSpec::InputType> (DE_ARRAY_BEGIN(inputTypes), DE_ARRAY_END(inputTypes), inputTypeWeights.weights);
358 if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::inputTypeSize(attribSpec.inputType) > attribSpec.stride)
  /external/deqp/modules/gles31/stress/
es31sDrawTests.cpp 388 gls::DrawTestSpec::InputType inputTypes[] =
480 attribSpec.inputType = random.chooseWeighted<gls::DrawTestSpec::InputType> (DE_ARRAY_BEGIN(inputTypes), DE_ARRAY_END(inputTypes), inputTypeWeights.weights);
495 if (attribSpec.stride && attribSpec.componentCount * gls::DrawTestSpec::inputTypeSize(attribSpec.inputType) > attribSpec.stride)
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PasswordTextView.java 33 import android.text.InputType;
324 info.setInputType(InputType.TYPE_NUMBER_VARIATION_PASSWORD);

Completed in 1193 milliseconds

1 2 3 4 56 7 8 9