Searched defs:inputType (Results 1 - 16 of 16) 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.cpp112 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1); local
116 tmp[1] = (uintptr_t)inputType.get();
118 Allocation *constAlloc = Allocation::createAllocation(rsc, inputType.get(),
H A DrsProgramVertex.cpp186 ObjectBaseRef<Type> inputType = Type::getTypeRef(rsc, constInput.get(), 1); local
201 tmp[1] = (uintptr_t)inputType.get();
207 Allocation *alloc = Allocation::createAllocation(rsc, inputType.get(),
H A DrsFont.cpp515 ObjectBaseRef<Type> inputType = Type::getTypeRef(mRSC, constInput.get(), 1); local
519 tmp[1] = (uintptr_t)inputType.get();
523 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
359 switch (inputType&(TYPE_MASK_CLASS|TYPE_MASK_VARIATION)) {
361 inputType = TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_EMAIL_ADDRESS
362 | (inputType&TYPE_MASK_FLAGS);
365 inputType = TYPE_CLASS_TEXT|TYPE_TEXT_VARIATION_PASSWORD
366 | (inputType&TYPE_MASK_FLAGS);
370 inputType = TYPE_CLASS_NUMBER
371 | (inputType&TYPE_MASK_FLAGS);
381 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/support/v4/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatKitKat.java95 public static void setInputType(Object info, int inputType) { argument
96 ((AccessibilityNodeInfo) info).setInputType(inputType);
/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyInterfaceImpl.cpp282 AudioPolicyInterface::input_type_t inputType; local
298 &inputType);
303 switch (inputType) {
323 (int)inputType);
/frameworks/base/media/java/android/media/tv/
H A DTvInputInfo.java235 int inputType = sHardwareTypeToTvInputType.get(hardwareInfo.getType(), TYPE_TUNER);
238 hardwareInfo), null, inputType, true, 0, label, null, iconUri, false);
257 int inputType = sHardwareTypeToTvInputType.get(hardwareInfo.getType(), TYPE_TUNER);
260 hardwareInfo), null, inputType, true, labelRes, null, icon, null, false);
264 String parentId, int inputType, boolean isHardwareInput, int labelRes, String label,
291 TvInputInfo input = new TvInputInfo(service, id, parentId, inputType, isHardwareInput);
299 if (inputType == TYPE_TUNER && TextUtils.isEmpty(input.mSetupActivity)) {
263 createTvInputInfo(Context context, ResolveInfo service, String id, String parentId, int inputType, boolean isHardwareInput, int labelRes, String label, Icon icon, Uri iconUri, boolean isConnectedToHdmiSwitch) argument
/frameworks/base/core/java/android/widget/
H A DSearchView.java343 final int inputType = a.getInt(R.styleable.SearchView_inputType, -1);
344 if (inputType != -1) {
345 setInputType(inputType);
447 * @param inputType the input type to set on the query text field
451 public void setInputType(int inputType) { argument
452 mSearchSrcTextView.setInputType(inputType);
1140 int inputType = mSearchable.getInputType();
1143 if ((inputType & InputType.TYPE_MASK_CLASS) == InputType.TYPE_CLASS_TEXT) {
1146 inputType &= ~InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
1148 inputType |
[all...]
H A DTextView.java826 int inputType = EditorInfo.TYPE_NULL;
1084 inputType = a.getInt(attr, EditorInfo.TYPE_NULL);
1180 inputType & (EditorInfo.TYPE_MASK_CLASS | EditorInfo.TYPE_MASK_VARIATION);
1206 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1207 ? inputType
1218 mEditor.mInputType = inputType != EditorInfo.TYPE_NULL
1219 ? inputType : EditorInfo.TYPE_CLASS_TEXT;
1220 } else if (inputType != EditorInfo.TYPE_NULL) {
1221 setInputType(inputType, true);
1223 singleLine = !isMultilineInputType(inputType);
4576 isPasswordInputType(int inputType) argument
4587 isVisiblePasswordInputType(int inputType) argument
[all...]
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java600 public void setInputType(Object info, int inputType); argument
1156 public void setInputType(Object info, int inputType) { argument
1733 public void setInputType(Object info, int inputType) { argument
1734 AccessibilityNodeInfoCompatKitKat.setInputType(info, inputType);
3492 * @param inputType The input type.
3496 public void setInputType(int inputType) { argument
3497 IMPL.setInputType(mInfo, inputType);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSearchView.java355 final int inputType = a.getInt(R.styleable.SearchView_android_inputType, -1);
356 if (inputType != -1) {
357 setInputType(inputType);
476 * @param inputType the input type to set on the query text field
478 public void setInputType(int inputType) { argument
479 mSearchSrcTextView.setInputType(inputType);
1074 int inputType = mSearchable.getInputType();
1077 if ((inputType & InputType.TYPE_MASK_CLASS) == InputType.TYPE_CLASS_TEXT) {
1080 inputType &= ~InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE;
1082 inputType |
[all...]
/frameworks/av/services/audiopolicy/managerdefault/
H A DAudioPolicyManager.cpp1293 input_type_t *inputType)
1300 *inputType = API_INPUT_INVALID;
1330 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1345 *inputType = API_INPUT_LEGACY;
1349 *inputType = API_INPUT_MIX_EXT_POLICY_REROUTE;
1353 *inputType = API_INPUT_MIX_CAPTURE;
1355 *inputType = API_INPUT_TELEPHONY_RX;
1357 *inputType = API_INPUT_LEGACY;
1453 ALOGV("getInputForAttr() returns input type = %d", *inputType);
1284 getInputForAttr(const audio_attributes_t *attr, audio_io_handle_t *input, audio_session_t session, uid_t uid, uint32_t samplingRate, audio_format_t format, audio_channel_mask_t channelMask, audio_input_flags_t flags, audio_port_handle_t selectedDeviceId, input_type_t *inputType) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2401 * @param inputType The input type.
2405 public void setInputType(int inputType) { argument
2407 mInputType = inputType;

Completed in 685 milliseconds