Searched defs:inputType (Results 1 - 11 of 11) sorted by relevance

/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DInputTypeActivity.java142 private View buildEntryView(int inputType, int label) { argument
148 editText.setInputType(inputType);
/frameworks/support/v4/ics/android/support/v4/widget/
H A DSearchViewCompatIcs.java50 public static void setInputType(View searchView, int inputType) { argument
51 ((SearchView) searchView).setInputType(inputType);
/frameworks/rs/
H A DrsProgramFragment.cpp111 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false, 0); local
115 tmp[1] = (uint32_t)inputType.get();
117 Allocation *constAlloc = Allocation::createAllocation(rsc, inputType.get(),
H A DrsProgramVertex.cpp186 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false, 0); local
201 tmp[1] = (uint32_t)inputType.get();
207 Allocation *alloc = Allocation::createAllocation(rsc, inputType.get(),
H A DrsFont.cpp516 ObjectBaseRef<Type> inputType = Type::getTypeRef(mRSC, constInput.get(), 1, 0, 0, false, false, 0); local
520 tmp[1] = (uint32_t)inputType.get();
524 mFontShaderFConstant.set(Allocation::createAllocation(mRSC, inputType.get(),
/frameworks/base/core/java/android/view/inputmethod/
H A DEditorInfo.java41 public int inputType = TYPE_NULL; field in class:EditorInfo
306 switch (inputType&(TYPE_MASK_CLASS|TYPE_MASK_VARIATION)) {
308 inputType = TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_EMAIL_ADDRESS
309 | (inputType&TYPE_MASK_FLAGS);
312 inputType = TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_PASSWORD
313 | (inputType&TYPE_MASK_FLAGS);
317 inputType = TYPE_CLASS_NUMBER
318 | (inputType&TYPE_MASK_FLAGS);
328 pw.println(prefix + "inputType=0x" + Integer.toHexString(inputType)
[all...]
/frameworks/support/v4/java/android/support/v4/widget/
H A DSearchViewCompat.java36 void setInputType(View searchView, int inputType); argument
69 public void setInputType(View searchView, int inputType) { argument
247 public void setInputType(View searchView, int inputType) { argument
248 SearchViewCompatIcs.setInputType(searchView, inputType);
313 * @param inputType the input type to set on the query text field
315 public static void setInputType(View searchView, int inputType) { argument
316 IMPL.setInputType(searchView, inputType);
/frameworks/base/core/java/android/widget/
H A DSearchView.java298 int inputType = a.getInt(R.styleable.SearchView_inputType, -1);
299 if (inputType != -1) {
300 setInputType(inputType);
397 * @param inputType the input type to set on the query text field
401 public void setInputType(int inputType) { argument
402 mQueryTextView.setInputType(inputType);
1084 int inputType = mSearchable.getInputType();
1087 if ((inputType & InputType.TYPE_MASK_CLASS) == InputType.TYPE_CLASS_TEXT) {
1090 inputType &= ~InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
1092 inputType |
[all...]
H A DTextView.java750 int inputType = EditorInfo.TYPE_NULL;
999 inputType = a.getInt(attr, EditorInfo.TYPE_NULL);
1070 inputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION);
1096 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1097 ? inputType
1108 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1109 ? inputType : EditorInfo.TYPE_CLASS_TEXT;
1110 } else if (inputType != EditorInfo.TYPE_NULL) {
1111 setInputType(inputType, true);
1113 singleLine = !isMultilineInputType(inputType);
4058 isPasswordInputType(int inputType) argument
4069 isVisiblePasswordInputType(int inputType) argument
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java311 int inputType = a.getInt(R.styleable.SearchView_android_inputType, -1);
312 if (inputType != -1) {
313 setInputType(inputType);
428 * @param inputType the input type to set on the query text field
432 public void setInputType(int inputType) { argument
433 mQueryTextView.setInputType(inputType);
1049 int inputType = mSearchable.getInputType();
1052 if ((inputType & InputType.TYPE_MASK_CLASS) == InputType.TYPE_CLASS_TEXT) {
1055 inputType &= ~InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
1057 inputType |
[all...]
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java1882 * @param inputType The input type.
1886 public void setInputType(int inputType) { argument
1888 mInputType = inputType;

Completed in 567 milliseconds