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

1 2 3

  /frameworks/rs/
rsProgramFragment.cpp 111 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false, 0);
115 tmp[1] = (uint32_t)inputType.get();
117 Allocation *constAlloc = Allocation::createAllocation(rsc, inputType.get(),
rsProgramVertex.cpp 186 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false, 0);
201 tmp[1] = (uint32_t)inputType.get();
207 Allocation *alloc = Allocation::createAllocation(rsc, inputType.get(),
rsFont.cpp 516 ObjectBaseRef<Type> inputType = Type::getTypeRef(mRSC, constInput.get(), 1, 0, 0, false, false, 0);
520 tmp[1] = (uint32_t)inputType.get();
524 mFontShaderFConstant.set(Allocation::createAllocation(mRSC, inputType.get(),
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
InputAttributes.java 19 import android.text.InputType;
39 final int inputType = null != editorInfo ? editorInfo.inputType : 0;
40 final int inputClass = inputType & InputType.TYPE_MASK_CLASS;
41 mInputType = inputType;
42 if (inputClass != InputType.TYPE_CLASS_TEXT) {
49 } else if (InputType.TYPE_NULL == inputType) {
51 Log.i(TAG, "InputType.TYPE_NULL is specified")
    [all...]
LatinIME.java 45 import android.text.InputType;
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 22 import android.text.InputType;
31 public class EditorInfo implements InputType, Parcelable {
34 * {@link InputType}.
36 * @see InputType
41 public int inputType = TYPE_NULL;
317 * {@link InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS},
318 * {@link InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD},
319 * {@link InputType#TYPE_NUMBER_VARIATION_NORMAL},
320 * {@link InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
330 switch (inputType&(TYPE_MASK_CLASS|TYPE_MASK_VARIATION))
    [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;
210 return a.inputType == b.inputType
KeyboardLayoutSet.java 29 import android.text.InputType;
374 final int inputType = editorInfo.inputType;
375 final int variation = inputType & InputType.TYPE_MASK_VARIATION;
377 switch (inputType & InputType.TYPE_MASK_CLASS) {
378 case InputType.TYPE_CLASS_NUMBER:
380 case InputType.TYPE_CLASS_DATETIME:
382 case InputType.TYPE_DATETIME_VARIATION_DATE
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
TextFieldsEditorView.java 24 import android.text.InputType;
214 int inputType = field.inputType;
215 fieldView.setInputType(inputType);
216 if (inputType == InputType.TYPE_CLASS_PHONE) {
  /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/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 24 import android.text.InputType;
151 final int inputType = InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_AUTO_CORRECT
152 | InputType.TYPE_TEXT_FLAG_MULTI_LINE;
153 mEditText.setInputType(inputType);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountType.java 444 public int inputType;
455 public EditField(String column, int titleRes, int inputType) {
457 this.inputType = inputType;
481 return (inputType & EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE) != 0;
490 + " inputType=" + inputType
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
SettingsValues.java 276 final int inputType = (editorInfo != null) ? editorInfo.inputType : 0;
278 && !InputTypeUtils.isPasswordInputType(inputType);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTextView.java 48 private int inputType;
171 this.inputType = type;
176 return this.inputType;
  /frameworks/base/core/java/android/app/
SearchDialog.java 33 import android.text.InputType;
399 int inputType = mSearchable.getInputType();
402 if ((inputType & InputType.TYPE_MASK_CLASS) == InputType.TYPE_CLASS_TEXT) {
405 inputType &= ~InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
407 inputType |= InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
410 mSearchAutoComplete.setInputType(inputType);
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DefaultSoftKeyboardJAJP.java 305 /** Whether the InputType is null */
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
StateTransformFactory.java     [all...]
  /external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java     [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java     [all...]
  /frameworks/base/core/java/android/widget/
AutoCompleteTextView.java 181 int inputType = getInputType();
182 if ((inputType&EditorInfo.TYPE_MASK_CLASS)
184 inputType |= EditorInfo.TYPE_TEXT_FLAG_AUTO_COMPLETE;
185 setRawInputType(inputType);
    [all...]
SearchView.java 40 import android.text.InputType;
298 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) {
402 mQueryTextView.setInputType(inputType);
    [all...]
Editor.java 54 import android.text.InputType;
541 // mInputType has been set from inputType, possibly modified by mInputMethod.
601 * It would be better to rely on the input type for everything. A password inputType should have
635 int inputType = mTextView.getInputType();
636 int klass = inputType & InputType.TYPE_MASK_CLASS;
637 int variation = inputType & InputType.TYPE_MASK_VARIATION;
640 if (klass == InputType.TYPE_CLASS_NUMBER ||
641 klass == InputType.TYPE_CLASS_PHONE |
    [all...]
TextView.java 52 import android.text.InputType;
751 int inputType = EditorInfo.TYPE_NULL;
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 35 import android.text.InputType;
203 * important part of this is {@link android.view.inputmethod.EditorInfo#inputType
204 * EditorInfo.inputType}; in particular, if this is
215 * update a soft keyboard to be appropriate for the new inputType.</p>
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SearchView.java 44 import android.text.InputType;
311 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) {
433 mQueryTextView.setInputType(inputType);
    [all...]

Completed in 1341 milliseconds

1 2 3