Searched defs:copy (Results 226 - 250 of 718) sorted by relevance

1234567891011>>

/external/chromium_org/tools/telemetry/third_party/davclient/
H A Ddavclient.py5 # You may obtain a copy of the License at
15 import urlparse, httplib, copy, base64, StringIO namespace
72 headers = copy.copy(self.headers)
74 new_headers = copy.copy(self.headers)
143 def copy(self, source, destination, body=None, depth='infinity', overwrite=True, headers=None): member in class:DAVClient
166 self.copy(source, destination, body=unicode(body, 'utf-8'), depth=depth, overwrite=overwrite, headers=headers)
184 """Move DAV collection and copy all properties"""
/external/chromium_org/v8/src/
H A Dhydrogen-removable-simulates.cc131 State* copy = new(zone) State(*this); local
133 PrintF("[copy state %p from B%d to new state %p for B%d]\n",
135 reinterpret_cast<void*>(copy), succ_block->block_id());
137 return copy;
/external/clang/test/CodeGen/
H A Dblockstret.c52 void (*copy)(void *dst, void *src); // conditional on BLOCK_HAS_COPY_DISPOSE member in struct:block_descriptor_big
/external/deqp/scripts/build/
H A Dconfig.py4 import copy namespace
20 self.args = copy.copy(args)
38 self.extraBuildArgs = copy.copy(extraBuildArgs)
/external/eigen/blas/
H A Dlevel1_impl.h7 // Public License v. 2.0. If a copy of the MPL was not distributed
29 int EIGEN_BLAS_FUNC(copy)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy) function
/external/elfutils/0.153/libdw/
H A Dcfi.c14 You should have received a copy of the GNU General Public License along
70 Dwarf_Frame *copy = malloc (size); local
71 if (likely (copy != NULL))
73 memcpy (copy, original, size);
74 copy->prev = prev;
76 return copy;
316 /* Duplicate the state and chain the copy on. */
317 Dwarf_Frame *copy = duplicate_frame_state (fs, fs); local
318 if (unlikely (copy == NULL))
323 fs = copy;
[all...]
/external/elfutils/0.153/libdwfl/
H A Ddwfl_module_build_id.c14 You should have received a copy of the GNU General Public License along
63 void *copy = malloc (len); local
64 if (unlikely (copy == NULL))
70 mod->build_id_bits = memcpy (copy, bits, len);
/external/emma/core/java12/com/vladium/util/
H A DIProperties.java48 IProperties copy (); method in interface:IProperties
115 ? overrides.copy ()
164 public IProperties copy () method in class:IProperties.Factory.PropertiesImpl
/external/freetype/src/base/
H A Dftglyph.c311 FT_Glyph copy; local
332 error = ft_new_glyph( source->library, clazz, &copy );
336 copy->advance = source->advance;
337 copy->format = source->format;
340 error = clazz->glyph_copy( source, copy );
343 FT_Done_Glyph( copy );
345 *target = copy;
402 /* copy advance while converting it to 16.16 format */
581 /* in case of success, copy the bitmap to the glyph bitmap */
586 /* copy advanc
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
/external/guava/guava/src/com/google/common/io/
H A DCharStreams.java6 * You may obtain a copy of the License at
148 W extends Appendable & Closeable> long copy(InputSupplier<R> from, method in class:CharStreams
155 long count = copy(in, out);
177 public static <R extends Readable & Closeable> long copy( method in class:CharStreams
182 long count = copy(in, to);
199 public static long copy(Readable from, Appendable to) throws IOException { method in class:CharStreams
249 copy(r, sb);
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableTableTest.java6 * You may obtain a copy of the License at
157 Table<R, C, V> copy = ImmutableTable.copyOf(original);
158 assertEquals(original, copy);
159 validateViewOrdering(original, copy);
168 Table<R, C, V> original, Table<R, C, V> copy) {
169 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
170 assertTrue(Iterables.elementsEqual(original.rowKeySet(), copy.rowKeySet()));
171 assertTrue(Iterables.elementsEqual(original.values(), copy.values()));
223 Table<Character, Integer, String> copy
227 ASSERT.that(copy
167 validateViewOrdering( Table<R, C, V> original, Table<R, C, V> copy) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dutrans.cpp59 virtual void copy(int32_t start, int32_t limit, int32_t dest);
123 void ReplaceableGlue::copy(int32_t start, int32_t limit, int32_t dest) { function in class:ReplaceableGlue
124 (*func->copy)(rep, start, limit, dest);
/external/javassist/src/main/javassist/bytecode/
H A DAttributeInfo.java28 // 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));
H A DExceptionTable.java71 * Creates and returns a copy of this object.
230 * Makes a copy of this <code>exception_table[]</code>.
234 * @param newCp the constant pool table used by the new copy.
238 public ExceptionTable copy(ConstPool newCp, Map classnames) { method in class:ExceptionTable
244 int type = srcCp.copy(e.catchType, newCp, classnames);
H A DInnerClassesAttribute.java200 * Makes a copy. Class names are replaced according to the
203 * @param newCp the constant pool table used by the new copy.
207 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:InnerClassesAttribute
222 innerClass = cp.copy(innerClass, newCp, classnames);
227 outerClass = cp.copy(outerClass, newCp, classnames);
232 innerName = cp.copy(innerName, newCp, classnames);
H A DLocalVariableAttribute.java288 * Makes a copy.
290 * @param newCp the constant pool table used by the new copy.
293 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:LocalVariableAttribute
311 name = cp.copy(name, newCp, null);
/external/javassist/src/main/javassist/bytecode/analysis/
H A DFrame.java145 * Makes a shallow copy of this frame, i.e. the type instances will
148 * @return the shallow copy
150 public Frame copy() { method in class:Frame
159 * Makes a shallow copy of the stack portion of this frame. The local
162 * @return the shallow copy of the stack
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DUnmodifiableData.java6 * You may obtain a copy of the License at
40 public void copy(Data from) { method in class:UnmodifiableData
45 public void copy(String toPath, Data from) { method in class:UnmodifiableData
/external/libcxx/src/
H A Dfuture.cpp150 __assoc_sub_state::copy() function in class:__assoc_sub_state
213 __s->copy();
/external/linux-tools-perf/perf-3.12.0/include/linux/
H A Drbtree_augmented.h17 You should have received a copy of the GNU General Public License
40 void (*copy)(struct rb_node *old, struct rb_node *new); member in struct:rb_augment_callbacks
173 augment->copy(node, successor);
197 augment->copy(node, successor);
/external/lldb/test/pexpect-2.4/
H A DANSI.py13 import copy namespace
/external/llvm/include/llvm/ADT/
H A DArrayRef.h70 /// copy-construct an ArrayRef.
123 // copy - Allocate copy in Allocator and return ArrayRef<T> to it.
124 template <typename Allocator> ArrayRef<T> copy(Allocator &A) { function in class:llvm::ArrayRef
126 std::copy(begin(), end(), Buff);
H A DStringRef.h126 // copy - Allocate copy in Allocator and return StringRef to it.
127 template <typename Allocator> StringRef copy(Allocator &A) { function in class:llvm::StringRef
129 std::copy(begin(), end(), S);
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-linked_ptr.h60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr

Completed in 9143 milliseconds

1234567891011>>