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

1 2 3 4 5 6 7 8 9

  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
Chmod.java 121 final Set<PosixFilePermission> toAdd = new HashSet<PosixFilePermission>();
187 if (r) toAdd.add(OWNER_READ);
188 if (w) toAdd.add(OWNER_WRITE);
189 if (x) toAdd.add(OWNER_EXECUTE);
192 if (r) toAdd.add(GROUP_READ);
193 if (w) toAdd.add(GROUP_WRITE);
194 if (x) toAdd.add(GROUP_EXECUTE);
197 if (r) toAdd.add(OTHERS_READ);
198 if (w) toAdd.add(OTHERS_WRITE);
199 if (x) toAdd.add(OTHERS_EXECUTE)
    [all...]
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
Chmod.java 121 final Set<PosixFilePermission> toAdd = new HashSet<PosixFilePermission>();
187 if (r) toAdd.add(OWNER_READ);
188 if (w) toAdd.add(OWNER_WRITE);
189 if (x) toAdd.add(OWNER_EXECUTE);
192 if (r) toAdd.add(GROUP_READ);
193 if (w) toAdd.add(GROUP_WRITE);
194 if (x) toAdd.add(GROUP_EXECUTE);
197 if (r) toAdd.add(OTHERS_READ);
198 if (w) toAdd.add(OTHERS_WRITE);
199 if (x) toAdd.add(OTHERS_EXECUTE)
    [all...]
  /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);
  /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);
  /cts/tests/tests/widget/src/android/widget/cts/
TableRowTest.java 86 View toAdd = new TextView(mActivity);
87 tableRow.addView(toAdd);
88 verify(mockHierarchyChangeListener, times(1)).onChildViewAdded(tableRow, toAdd);
90 verify(mockHierarchyChangeListener, times(1)).onChildViewRemoved(tableRow, toAdd);
TabWidgetTest.java 140 TextView toAdd = new TextView(mActivity);
141 toAdd.setText("Tab #" + i);
142 mTabWidget.addView(toAdd);
143 assertEquals(toAdd, mTabWidget.getChildTabViewAt(i));
TableLayoutTest.java 100 View toAdd = new TextView(mActivity);
101 mTableEmpty.addView(toAdd);
102 verify(mockHierarchyChangeListener, times(1)).onChildViewAdded(mTableEmpty, toAdd);
104 verify(mockHierarchyChangeListener, times(1)).onChildViewRemoved(mTableEmpty, toAdd);
  /external/icu/icu4c/source/common/
caniter.cpp 472 UnicodeString *toAdd = new UnicodeString(prefix);
474 if (toAdd == 0) {
478 *toAdd += item;
479 fillinResult->put(*toAdd, toAdd, status);
481 //if (PROGRESS) printf("Adding: %s\n", UToS(Tr(*toAdd)));
  /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/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     [all...]
  /dalvik/dx/src/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);
928 NormalSsaInsn toAdd = new NormalSsaInsn(
941 insns.set(movesFromPhisAtBeginning + 1, toAdd);
    [all...]
  /frameworks/rs/tests/java_api/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))) {
  /packages/apps/TV/src/com/android/tv/dvr/
DvrManager.java 295 List<ScheduledRecording> toAdd = new ArrayList<>();
302 toAdd.add(
309 if (!toAdd.isEmpty()) {
310 mDataManager.addScheduledRecording(ScheduledRecording.toArray(toAdd));
329 List<ScheduledRecording> toAdd = new ArrayList<>();
345 toAdd.add(
352 if (!toAdd.isEmpty()) {
353 mDataManager.addScheduledRecording(ScheduledRecording.toArray(toAdd));
    [all...]
  /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...]
  /frameworks/base/core/java/android/content/pm/
LauncherApps.java     [all...]
  /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 
org.eclipse.equinox.p2.director.app_1.0.300.v20130327-2119.jar 
org.eclipse.equinox.simpleconfigurator_1.0.400.v20130327-2119.jar 
org.eclipse.equinox.p2.engine_2.3.0.v20130526-2122.jar 
  /prebuilts/tools/common/m2/repository/com/fasterxml/jackson/dataformat/jackson-dataformat-cbor/2.6.6/
jackson-dataformat-cbor-2.6.6.jar 

Completed in 555 milliseconds

1 2 3 4 5 6 7 8 9