Home
last modified time | relevance | path

Searched refs:searched (Results 1 – 11 of 11) sorted by relevance

/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/
DPartner.java54 private static boolean searched = false; field in Partner
138 if (!searched) { in get()
170 searched = true; in get()
177 searched = false; in resetForTesting()
/frameworks/base/core/java/android/widget/
DNumberPicker.java2513 public List<AccessibilityNodeInfo> findAccessibilityNodeInfosByText(String searched, in findAccessibilityNodeInfosByText() argument
2515 if (TextUtils.isEmpty(searched)) { in findAccessibilityNodeInfosByText()
2518 String searchedLowerCase = searched.toLowerCase(); in findAccessibilityNodeInfosByText()
2538 return super.findAccessibilityNodeInfosByText(searched, virtualViewId); in findAccessibilityNodeInfosByText()
DTextView.java11097 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched, int flags) { in findViewsWithText() argument
11098 super.findViewsWithText(outViews, searched, flags); in findViewsWithText()
11100 && !TextUtils.isEmpty(searched) && !TextUtils.isEmpty(mText)) { in findViewsWithText()
11101 String searchedLowerCase = searched.toString().toLowerCase(); in findViewsWithText()
/frameworks/av/media/codec2/docs/
Ddoxygen.config782 # Note: If this tag is empty the current directory is searched.
814 # be searched for input files as well.
869 # searched for input files to be used with the \include or \dontinclude commands
2023 # INCLUDE_PATH will be searched if a #include is found.
2383 # When using plantuml, the specified paths are searched for files specified by
/frameworks/base/media/native/midi/include/
DDoxyfile.orig791 # Note: If this tag is empty the current directory is searched.
864 # be searched for input files as well.
919 # searched for input files to be used with the \include or \dontinclude commands
2073 # INCLUDE_PATH will be searched if a #include is found.
2431 # When using plantuml, the specified paths are searched for files specified by
DDoxyfile791 # Note: If this tag is empty the current directory is searched.
864 # be searched for input files as well.
919 # searched for input files to be used with the \include or \dontinclude commands
2073 # INCLUDE_PATH will be searched if a #include is found.
2431 # When using plantuml, the specified paths are searched for files specified by
/frameworks/av/media/libaaudio/
DDoxyfile744 # Note: If this tag is empty the current directory is searched.
778 # be searched for input files as well.
833 # searched for input files to be used with the \include or \dontinclude commands
1918 # INCLUDE_PATH will be searched if a #include is found.
DDoxyfile.orig744 # Note: If this tag is empty the current directory is searched.
769 # be searched for input files as well.
824 # searched for input files to be used with the \include or \dontinclude commands
1909 # INCLUDE_PATH will be searched if a #include is found.
/frameworks/native/docs/
DDoxyfile734 # should be searched for input files as well. Possible values are YES and NO.
783 # searched for input files to be used with the \include or \dontinclude
1599 # pointed to by INCLUDE_PATH will be searched when a #include is found.
/frameworks/wilhelm/doc/
DDoxyfile604 # should be searched for input files as well. Possible values are YES and NO.
651 # searched for input files to be used with the \include or \dontinclude
/frameworks/base/core/java/android/view/
DView.java12663 public void findViewsWithText(ArrayList<View> outViews, CharSequence searched,
12670 && (searched != null && searched.length() > 0)
12672 String searchedLowerCase = searched.toString().toLowerCase();