/frameworks/base/graphics/java/android/graphics/ |
SweepGradient.java | 6 * You may obtain a copy of the License at 91 protected Shader copy() { method in class:SweepGradient 92 final SweepGradient copy; local 95 copy = new SweepGradient(mCx, mCy, mColors.clone(), 99 copy = new SweepGradient(mCx, mCy, mColor0, mColor1); 105 copyLocalMatrix(copy); 106 return copy;
|
/frameworks/base/telephony/java/android/telephony/ |
CellSignalStrength.java | 6 * You may obtain a copy of the License at 69 * @return A deep copy of this class. 72 public abstract CellSignalStrength copy(); method in class:CellSignalStrength
|
/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 68 BinaryDictOffdeviceUtils.copy(input, new GZIPOutputStream(output)); 96 BinaryDictOffdeviceUtils.copy(new GZIPInputStream(input), output);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
misc.py | 26 def copy(self): member in class:Set
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/ |
macostools.py | 4 copy(src, dst) - Full copy of 'src' to 'dst' 23 BUFSIZ=0x80000 # Copy in 0.5Mb chunks 90 def copy(src, dst, createpath=0, copydates=1, forcetype=None): function 91 """Copy a file, including finder info, resource fork, etc""" 131 """Copy a complete file tree to a new destination""" 138 copy(src, dst, 1, copydates)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_copy_reg.py | 42 import copy namespace 43 self.assertEqual(True, copy.copy(True))
|
/prebuilts/python/linux-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/test/ |
test_copy_reg.py | 42 import copy namespace 43 self.assertEqual(True, copy.copy(True))
|
/system/core/toolbox/ |
dynarray.c | 71 char *copy = malloc(slen+1); local 72 memcpy(copy, str, slen); 73 copy[slen] = '\0'; 74 dynarray_append(list, copy);
|
/external/guava/guava-tests/test/com/google/common/collect/ |
TreeMultimapExplicitTest.java | 6 * You may obtain a copy of the License at 102 TreeMultimap<String, Integer> copy = TreeMultimap.create(tree); local 103 assertEquals(tree, copy); 104 ASSERT.that(copy.keySet()).hasContentsInOrder("google", "tree"); 105 ASSERT.that(copy.get("google")).hasContentsInOrder(2, 6); 106 assertEquals(Ordering.natural(), copy.keyComparator()); 107 assertEquals(Ordering.natural(), copy.valueComparator()); 108 assertEquals(Ordering.natural(), copy.get("google").comparator()); 174 TreeMultimap<String, Integer> copy = local 176 copy.putAll(multimap) 197 TreeMultimap<String, Integer> copy local [all...] |
/build/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))
|
/build/tools/releasetools/ |
sign_target_files_apks | 7 # You may obtain a copy of the License at 76 import copy namespace 149 out_info = copy.copy(info) 171 # a non-APK file; copy it verbatim
|
/dalvik/vm/ |
IndirectRefTable.cpp | 6 * You may obtain a copy of the License at 311 Object** copy = new Object*[count]; local 313 copy[i] = table_[i].obj; 315 dvmDumpReferenceTableContents(copy, count, descr); 316 delete[] copy;
|
/development/build/tools/ |
mk_sources_zip.py | 7 # You may obtain a copy of the License at 100 # Dry mode: don't copy/zip, print what would be done. 156 copy(p, filepath, pkg) 185 # Copy the given file (given its absolute filepath) to 187 def copy(p, filepath, dest_pkg): function 196 # zipfile is a path. Copy to it.
|
/external/apache-http/src/org/apache/http/impl/client/ |
ClientParamsStack.java | 13 * with the License. You may obtain a copy of the License at 115 * Creates a copy of a parameter stack. 119 * @param stack the stack to copy 130 * Creates a modified copy of a parameter stack. 265 * Does <i>not</i> copy parameters. 268 * that, they are read-only. The typical copy operation to prevent 271 * Create a new stack if you really need a copy. 277 public HttpParams copy() { method in class:ClientParamsStack
|
/external/apache-http/src/org/apache/http/params/ |
BasicHttpParams.java | 13 * with the License. You may obtain a copy of the License at 123 * Creates a copy of these parameters. 125 * then calls {@link #copyParams(HttpParams)} to populate the copy. 127 * @return a new set of params holding a copy of the 130 public HttpParams copy() { method in class:BasicHttpParams 144 * This method is called from {@link #copy()}. 146 * @param target the parameters to which to copy
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
Arrays.java | 419 byte[] copy = new byte[data.length]; 421 System.arraycopy(data, 0, copy, 0, data.length); 423 return copy; 433 byte[][] copy = new byte[data.length][]; 435 for (int i = 0; i != copy.length; i++) 437 copy[i] = clone(data[i]); 440 return copy; 450 byte[][][] copy = new byte[data.length][][]; 452 for (int i = 0; i != copy.length; i++) 454 copy[i] = clone(data[i]) 466 int[] copy = new int[data.length]; local 479 short[] copy = new short[data.length]; local 492 BigInteger[] copy = new BigInteger[data.length]; local [all...] |
/external/chromium/base/memory/ |
linked_ptr.h | 87 // Copy an existing linked_ptr<>, adding ourselves to the list of references. 88 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } 92 copy(&ptr); 98 copy(&ptr); 105 copy(&ptr); 155 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:linked_ptr
|
/external/chromium/base/ |
string16.h | 101 static char_type* copy(char_type* s1, const char_type* s2, size_t n) { function in struct:base::string16_char_traits 146 // Each library will get its own copy of _S_empty_rep_storage. When strings
|
string_piece.cc | 31 size_type StringPiece::copy(char* buf, size_type n, size_type pos) const { function in class:base::StringPiece
|
/external/chromium/googleurl/base/ |
string16.h | 114 static char_type* copy(char_type* s1, const char_type* s2, size_t n) { function in struct:base::string16_char_traits 159 // Each library will get its own copy of _S_empty_rep_storage. When strings
|