/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
CopyUtils.java | 7 * the License. You may obtain a copy of the License at
36 * Unless otherwise noted, these <code>copy</code> methods do <em>not</em>
47 * For byte-to-char methods, a <code>copy</code> variant allows the encoding
52 * We don't provide special variants for the <code>copy</code> methods that
56 * The <code>copy</code> methods use an internal buffer when copying. It is
58 * to the <code>copy</code> methods in <code>Buffered*</code> streams. For
61 * copy( new BufferedInputStream( in ), new BufferedOutputStream( out ) );
73 * However, the <code>copy</code> methods do the same thing, keeping an
84 * 1 copy InputStream OutputStream (primitive)
85 * 2 copy Reader Writer (primitive) 136 public static void copy(byte[] input, OutputStream output) method in class:CopyUtils 153 public static void copy(byte[] input, Writer output) method in class:CopyUtils 156 copy(in, output); method 170 public static void copy( method in class:CopyUtils 176 copy(in, output, encoding); method 192 public static int copy( method in class:CopyUtils 217 public static int copy( method in class:CopyUtils 243 public static void copy( method in class:CopyUtils 248 copy(in, output); method 261 public static void copy( method in class:CopyUtils 267 copy(in, output); method 282 public static void copy( method in class:CopyUtils 287 copy(input, out); method 305 public static void copy( method in class:CopyUtils 311 copy(in, out); method 327 public static void copy(String input, Writer output) method in class:CopyUtils [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/ |
CoordinateUtils.java | 6 * You may obtain a copy of the License at 45 public static void copy(final int[] destination, final int[] source) { method in class:CoordinateUtils
|
/pdk/apps/CameraITS/tests/ |
test_jpeg.py | 5 # You may obtain a copy of the License at 23 import copy namespace 38 out_surface = copy.deepcopy(size) 49 out_surface = copy.deepcopy(size)
|
test_latching.py | 5 # You may obtain a copy of the License at 23 import copy namespace
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/ |
type_printers.py | 14 # You should have received a copy of the GNU General Public License 17 import copy namespace 36 sorted_type_printers = sorted (copy.copy(type_printers),
|
/prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/ |
type_printers.py | 14 # You should have received a copy of the GNU General Public License 17 import copy namespace 36 sorted_type_printers = sorted (copy.copy(type_printers),
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
hmac.py | 15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order 85 def copy(self): member in class:HMAC 86 """Return a separate copy of this hashing object. 88 An update to this copy won't affect the original object. 93 other.inner = self.inner.copy() 94 other.outer = self.outer.copy() 102 h = self.outer.copy()
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
grammar.py | 100 def copy(self): member in class:Grammar 102 Copy the grammar. 107 setattr(new, dict_attr, getattr(self, dict_attr).copy())
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
hmac.py | 15 # A unique object passed by HMAC.copy() to the HMAC constructor, in order 85 def copy(self): member in class:HMAC 86 """Return a separate copy of this hashing object. 88 An update to this copy won't affect the original object. 93 other.inner = self.inner.copy() 94 other.outer = self.outer.copy() 102 h = self.outer.copy()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
grammar.py | 100 def copy(self): member in class:Grammar 102 Copy the grammar. 107 setattr(new, dict_attr, getattr(self, dict_attr).copy())
|
/sdk/eclipse/scripts/ |
collect_sources_for_sdk.py | 7 # You may obtain a copy of the License at 118 copy(p, fp, f, pkg) 146 # Create destination directory based on package name then copy the 148 def copy(p, fp, f, pkg): function
|
/external/javassist/src/main/javassist/bytecode/ |
AttributeInfo.java | 28 // update AttributeInfo.read(), .copy(), and (maybe) write(). 164 * Makes a copy. Class names are replaced according to the 167 * @param newCp the constant pool table used by the new copy. 171 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:AttributeInfo 246 newList.add(attr.copy(cp, null));
|
ExceptionsAttribute.java | 38 * Constructs a copy of an exceptions attribute. 62 * Makes a copy. Class names are replaced according to the 65 * @param newCp the constant pool table used by the new copy. 69 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:ExceptionsAttribute 75 * Specified class names are replaced during the copy. 91 ByteArray.write16bit(srcCp.copy(index, destCp, classnames),
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/ |
FileStoreAdapter.java | 6 * You may obtain a copy of the License at 66 public void copy(IFileStore destination, int options, IProgressMonitor monitor) method in class:FileStoreAdapter 68 mStore.copy(destination, options, monitor);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/configuration/ |
ConfigurationTest.java | 6 * You may obtain a copy of the License at 124 Configuration copy = Configuration.copy(configuration); local 125 assertEquals(locale, copy.getLocale()); 126 assertEquals("foo.bar.FooActivity", copy.getActivity()); 127 assertEquals("@android:style/Theme.Holo.Light", copy.getTheme()); 128 assertEquals(devices.get(0), copy.getDevice()); 135 assertTrue(copy.getFullConfig().getLanguageQualifier().equals(locale.language)); 136 assertEquals(locale, copy.getLocale()); 137 assertEquals("foo.bar.FooActivity", copy.getActivity()) [all...] |
/bionic/libc/bionic/ |
scandir.cpp | 6 * You may obtain a copy of the License at 59 dirent* copy = CopyDirent(entry); local 60 if (copy == NULL) { 63 names_[size_++] = copy; 82 dirent* copy = (dirent*) malloc(size); local 83 memcpy(copy, original, original->d_reclen); 84 return copy; 87 // Disallow copy and assignment.
|
/cts/libs/deviceutil/src/android/provider/cts/ |
FileCopyHelper.java | 6 * You may obtain a copy of the License at 29 * The Class FileCopyHelper is used to copy files from resources to the 44 * Instantiates a new file copy helper. 54 * Copy the file from the resources with a filename . 62 public String copy(int resId, String fileName) throws IOException { method in class:FileCopyHelper
|
/cts/tools/dasm/src/java_cup/ |
terminal_set.java | 103 /* make a copy of the other set */ 171 /* make a copy */ 172 BitSet copy = (BitSet)_elements.clone(); local 177 /* changed if we are not the same as the copy */ 178 return !_elements.equals(copy); 191 /* make a copy of the other set */ 192 BitSet copy = (BitSet)other._elements.clone(); local 195 copy.xor(this._elements); 198 return !copy.equals(other._elements);
|
/dalvik/dx/src/com/android/dx/cf/code/ |
LocalsArray.java | 6 * You may obtain a copy of the License at 45 * Makes and returns a mutable copy of this instance. 47 * @return {@code non-null;} the copy 49 public abstract LocalsArray copy(); method in class:LocalsArray 152 * the same as this instance, then this is returned (not a copy).
|
/external/apache-http/src/org/apache/http/params/ |
HttpParams.java | 13 * with the License. You may obtain a copy of the License at 67 * Creates a copy of these parameters. 71 HttpParams copy(); method in interface:HttpParams
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/ |
SHA384Digest.java | 31 * Copy constructor. This will copy the state of the provided 88 public Memoable copy() method in class:SHA384Digest
|
SHA512Digest.java | 31 * Copy constructor. This will copy the state of the provided 90 public Memoable copy() method in class:SHA512Digest
|
/external/chromium_org/base/strings/ |
string_piece.cc | 45 StringPiece::size_type copy(const StringPiece& self, function in namespace:base::internal
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
sidenav_data_source.py | 5 import copy namespace 87 sidenav = copy.deepcopy(self._cache.GetFromFile(
|
/external/chromium_org/chrome/test/pyautolib/ |
chromeos_network.py | 5 import copy namespace
|