/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/ |
D | ModelClass.java | 250 ArrayList<ModelMethod> matching = new ArrayList<ModelMethod>(); in getMethods() local 254 matching.add(method); in getMethods() 257 return matching.toArray(new ModelMethod[matching.size()]); in getMethods() 269 ArrayList<ModelMethod> matching = new ArrayList<ModelMethod>(); in getMethods() local 274 matching.add(method); in getMethods() 277 return matching.toArray(new ModelMethod[matching.size()]); in getMethods() 522 ArrayList<ModelMethod> matching = new ArrayList<ModelMethod>(); in findMethods() local 526 matching.add(method); in findMethods() 529 if (matching.isEmpty()) { in findMethods() 532 return matching; in findMethods()
|
/frameworks/base/services/core/java/com/android/server/ |
D | IntentResolver.java | 147 private ArrayList<F> collectFilters(F[] array, IntentFilter matching) { in collectFilters() argument 155 if (filterEquals(cur, matching)) { in collectFilters() 166 public ArrayList<F> findFilters(IntentFilter matching) { in findFilters() argument 167 if (matching.countDataSchemes() == 1) { in findFilters() 169 return collectFilters(mSchemeToFilter.get(matching.getDataScheme(0)), matching); in findFilters() 170 } else if (matching.countDataTypes() != 0 && matching.countActions() == 1) { in findFilters() 172 return collectFilters(mTypedActionToFilter.get(matching.getAction(0)), matching); in findFilters() 173 } else if (matching.countDataTypes() == 0 && matching.countDataSchemes() == 0 in findFilters() 174 && matching.countActions() == 1) { in findFilters() 176 return collectFilters(mActionToFilter.get(matching.getAction(0)), matching); in findFilters() [all …]
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
D | RootsCache.java | 450 final List<RootInfo> matching = new ArrayList<>(); in getMatchingRoots() local 515 matching.add(root); in getMatchingRoots() 517 return matching; in getMatchingRoots()
|
/frameworks/av/include/media/stagefright/ |
D | MediaCodecList.h | 77 Vector<AString> *matching);
|
/frameworks/base/docs/html/guide/topics/manifest/ |
D | data-element.jd | 92 <p class="note"><strong>Note</strong>: Scheme matching in the Android framework is 102 <p class="note"><strong>Note</strong>: host name matching in the Android framework is 164 <p class="note"><strong>Note</strong>: MIME type matching in the Android framework is
|
D | supports-gl-texture-element.jd | 57 time to ensure matching support on the device. However, other services
|
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/ |
D | SetterStore.java | 471 ArrayList<MultiAttributeSetter> matching = getMatchingMultiAttributeSetters(attributes, in getMultiAttributeSetterCalls() local 473 Collections.sort(matching, COMPARE_MULTI_ATTRIBUTE_SETTERS); in getMultiAttributeSetterCalls() 474 while (!matching.isEmpty()) { in getMultiAttributeSetterCalls() 475 MultiAttributeSetter bestMatch = matching.get(0); in getMultiAttributeSetterCalls() 477 removeConsumedAttributes(matching, bestMatch.attributes); in getMultiAttributeSetterCalls() 549 private static void removeConsumedAttributes(ArrayList<MultiAttributeSetter> matching, in removeConsumedAttributes() argument 551 for (int i = matching.size() - 1; i >= 0; i--) { in removeConsumedAttributes() 552 final MultiAttributeSetter setter = matching.get(i); in removeConsumedAttributes() 561 matching.remove(i); in removeConsumedAttributes()
|
/frameworks/base/docs/html/topic/libraries/testing-support-library/ |
D | index.jd | 257 <li>Flexible APIs for view and adapter matching in target apps. 258 For more information, see <a href="#espresso-matching">View matching</a>. 271 <h4 id="espresso-matching"> 272 View matching 315 Adapter matching
|
/frameworks/base/docs/html/training/wearables/data-layer/ |
D | events.jd | 241 Standard Android filter matching rules apply. You can specify multiple services 249 You can also match a literal path or path prefix. If you are matching by path 262 For more information on data filters and matching rules, see the API reference 268 <p>When matching intent filters, there are two important rules to remember:</p>
|
/frameworks/base/docs/html/training/testing/ui-testing/ |
D | espresso-testing.jd | 395 learn more about Hamcrest matching, see the 402 To improve the performance of your Espresso tests, specify the minimum matching information 446 with Hamcrest matching to search for a specific row in a list that contains a given string. 551 Asserts that there is no view matching the specified criteria in the current view hierarchy.
|
D | uiautomator-testing.jd | 320 <p>If more than one matching element is found, the first matching element in the layout hierarchy 325 you can chain together multiple properties to refine your search. If no matching UI element is
|
/frameworks/base/docs/html/guide/topics/resources/ |
D | overview.jd | 60 directory. Android automatically applies the appropriate resources by matching the
|
D | providing-resources.jd | 25 <li><a href="#BestMatch">How Android Finds the Best-matching Resource</a></li> 875 best-matching resource</a> (discussed below). If there are no alternative resources that match 1014 <h2 id="BestMatch">How Android Finds the Best-matching Resource</h2> 1051 best-matching resource.</p>
|
/frameworks/rs/api/ |
D | rs_graphics.spec | 359 operate on the texture bound at the matching slot. 376 matching slot.
|
/frameworks/base/docs/html/training/search/ |
D | search.jd | 198 <p>Search for a query by calling <code>getWordMatches()</code>. Any matching results are returned
|
/frameworks/base/docs/html/distribute/tools/promote/ |
D | device-art.jd | 173 + 'matching the target device\'s screen aspect ratio in either portrait or landscape.'; 175 + 'matching the target device\'s screen aspect ratio.'
|
/frameworks/base/docs/html/guide/components/ |
D | intents-filters.jd | 29 <li><a href="#imatch">Intent matching</a></li> 119 starts the matching activity (<em>Activity B</em>) by invoking its {@link 620 intent matching one of the two intent filters.</p> 886 <h3 id="imatch">Intent matching</h3> 895 <p>Your application can use intent matching in a similar way.
|
/frameworks/base/docs/html/training/app-indexing/ |
D | deep-linking.jd | 79 that has matching URIs to your app at runtime.</p>
|
/frameworks/base/docs/html/training/contacts-provider/ |
D | retrieve-names.jd | 55 Retrieve a list of contacts by matching the search string to all or part of the contact 61 Retrieve a list of contacts by matching the search string to a particular type of detail 67 Retrieve a list of contacts by matching the search string to any type of detail data,
|
/frameworks/base/docs/html/guide/topics/search/ |
D | adding-recent-query-suggestions.jd | 217 looks for matching suggestions.</p>
|
/frameworks/base/docs/html/training/implementing-navigation/ |
D | ancestral.jd | 76 for {@code android.support.PARENT_ACTIVITY}, matching the <a
|
D | temporal.jd | 92 for {@code android.support.PARENT_ACTIVITY}, matching the <a
|
/frameworks/base/docs/html/training/basics/network-ops/ |
D | xml.jd | 335 the matching <code>END_TAG</code>.</li> 345 the original <code>START_TAG</code> and its matching <code>END_TAG</code>. For
|
/frameworks/base/docs/html/about/versions/ |
D | android-2.0.1.jd | 330 matching did not work properly and has been fixed.</p>
|
/frameworks/native/vulkan/doc/implementors_guide/ |
D | implementors_guide.adoc | 83 .format = a VkFormat matching the format requested for the gralloc buffer
|