/frameworks/ex/common/java/com/android/common/ |
Search.java | 60 * @param searchable Information about how to get the suggestions. 64 public static Cursor getSuggestions(Context context, SearchableInfo searchable, String query) { 65 return getSuggestions(context, searchable, query, -1); 71 * @param searchable Information about how to get the suggestions. 77 public static Cursor getSuggestions(Context context, SearchableInfo searchable, 79 if (searchable == null) { 83 String authority = searchable.getSuggestAuthority(); 95 final String contentPath = searchable.getSuggestPath(); 104 String selection = searchable.getSuggestSelection();
|
/packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/ |
SourceLatency.java | 60 SearchableInfo searchable = mSearchManager.getSearchableInfo(componentName); local 61 if (searchable == null || searchable.getSuggestAuthority() == null) { 62 throw new RuntimeException("Component is not searchable: " 65 return searchable; 92 final SearchableInfo searchable = getSearchable(componentName); local 99 long t = checkSourceInternal(src, searchable, prefix); 134 SearchableInfo searchable = getSearchable(componentName); local 135 return checkSourceInternal(src, searchable, query); 138 private long checkSourceInternal(String src, SearchableInfo searchable, String query) [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/ |
SearchUtil.java | 49 * @param searchable The {@link android.app.SearchableInfo} the TV app implements 53 public static boolean verifySearchResult(Context context, SearchableInfo searchable, 55 Uri.Builder uriBuilder = getSearchUri(searchable).buildUpon(); 56 String selection = searchable.getSuggestSelection(); 92 // that can be searchable. 116 private static Uri getSearchUri(SearchableInfo searchable) { 117 if (searchable == null) { 120 String authority = searchable.getSuggestAuthority(); 128 final String contentPath = searchable.getSuggestPath();
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch2/ |
domain.py | 257 searchable=False, sortable=False, 287 :type searchable: bool 288 :param searchable: A boolean to indicate whether search 323 'SearchEnabled': searchable, 334 'SearchEnabled': searchable 346 'SearchEnabled': searchable, 357 'SearchEnabled': searchable 368 'SearchEnabled': searchable, 379 'SearchEnabled': searchable 390 'SearchEnabled': searchable, [all...] |
/frameworks/base/core/java/android/app/ |
SearchManager.java | 127 * with the keycode attribute in the actionkey element of your searchable.xml configuration 498 * Components should handle this intent if they cache any searchable data and wish to stay [all...] |
SearchableInfo.java | 46 * See <a href="{@docRoot}guide/topics/search/searchable-config.html">Searchable Configuration</a> 61 private static final String MD_LABEL_SEARCHABLE = "android.app.searchable"; 62 private static final String MD_XML_ELEMENT_SEARCHABLE = "searchable"; 126 * Gets the component name of the searchable activity. 246 * Get the context for the searchable activity. 249 * @return Returns a context related to the searchable activity 304 * @param activityContext runtime context for the activity that the searchable info is about. 307 * @param cName The component name of the searchable activity 314 com.android.internal.R.styleable.Searchable); 535 SearchableInfo searchable = getActivityMetaData(userContext, xml, cName); local [all...] |
/frameworks/base/services/core/java/com/android/server/search/ |
Searchables.java | 46 * This class maintains the information about all searchable activities. 97 * presence of a "android.app.searchable" meta-data attribute. 102 * case the factory will "redirect" and return the searchable data.</li> 107 * TODO: it might make sense to implement the searchable reference as 110 * TODO: can we skip the constructor step if it's a non-searchable? 115 * activity does not define any explicit searchable metadata. 125 // Step 2. See if the current activity references a searchable. 128 // References must point directly to searchable activities. 185 * activities that are searchable, by iterating the entire set of 239 SearchableInfo searchable = SearchableInfo.getActivityMetaData(mContext, ai local 243 newSearchablesMap.put(searchable.getSearchActivity(), searchable); local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/otherxml/descriptors/ |
OtherXmlDescriptors.java | 41 * Currently supports the <searchable> and <preferences> root nodes. 49 /** The root document descriptor for both searchable and preferences. */ 52 /** The root document descriptor for searchable. */ 61 /** @return the root descriptor for both searchable and preferences. */ 72 /** @return the root descriptor for searchable. */ 135 * @param searchableStyleMap The map style=>attributes for <searchable> from the attrs.xml file 148 ElementDescriptor searchable = createSearchable(searchableStyleMap, xmlns); 152 if (searchable != null) { 153 list.add(searchable); 154 mSearchDescriptor.setChildren(new ElementDescriptor[]{ searchable }); [all...] |
/frameworks/base/core/java/android/widget/ |
SearchView.java | 403 * @param searchable a SearchableInfo can be retrieved from the SearchManager, for a specific 406 public void setSearchableInfo(SearchableInfo searchable) { 407 mSearchable = searchable; 1331 SearchableInfo searchable = mSearchable; local [all...] |
SuggestionsAdapter.java | 99 public SuggestionsAdapter(Context context, SearchView searchView, SearchableInfo searchable, 106 mSearchable = searchable;
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudsearch/ |
domain.py | 242 default='', facet=False, result=False, searchable=False, 270 :type searchable: bool 271 :param searchable: A boolean to indicate whether search 313 searchable=searchable,
|
layer1.py | 124 searchable=False, source_attributes=None): 160 :type searchable: bool 161 :param searchable: A boolean to indicate whether search 210 params['IndexField.LiteralOptions.SearchEnabled'] = do_bool(searchable) [all...] |
/frameworks/support/v7/appcompat/src/android/support/v7/widget/ |
SuggestionsAdapter.java | 93 public SuggestionsAdapter(Context context, SearchView searchView, SearchableInfo searchable, 99 mSearchable = searchable; 713 Cursor getSearchManagerSuggestions(SearchableInfo searchable, String query, int limit) { 714 if (searchable == null) { 718 String authority = searchable.getSuggestAuthority(); 730 final String contentPath = searchable.getSuggestPath(); 739 String selection = searchable.getSuggestSelection();
|
SearchView.java | 434 * @param searchable a SearchableInfo can be retrieved from the SearchManager, for a specific 437 public void setSearchableInfo(SearchableInfo searchable) { 438 mSearchable = searchable; 1285 SearchableInfo searchable = mSearchable; local [all...] |
/packages/apps/TV/common/src/com/android/tv/common/recording/ |
RecordedProgram.java | 337 public Builder setSearchable(boolean searchable) { 338 mSearchable = searchable; 490 Uri posterArt, Uri thumbnail, boolean searchable, Uri dataUri, long dataBytes, 515 mSearchable = searchable;
|
/prebuilts/sdk/current/support/v7/appcompat/libs/ |
android-support-v7-appcompat.jar | |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.apache.lucene_1.9.1.v20100518-1140.jar | |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_construction/ |
parser.js | 26 var SEARCHABLE_INDEX_DEFAULT_PROMPT = 'This is a searchable index. Enter search keywords: ', 307 //Searchable index building utils (<isindex> tag) [all...] |
/external/chromium-trace/catapult/third_party/vinn/third_party/parse5/ |
parse5.js | [all...] |
/external/robolectric/v3/runtime/ |
android-all-4.1.2_r1-robolectric-0.jar | |
android-all-4.2.2_r1.2-robolectric-0.jar | |
android-all-4.3_r2-robolectric-0.jar | |
/prebuilts/misc/common/groovy/ |
groovy-all-1.7.0.jar | |
/prebuilts/sdk/12/ |
android.jar | |
/prebuilts/sdk/14/ |
android.jar | |