HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 226 - 250 of 3098) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/filesystems/src/mypackage/
MockFileSystemProvider.java 6 * You may obtain a copy of the License at
87 public void copy(Path source, Path target, CopyOption... options) throws IOException { method in class:MockFileSystemProvider
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
MemoryBinaryBody.java 8 * with the License. You may obtain a copy of the License at *
60 IOUtils.copy(is, out);
90 IOUtils.copy(getInputStream(),out);
MemoryTextBody.java 8 * with the License. You may obtain a copy of the License at *
65 IOUtils.copy(is, out);
116 IOUtils.copy(new ByteArrayInputStream(tempFile), out);
TempFileBinaryBody.java 8 * with the License. You may obtain a copy of the License at *
60 IOUtils.copy(is, out);
89 IOUtils.copy(getInputStream(),out);
TempFileTextBody.java 8 * with the License. You may obtain a copy of the License at *
65 IOUtils.copy(is, out);
115 IOUtils.copy(tempFile.getInputStream(), out);
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Compress.java 5 * use this file except in compliance with the License. You may obtain a copy of
62 BinaryDictOffdeviceUtils.copy(input, compressedOutput);
91 BinaryDictOffdeviceUtils.copy(uncompressedInput, output);
  /packages/services/BuiltInPrintService/src/com/android/bips/util/
FileUtils.java 7 * You may obtain a copy of the License at
43 /** Copy files from source to target, closing each stream when done */
44 public static void copy(InputStream source, OutputStream target) throws IOException { method in class:FileUtils
  /prebuilts/gdb/darwin-x86/lib/python2.7/compiler/
misc.py 26 def copy(self): member in class:Set
  /prebuilts/gdb/linux-x86/lib/python2.7/compiler/
misc.py 26 def copy(self): member in class:Set
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
misc.py 26 def copy(self): member in class:Set
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
misc.py 26 def copy(self): member in class:Set
  /system/extras/perfprofd/
map_utils.h 117 AggregatedSymbol copy = std::move(it->second); local
119 copy.offsets.insert(val);
120 map_.emplace(val, std::move(copy));
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
TreeMultimapExplicitTest.java 6 * You may obtain a copy of the License at
103 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree); local
104 assertEquals(tree, copy);
105 assertThat(copy.keySet()).has().exactly("google", "tree").inOrder();
106 assertThat(copy.get("google")).has().exactly(2, 6).inOrder();
107 assertEquals(Ordering.natural(), copy.keyComparator());
108 assertEquals(Ordering.natural(), copy.valueComparator());
109 assertEquals(Ordering.natural(), copy.get("google").comparator());
187 TreeMultimap<String, Integer> copy = local
189 copy.putAll(multimap)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
TreeMultimapExplicitTest.java 6 * You may obtain a copy of the License at
105 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree); local
106 assertEquals(tree, copy);
107 assertThat(copy.keySet()).has().exactly("google", "tree").inOrder();
108 assertThat(copy.get("google")).has().exactly(2, 6).inOrder();
109 assertEquals(Ordering.natural(), copy.keyComparator());
110 assertEquals(Ordering.natural(), copy.valueComparator());
111 assertEquals(Ordering.natural(), copy.get("google").comparator());
189 TreeMultimap<String, Integer> copy = local
191 copy.putAll(multimap)
212 TreeMultimap<String, Integer> copy local
    [all...]
TreeMultimapNaturalTest.java 6 * You may obtain a copy of the License at
333 TreeMultimap<String, Integer> copy = TreeMultimap.create(multimap); local
334 assertEquals(multimap, copy);
344 * Test that creating one TreeMultimap from another does not copy the
406 TreeMultimap<String, Integer> copy local
408 assertThat(copy.values()).has().exactly(1, 3, 7, 2, 6, 0, 4).inOrder();
409 assertThat(copy.keySet()).has().exactly("foo", "google", "tree").inOrder();
410 assertEquals(multimap.keyComparator(), copy.keyComparator());
411 assertEquals(multimap.valueComparator(), copy.valueComparator());
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/translit/
ReplaceableTest.java 186 public void copy(int start, int limit, int dest) { method in class:ReplaceableTest.TestReplaceable
187 chars.copy(start, limit, dest);
188 styles.copy(start, limit, dest);
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/
ReplaceableTest.java 183 public void copy(int start, int limit, int dest) { method in class:ReplaceableTest.TestReplaceable
184 chars.copy(start, limit, dest);
185 styles.copy(start, limit, dest);
  /frameworks/base/core/java/android/transition/
TransitionUtils.java 6 * You may obtain a copy of the License at
82 * Creates a View using the bitmap copy of <code>view</code>. If <code>view</code> is large,
83 * the copy will use a scaled bitmap of the given view.
85 * @param sceneRoot The ViewGroup in which the view copy will be displayed.
86 * @param view The view to create a copy of.
101 ImageView copy = new ImageView(view.getContext()); local
102 copy.setScaleType(ImageView.ScaleType.CENTER_CROP);
105 copy.setImageBitmap(bitmap);
109 copy.measure(widthSpec, heightSpec);
110 copy.layout(left, top, right, bottom)
    [all...]
  /frameworks/support/transition/src/main/java/androidx/transition/
TransitionUtils.java 6 * You may obtain a copy of the License at
43 * Creates a View using the bitmap copy of <code>view</code>. If <code>view</code> is large,
44 * the copy will use a scaled bitmap of the given view.
46 * @param sceneRoot The ViewGroup in which the view copy will be displayed.
47 * @param view The view to create a copy of.
62 ImageView copy = new ImageView(view.getContext()); local
63 copy.setScaleType(ImageView.ScaleType.CENTER_CROP);
66 copy.setImageBitmap(bitmap);
70 copy.measure(widthSpec, heightSpec);
71 copy.layout(left, top, right, bottom)
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/number/
MutablePatternModifier.java 231 // TODO: Fix this. Avoid the copy.
232 DecimalQuantity copy = quantity.createCopy(); local
233 copy.roundToInfinity();
234 StandardPlural plural = copy.getStandardPlural(rules);
250 // TODO: Fix this. Avoid the copy.
251 DecimalQuantity copy = fq.createCopy(); local
252 micros.rounding.apply(copy);
253 setNumberProperties(fq.isNegative(), copy.getStandardPlural(rules));
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
MutablePatternModifier.java 229 // TODO: Fix this. Avoid the copy.
230 DecimalQuantity copy = quantity.createCopy(); local
231 copy.roundToInfinity();
232 StandardPlural plural = copy.getStandardPlural(rules);
248 // TODO: Fix this. Avoid the copy.
249 DecimalQuantity copy = fq.createCopy(); local
250 micros.rounding.apply(copy);
251 setNumberProperties(fq.isNegative(), copy.getStandardPlural(rules));
  /art/openjdkjvmti/
ti_field.cc 20 * version 2 for more details (a copy is included in the LICENSE file that
23 * You should have received a copy of the GNU General Public License version
103 JvmtiUniquePtr<char[]> copy = CopyString(env, output_string.c_str(), &ret); local
104 if (copy == nullptr) {
107 *generic_ptr = copy.release();
  /bionic/libc/bionic/
scandir.cpp 6 * You may obtain a copy of the License at
64 dirent* copy = CopyDirent(entry); local
65 if (copy == nullptr) {
68 names_[size_++] = copy;
88 dirent* copy = reinterpret_cast<dirent*>(malloc(size)); local
89 memcpy(copy, original, original->d_reclen);
90 return copy;
  /build/kati/
string_piece.cc 5 // You may obtain a copy of the License at
56 size_type StringPiece::copy(char* buf, size_type n, size_type pos) const { function in class:StringPiece
  /build/make/core/
node_fns.mk 6 # You may obtain a copy of the License at
39 # $(call copy-var-list, PREFIX, A B)
45 # $(2): list of variable names to copy
47 define copy-var-list
194 $(call copy-var-list, $(1).$(2), $(3))

Completed in 2260 milliseconds

1 2 3 4 5 6 7 8 91011>>