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

1 2 3 4 5 6

  /libcore/luni/src/main/java/libcore/net/event/
NetworkEventDispatcher.java 47 public void addListener(NetworkEventListener toAdd) {
48 if (toAdd == null) {
49 throw new NullPointerException("toAdd == null");
51 listeners.add(toAdd);
  /external/skia/src/pathops/
SkPathOpsBounds.h 32 void add(const SkPathOpsBounds& toAdd) {
33 add(toAdd.fLeft, toAdd.fTop, toAdd.fRight, toAdd.fBottom);
  /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;
  /external/icu/icu4c/source/common/unicode/
enumset.h 38 inline void add(T toAdd) { set(toAdd, 1); }
  /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);
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotations.java 189 * @param toAdd {@code non-null;} the annotations to add
192 public void addAll(Annotations toAdd) {
195 if (toAdd == null) {
196 throw new NullPointerException("toAdd == null");
199 for (Annotation a : toAdd.annotations.values()) {
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotations.java 188 * @param toAdd {@code non-null;} the annotations to add
191 public void addAll(Annotations toAdd) {
194 if (toAdd == null) {
195 throw new NullPointerException("toAdd == null");
198 for (Annotation a : toAdd.annotations.values()) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
Annotations.java 189 * @param toAdd {@code non-null;} the annotations to add
192 public void addAll(Annotations toAdd) {
195 if (toAdd == null) {
196 throw new NullPointerException("toAdd == null");
199 for (Annotation a : toAdd.annotations.values()) {
  /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);
  /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...]
  /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/
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...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/back/
RegisterAllocator.java 164 SsaInsn toAdd = SsaInsn.makeFromRop(
169 insns.add(insnIndex, 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);
  /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)));
  /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...]
  /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/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 
org.eclipse.equinox.p2.directorywatcher_1.0.203.R36x_v20101027.jar 
  /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...]
  /frameworks/base/core/java/android/content/pm/
LauncherApps.java 702 CallbackMessageHandler toAdd = new CallbackMessageHandler(handler.getLooper(), callback);
703 mCallbacks.add(toAdd);
    [all...]

Completed in 1861 milliseconds

1 2 3 4 5 6