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

1 2

  /frameworks/base/libs/rs/
rsProgramFragment.cpp 105 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false);
109 tmp[1] = (uint32_t)inputType.get();
111 Allocation *constAlloc = Allocation::createAllocation(rsc, inputType.get(),
rsProgramVertex.cpp 176 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1, 0, 0, false, false);
190 tmp[1] = (uint32_t)inputType.get();
196 Allocation *alloc = Allocation::createAllocation(rsc, inputType.get(),
rsFont.cpp 500 ObjectBaseRef<Type> inputType = Type::getTypeRef(mRSC, constInput.get(), 1, 0, 0, false, false);
504 tmp[1] = (uint32_t)inputType.get();
508 mFontShaderFConstant.set(Allocation::createAllocation(mRSC, inputType.get(),
  /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;
277 * {@link InputType#TYPE_TEXT_VARIATION_WEB_EMAIL_ADDRESS},
278 * {@link InputType#TYPE_TEXT_VARIATION_WEB_PASSWORD},
279 * {@link InputType#TYPE_NUMBER_VARIATION_NORMAL},
280 * {@link InputType#TYPE_NUMBER_VARIATION_PASSWORD}.
290 switch (inputType&(TYPE_MASK_CLASS|TYPE_MASK_VARIATION))
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
KeyboardId.java 68 final int inputType = (attribute != null) ? attribute.inputType : 0;
76 this.mNavigateAction = InputTypeCompatUtils.isWebInputType(inputType);
79 this.mPasswordInput = InputTypeCompatUtils.isPasswordInputType(inputType)
80 || InputTypeCompatUtils.isVisiblePasswordInputType(inputType);
  /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) {
  /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/apps/Contacts/src/com/android/contacts/model/
AccountType.java 408 public int inputType;
419 public EditField(String column, int titleRes, int inputType) {
421 this.inputType = inputType;
445 return (inputType & EditorInfo.TYPE_TEXT_FLAG_MULTI_LINE) != 0;
454 + " inputType=" + inputType
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DefaultSoftKeyboardJAJP.java 298 /** Whether the InputType is null */
694 int inputType = editor.inputType;
    [all...]
  /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/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...]
Settings.java 304 final int inputType = (attribute != null) ? attribute.inputType : 0;
306 && !InputTypeCompatUtils.isPasswordInputType(inputType);
    [all...]
LatinIME.java 36 import android.text.InputType;
183 // These variables are initialized according to the {@link EditorInfo#inputType}.
726 : String.format("inputType=0x%08x imeOptions=0x%08x",
727 attribute.inputType, attribute.imeOptions)));
748 final int inputType = (attribute != null) ? attribute.inputType : 0;
749 voiceIme.resetVoiceStates(InputTypeCompatUtils.isPasswordInputType(inputType)
750 || InputTypeCompatUtils.isVisiblePasswordInputType(inputType));
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
Descriptors.java     [all...]
  /frameworks/base/core/java/android/webkit/
WebTextView.java 37 import android.text.InputType;
    [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 41 import android.text.InputType;
296 int inputType = a.getInt(R.styleable.SearchView_inputType, -1);
297 if (inputType != -1) {
298 setInputType(inputType);
385 * @param inputType the input type to set on the query text field
389 public void setInputType(int inputType) {
390 mQueryTextView.setInputType(inputType);
    [all...]
TextView.java 53 import android.text.InputType;
559 int inputType = EditorInfo.TYPE_NULL;
810 inputType = a.getInt(attr, mInputType);
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 34 import android.text.InputType;
201 * important part of this is {@link android.view.inputmethod.EditorInfo#inputType
202 * EditorInfo.inputType}; in particular, if this is
213 * update a soft keyboard to be appropriate for the new inputType.</p>
    [all...]
  /prebuilt/sdk/14/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/12/
android.jar 
  /prebuilt/sdk/13/
android.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 651 milliseconds

1 2