Searched refs:it (Results 1 - 25 of 320) sorted by last modified time

1234567891011>>

/frameworks/wilhelm/src/
H A DAndroid.mk198 # For Brillo, we do not want this dependency as it significantly increases the
200 # present in Brillo), so it doesn't really make sense to have it anyways. See
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/tv-provider/
H A DAndroid.mk18 # Applications that use this library must include it with
/frameworks/support/v13/
H A DAndroid.mk33 # android-support-v13, so we need to keep it static until they can be fixed.
/frameworks/support/v4/
H A DAndroid.mk29 # android-support-v4, so we need to keep it static until they can be fixed.
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DOverlayListView.java83 Iterator<OverlayObject> it = mOverlayObjects.iterator();
84 while (it.hasNext()) {
85 OverlayObject object = it.next();
91 it.remove();
/frameworks/support/buildSrc/
H A Dinit.gradle27 throw new RuntimeException("variable supportRootFolder is not set. you must set it before" +
102 * The build server will copy the contents of DIST_DIR to somewhere and make it available.
109 // the build server does not pass the build number so we infer it from the last folder of
176 && v.sourceSets.any { !it.java.sourceFiles.isEmpty() }) {
191 def version = jacocoAntArtifacts.find { "org.jacoco.ant".equals(it.name) }
196 from(jacocoAntArtifacts.collect { zipTree(it.getFile()) }) {
274 // the module's path to ensure it is unique.
292 // first one is always :, drop it.
307 // The archivesBaseName isn't available initially, so set it now
317 p.tasks.findAll { it instanceo
[all...]
/frameworks/support/buildSrc/src/main/groovy/android/support/doclava/
H A DDoclavaTask.groovy157 // Make it serializable.
162 // Make it serializable.
167 // Make it serializable.
191 .setValue(getDoclavaHidden().collect({[it.toString()]}))
193 .setValue(getDoclavaWarnings().collect({[it.toString()]}))
195 .setValue(getDoclavaErrors().collect({[it.toString()]}))
200 .setValue(hiddenPackages.collect({[it.toString()]}))
/frameworks/support/compat/java/android/support/v4/app/
H A DNotificationManagerCompat.java205 // Cancel this notification in notification manager if it just transitioned to being
263 // Parse the string again if it is different from the last time this method was called.
439 Iterator<Map.Entry<ComponentName, ListenerRecord>> it =
441 while (it.hasNext()) {
442 Map.Entry<ComponentName, ListenerRecord> entry = it.next();
448 it.remove();
/frameworks/support/compat/java/android/support/v4/util/
H A DArraySet.java44 * standard Java containers it will shrink its array as items are removed from it. Currently
46 * item, it may reduce the capacity to better match the current size. In the future an
70 * list; the second entry is a pointer to the int[] hash code array for it.
238 * will grow once items are added to it.
326 * @return Returns the index of the value if it exists, else a negative integer.
351 * Adds the specified object to this set. The set is not modified if it
422 // Cannot optimize since it would break the sorted order - fallback to add()
490 // Shrunk enough to reduce size of arrays. We don't allow it to
584 * set, it check
[all...]
H A DMapCollections.java200 Iterator<?> it = collection.iterator();
201 while (it.hasNext()) {
202 if (!contains(it.next())) {
379 Iterator<?> it = collection.iterator();
380 while (it.hasNext()) {
381 if (!contains(it.next())) {
457 Iterator<?> it = collection.iterator();
458 while (it.hasNext()) {
459 if (!map.containsKey(it.next())) {
468 Iterator<?> it
[all...]
/frameworks/support/exifinterface/
H A DAndroid.mk18 # Applications that use this library must include it with
/frameworks/support/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DPlaybackSeekAsyncDataProvider.java136 for (Iterator<Map.Entry<Integer, Bitmap>> it =
137 mPrefetchCache.snapshot().entrySet().iterator(); it.hasNext(); ) {
138 Map.Entry<Integer, Bitmap> entry = it.next();
180 for (Iterator<Integer> it = mCache.snapshot().keySet().iterator(); it.hasNext();) {
181 Integer key = it.next();
189 for (Iterator<Integer> it = mPrefetchCache.snapshot().keySet().iterator(); it.hasNext();) {
190 Integer key = it.next();
/frameworks/support/percent/
H A DAndroid.mk18 # Applications that use this library must include it with
/frameworks/support/recommendation/
H A DAndroid.mk18 # Applications that use this library must include it with
/frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
H A DPlaybackSeekAsyncDataProvider.java136 for (Iterator<Map.Entry<Integer, Bitmap>> it =
137 mPrefetchCache.snapshot().entrySet().iterator(); it.hasNext(); ) {
138 Map.Entry<Integer, Bitmap> entry = it.next();
180 for (Iterator<Integer> it = mCache.snapshot().keySet().iterator(); it.hasNext();) {
181 Integer key = it.next();
189 for (Iterator<Integer> it = mPrefetchCache.snapshot().keySet().iterator(); it.hasNext();) {
190 Integer key = it.next();
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup2.cpp111 // An invoke should be in a batch by itself, so it conflicts with any other
124 const auto& it = argDeps.find(batched); local
125 if (it != argDeps.end()) {
126 const auto& args = (*it).second;
139 const auto& it = argDeps.find(lastBatched); local
141 if (it == argDeps.end()) {
145 const auto& args = (*it).second;
304 // The output filename has to be the last, in case we need to pop it out and
/frameworks/rs/
H A DrsList.h39 for (InputIterator it = first; it != last; ++it) {
40 push_back(*it);
/frameworks/rs/rsov/compiler/
H A DBuiltin.cpp246 auto it = mFuncNameMap.find(strDemangled); local
247 if (it == mFuncNameMap.end()) {
250 return it->second;
H A DContext.h108 auto it = mVarNameToSlot.find(strVarName); local
109 if (it == mVarNameToSlot.end()) {
112 return it->second;
/frameworks/rs/rsov/compiler/spirit/
H A Dmodule.cpp77 auto it = table.find(ref->mId);
78 if (it != table.end()) {
79 ref->mInstruction = it->second;
626 // As a workaround, accept such SPIR-V code here, and fix it up later
/frameworks/rs/script_api/
H A Drs_convert.spec112 If the alpha component is not specified, it is assumed to be 1.0, i.e. the result will
H A Drs_for_each.spec79 versions, it will also be used to provide hint on how to best iterate over
108 and the output allocation if it exists, must have the same dimensions.
359 than one face present. In all other cases, it returns false. See @rsGetDimX() for an
393 You can access it by adding a special parameter named "context" of
H A Drs_value_types.spec60 repeated, as long as we're not trying to assign to it. You also can't mix the naming

Completed in 593 milliseconds

1234567891011>>