HomeSort by relevance Sort by last modified time
    Searched defs:toAdd (Results 1 - 25 of 157) sorted by null

1 2 3 4 5 6 7

  /external/glide/library/src/main/java/com/bumptech/glide/signature/
ApplicationVersionSignature.java 27 Key toAdd = obtainVersionSignature(context);
28 result = PACKAGE_NAME_TO_KEY.putIfAbsent(packageName, toAdd);
29 // There wasn't a previous mapping, so toAdd is now the Key.
31 result = toAdd;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 109 NodeList toAdd = newChild.getChildNodes();
110 for (int i = 0; i < toAdd.getLength(); i++) {
111 insertChildAt(toAdd.item(i), index + i);
  /dalvik/dx/src/com/android/dx/ssa/back/
RegisterAllocator.java 162 SsaInsn toAdd = SsaInsn.makeFromRop(
167 insns.add(insnIndex, toAdd);
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
RegisterAllocator.java 164 SsaInsn toAdd = SsaInsn.makeFromRop(
169 insns.add(insnIndex, toAdd);
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
ObservableArrayListTest.java 186 ArrayList<String> toAdd = new ArrayList<>();
187 toAdd.add("Hello");
188 toAdd.add("World");
191 mObservable.addAll(toAdd);
203 ArrayList<String> toAdd = new ArrayList<>();
204 toAdd.add("Hello");
205 toAdd.add("World");
208 mObservable.addAll(0, toAdd);
ObservableArrayMapTest.java 110 Map<String, String> toAdd = new ArrayMap<>();
111 toAdd.put("Hello", "World");
112 toAdd.put("Goodbye", "Cruel World");
115 mObservable.putAll(toAdd);
126 SimpleArrayMap<String, String> toAdd = new ArrayMap<>();
127 toAdd.put("Hello", "World");
128 toAdd.put("Goodbye", "Cruel World");
131 mObservable.putAll(toAdd);
  /external/icu/icu4c/source/common/
caniter.cpp 470 UnicodeString *toAdd = new UnicodeString(prefix);
472 if (toAdd == 0) {
476 *toAdd += item;
477 fillinResult->put(*toAdd, toAdd, status);
479 //if (PROGRESS) printf("Adding: %s\n", UToS(Tr(*toAdd)));
  /cts/tests/tests/widget/src/android/widget/cts/
TabWidgetTest.java 124 TextView toAdd = new TextView(mActivity);
125 toAdd.setText("Tab #" + i);
126 tabWidget.addView(toAdd);
127 assertEquals(toAdd, tabWidget.getChildTabViewAt(i));
  /external/guava/guava-tests/test/com/google/common/collect/
FilteredCollectionsTest.java 110 for (int toAdd = 0; toAdd < 10; toAdd++) {
111 boolean expectedResult = createUnfiltered(contents).add(toAdd);
115 assertEquals(expectedResult, filtered.add(toAdd));
116 assertTrue(EVEN.apply(toAdd));
118 assertFalse(EVEN.apply(toAdd));
149 ImmutableList<Integer> toAdd = ImmutableList.of(2, 4, 3);
155 filteredToModify.addAll(toAdd);
  /libcore/luni/src/main/java/java/util/concurrent/
CopyOnWriteArrayList.java 291 Object[] toAdd = collection.toArray();
292 Object[] newElements = new Object[elements.length + toAdd.length];
294 System.arraycopy(toAdd, 0, newElements, index, toAdd.length);
296 newElements, index + toAdd.length, elements.length - index);
298 return toAdd.length > 0;
311 Object[] toAdd = collection.toArray();
312 Object[] newElements = new Object[elements.length + toAdd.length];
315 for (Object o : toAdd) {
320 if (addedCount < toAdd.length)
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/concurrent/
CopyOnWriteArrayListTest.java 192 List<Object> toAdd = Arrays.asList(new Object[1000]);
194 list.addAll(toAdd);
  /frameworks/base/services/core/java/com/android/server/notification/
ManagedServices.java 523 final SparseArray<Set<ComponentName>> toAdd = new SparseArray<>();
540 toAdd.put(userIds[i], new ArraySet<ComponentName>());
547 toAdd.put(userIds[i], add);
561 final Set<ComponentName> allowedComponents = toAdd.get(info.userid);
576 final Set<ComponentName> add = toAdd.get(userIds[i]);
    [all...]
  /dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java 615 NormalSsaInsn toAdd = new NormalSsaInsn(
619 insns.add(insns.size() - 1, toAdd);
638 NormalSsaInsn toAdd = new NormalSsaInsn(
642 insns.add(getCountPhiInsns(), toAdd);
757 NormalSsaInsn toAdd = new NormalSsaInsn(
763 toSchedule.add(insertPlace++, toAdd);
949 NormalSsaInsn toAdd = new NormalSsaInsn(
962 insns.set(movesFromPhisAtBeginning + 1, toAdd);
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaBasicBlock.java 616 NormalSsaInsn toAdd = new NormalSsaInsn(
620 insns.add(insns.size() - 1, toAdd);
639 NormalSsaInsn toAdd = new NormalSsaInsn(
643 insns.add(getCountPhiInsns(), toAdd);
758 NormalSsaInsn toAdd = new NormalSsaInsn(
764 toSchedule.add(insertPlace++, toAdd);
950 NormalSsaInsn toAdd = new NormalSsaInsn(
963 insns.set(movesFromPhisAtBeginning + 1, toAdd);
    [all...]
  /frameworks/base/core/java/android/content/pm/
LauncherApps.java 836 CallbackMessageHandler toAdd = new CallbackMessageHandler(handler.getLooper(), callback);
837 mCallbacks.add(toAdd);
    [all...]
  /frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/loaders/
LoaderDicom.java 144 HashSet<Integer> toAdd = new HashSet<Integer>();
146 toAdd.add(n);
173 if (toAdd.contains(tagInt(e.mGroup, e.mElement))) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
PluralRules.java     [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
PluralRules.java     [all...]
  /external/messageformat/java/com/ibm/icu/simple/
PluralRules.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar 
org.eclipse.equinox.launcher.jar 
org.eclipse.equinox.launcher_1.1.0.v20100507.jar 
org.eclipse.equinox.p2.director.app_1.0.201.R36x_v20100823.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.launcher_1.3.0.v20130327-1440.jar 

Completed in 3188 milliseconds

1 2 3 4 5 6 7