Searched refs:copy (Results 126 - 150 of 1287) sorted by relevance

1234567891011>>

/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
46 this.parameters = copy(parameters);
70 return copy(parameters);
147 * Construct a shallow copy of the specified array
149 * @param array - the array to copy
152 private static String[] copy(String[] array) { method in class:Command
/external/mockftpserver/tags/2.x_Before_IDEA/src/main/java/org/mockftpserver/core/command/
H A DCommand.java6 * You may obtain a copy of the License at
45 this.parameters = copy(parameters);
68 return copy(parameters);
139 * Construct a shallow copy of the specified array
140 * @param array - the array to copy
143 private static String[] copy(String[] array) { method in class:Command
/external/v8/tools/testrunner/objects/
H A Dtestcase.py44 copy = TestCase(self.suite, self.path, self.flags + flags, self.dependency)
45 copy.outcomes = self.outcomes
46 return copy
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
H A DSecP224R1FieldElement.java184 Nat224.copy(x, t1);
188 Nat224.copy(t1, t2);
204 Nat224.copy(f1, d1);
213 Nat224.copy(nc, f1);
220 Nat224.copy(d1, d0);
221 Nat224.copy(e1, e0);
247 Nat224.copy(r, d1);
258 Nat224.copy(d1, d0);
259 Nat224.copy(e1, e0);
/external/freetype/src/gzip/
H A Dinfcodes.c45 uInt dist; /* distance back to copy from */
46 } copy; /* if EXT or COPY, where and how much */ member in union:inflate_codes_state::__anon5046
94 Bytef *f; /* pointer to copy strings from */
97 /* copy input/output information to locals (UPDATE macro restores) */
137 c->sub.copy.get = e & 15;
159 j = c->sub.copy.get;
175 c->sub.copy.get = e & 15;
176 c->sub.copy.dist = t->base;
191 j = c->sub.copy.get;
193 c->sub.copy
[all...]
/external/icu/icu4c/source/common/unicode/
H A Durep.h121 * @param dst array in which to copy characters. The length of
142 * @param dest the index at which the copy of the UChars should be
146 void (*copy)(UReplaceable* rep, member in struct:UReplaceableCallbacks
/external/javassist/sample/
H A DTest.java10 defined in class Test, then this program adds a copy of
38 CtMethod gMethod = CtNewMethod.copy(fMethod, "g", cc, null);
/external/llvm/lib/Support/
H A DRandomNumberGenerator.cpp49 std::copy(Salt.begin(), Salt.end(), Data.end());
/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java17 * You should have received a copy of the GNU General Public License along
59 public SwitchInstruction copy(SwitchInstruction switchInstruction) method in class:SwitchInstruction
/external/skia/tools/
H A DCopyTilesRenderer.cpp95 SkBitmap copy; local
98 dst.pixelRef()->readPixels(&copy, &subset);
101 dst.copyTo(&copy);
105 success &= SkImageEncoder::EncodeFile(pathWithNumber.c_str(), copy,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java484 byte[] copy = new byte[data.length];
486 System.arraycopy(data, 0, copy, 0, data.length);
488 return copy;
512 byte[][] copy = new byte[data.length][];
514 for (int i = 0; i != copy.length; i++)
516 copy[i] = clone(data[i]);
519 return copy;
529 byte[][][] copy = new byte[data.length][][];
531 for (int i = 0; i != copy.length; i++)
533 copy[
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableBiMapTest.java6 * You may obtain a copy of the License at
357 ImmutableBiMap<String, Integer> copy
359 assertEquals(Collections.<String, Integer>emptyMap(), copy);
360 assertSame(copy, ImmutableBiMap.copyOf(copy));
361 assertSame(ImmutableBiMap.of(), copy);
365 ImmutableBiMap<String, Integer> copy
367 assertMapEquals(copy, "one", 1);
368 assertSame(copy, ImmutableBiMap.copyOf(copy));
[all...]
/external/mesa3d/src/glsl/
H A Dir_clone.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
284 ir_function *copy = new(mem_ctx) ir_function(this->name); local
291 copy->add_signature(sig_copy);
298 return copy;
304 ir_function_signature *copy = this->clone_prototype(mem_ctx, ht); local
306 copy->is_defined = this->is_defined;
314 copy->body.push_tail(inst_copy);
317 return copy;
323 ir_function_signature *copy local
433 ir_instruction *copy = original->clone(mem_ctx, ht); local
[all...]
H A Dir_import_prototypes.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
84 ir_function_signature *copy = ir->clone_prototype(mem_ctx, NULL); local
86 this->function->add_signature(copy);
/external/flac/include/FLAC/
H A Dmetadata.h1261 * \a copy to \c true to have the function make it's own copy of the data, or
1266 * the length argument is 0 and the \a copy argument is \c false.
1315 /** Create a copy of an existing metadata object.
1317 * The copy is a "deep" copy, i.e. dynamically allocated data within the
1321 * \param object Pointer to object to copy.
1357 * If \a copy is \c true, a copy of the data is stored; otherwise, the object
1359 * function is successful, otherwise the original data will remain if \a copy
[all...]
/external/libvncserver/VisualNaCro/
H A Dautogen.sh49 $AUTOMAKE --add-missing --copy
/external/libvncserver/
H A Dautogen.sh51 $AUTOMAKE --add-missing --copy
/external/llvm/bindings/ocaml/transforms/utils/
H A Dllvm_transform_utils.mli15 (** [clone_module m] returns an exact copy of module [m].
/external/mesa3d/src/gallium/state_trackers/clover/core/
H A Dgeometry.hpp5 // copy of this software and associated documentation files (the "Software"),
7 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
40 auto it = std::copy(v.begin(), v.end(), a.begin());
45 std::copy(v, v + N, a.begin());
/external/openssh/contrib/cygwin/
H A DMakefile65 install-copy-id: $(copyidsrcdir)/ssh-copy-id $(copyidsrcdir)/ssh-copy-id.1
66 $(INSTALL) -m 755 $(copyidsrcdir)/ssh-copy-id $(DESTDIR)$(bindir)/ssh-copy-id
67 $(INSTALL) -m 644 $(copyidsrcdir)/ssh-copy-id.1 $(DESTDIR)$(mandir)/man1/ssh-copy-id.1
76 cygwin-postinstall: move-config-files remove-empty-dir install-inetd-config install-doc install-scripts install-copy-id gzip-man-pages
/external/compiler-rt/lib/BlocksRuntime/
H A Druntime.c5 * to any person obtaining a copy of this software and associated documentation
7 * including without limitation the rights to use, copy, modify, merge, publish,
284 /* Copy, or bump refcount, of a block. If really copying, call the copy helper if present. */
312 // Its a stack block. Make a copy.
322 //printf("calling block copy helper %p(%p, %p)...\n", aBlock->descriptor->copy, result, aBlock);
323 (*aBlock->descriptor->copy)(result, aBlock); // do fixup
329 // This allows the copy helper routines to make non-refcounted block copies under GC
336 // if we copy a malloc block to a GC block then we need to clear NEEDS_FREE.
344 //printf("calling block copy helpe
382 struct Block_byref *copy = (struct Block_byref *)_Block_allocator(src->size, false, isWeak); local
[all...]

Completed in 2016 milliseconds

1234567891011>>