HomeSort by relevance Sort by last modified time
    Searched refs:InputType (Results 76 - 100 of 124) sorted by null

1 2 34 5

  /packages/apps/VideoEditor/src/com/android/videoeditor/
AlertDialogs.java 26 import android.text.InputType;
87 * @param inputType Input type
96 DialogInterface.OnCancelListener cancelListener, int inputType, int maxChars,
119 if (inputType != InputType.TYPE_NULL) {
120 textInput.setInputType(inputType);
ProjectsActivity.java 25 import android.text.InputType;
222 InputType.TYPE_NULL,
  /cts/tests/tests/text/src/android/text/method/cts/
QwertyKeyListenerTest.java 29 import android.text.InputType;
256 int expected = InputType.TYPE_CLASS_TEXT;
260 expected = InputType.TYPE_CLASS_TEXT
261 | InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS;
TextKeyListenerTest.java 32 import android.text.InputType;
341 int expected = InputType.TYPE_CLASS_TEXT;
345 expected = InputType.TYPE_CLASS_TEXT
346 | InputType.TYPE_TEXT_FLAG_CAP_CHARACTERS;
BaseKeyListenerTest.java 32 import android.text.InputType;
215 return InputType.TYPE_CLASS_DATETIME
216 | InputType.TYPE_DATETIME_VARIATION_DATE;
  /external/webkit/Source/WebCore/html/
MonthInputType.cpp 49 PassOwnPtr<InputType> MonthInputType::create(HTMLInputElement* element)
TextFieldInputType.cpp 109 return (event->type() == eventNames().textInputEvent && event->isTextEvent() && static_cast<TextEvent*>(event)->data() == "\n") || InputType::shouldSubmitImplicitly(event);
RangeInputType.cpp 63 PassOwnPtr<InputType> RangeInputType::create(HTMLInputElement* element)
248 InputType::accessKeyAction(sendToAnyElement);
257 InputType::minOrMaxAttributeChanged();
FileInputType.cpp 47 PassOwnPtr<InputType> FileInputType::create(HTMLInputElement* element)
ImageInputType.cpp 40 PassOwnPtr<InputType> ImageInputType::create(HTMLInputElement* element)
NumberInputType.cpp 56 PassOwnPtr<InputType> NumberInputType::create(HTMLInputElement* element)
  /packages/apps/Browser/src/com/android/browser/preferences/
GeneralPreferencesFragment.java 28 import android.text.InputType;
120 editText.setInputType(InputType.TYPE_CLASS_TEXT
121 | InputType.TYPE_TEXT_VARIATION_URI);
  /packages/apps/Calculator/src/com/android/calculator2/
CalculatorEditText.java 24 import android.text.InputType;
47 setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_FLAG_NO_SUGGESTIONS);
  /packages/apps/Settings/src/com/android/settings/
ConfirmLockPassword.java 31 import android.text.InputType;
120 : (InputType.TYPE_CLASS_NUMBER | InputType.TYPE_NUMBER_VARIATION_PASSWORD));
UserDictionarySettings.java 29 import android.text.InputType;
243 editText.setInputType(InputType.TYPE_CLASS_TEXT
244 | InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Utils.java 28 import android.text.InputType;
577 final int inputType = editorInfo.inputType;
578 final int variation = inputType & InputType.TYPE_MASK_VARIATION;
580 switch (inputType & InputType.TYPE_MASK_CLASS) {
581 case InputType.TYPE_CLASS_NUMBER:
582 case InputType.TYPE_CLASS_DATETIME:
584 case InputType.TYPE_CLASS_PHONE
    [all...]
LatinIME.java 36 import android.text.InputType;
183 // These variables are initialized according to the {@link EditorInfo#inputType}.
728 : String.format("inputType=0x%08x imeOptions=0x%08x",
729 attribute.inputType, attribute.imeOptions)));
750 final int inputType = (attribute != null) ? attribute.inputType : 0;
751 voiceIme.resetVoiceStates(InputTypeCompatUtils.isPasswordInputType(inputType)
752 || InputTypeCompatUtils.isVisiblePasswordInputType(inputType));
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GridLayout0.java 26 import static android.text.InputType.*;
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothPairingDialog.java 29 import android.text.InputType;
212 mPairingView.setInputType(InputType.TYPE_CLASS_NUMBER);
379 mPairingView.setInputType(InputType.TYPE_CLASS_TEXT);
381 mPairingView.setInputType(InputType.TYPE_CLASS_NUMBER);
  /frameworks/base/core/java/android/text/method/
TextKeyListener.java 29 import android.text.InputType;
210 return InputType.TYPE_NULL;
  /frameworks/base/core/tests/coretests/src/android/widget/
TextViewWordLimitsTest.java 21 import android.text.InputType;
50 mTv.setInputType(InputType.TYPE_CLASS_TEXT);
  /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...]
  /external/clang/lib/Driver/
Driver.cpp 861 types::ID InputType = types::TY_Nothing;
873 if (InputType == types::TY_Nothing) {
    [all...]
ToolChains.h 99 types::ID InputType) const;
306 types::ID InputType) const;
  /packages/apps/Contacts/src/com/android/contacts/editor/
TextFieldsEditorView.java 37 import android.text.InputType;
194 int inputType = field.inputType;
195 fieldView.setInputType(inputType);
196 if (inputType == InputType.TYPE_CLASS_PHONE) {

Completed in 991 milliseconds

1 2 34 5