HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 376 - 400 of 1328) sorted by null

<<11121314151617181920>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
linemap.c 85 char *copy; local
127 /* Copy the filename (via shared storage) */
128 copy = yasm__xstrdup(filename);
130 mapping->filename = HAMT_insert(linemap->filenames, copy, copy,
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
main.c 79 char *copy; local
82 copy = malloc(len);
83 memcpy(copy, str, len);
84 return (copy);
  /external/chromium_org/third_party/zlib/
infback.c 254 unsigned copy; /* number of stored or match bytes to copy */ local
255 unsigned char FAR *from; /* where to copy match bytes from */
258 unsigned len; /* length to copy for repeats, bits to drop */
331 /* copy stored block from input to output */
333 copy = state->length;
336 if (copy > have) copy = have;
337 if (copy > left) copy = left
    [all...]
  /external/chromium_org/tools/gyp/pylib/gyp/
__init__.py 7 import copy namespace
66 default_variables = copy.copy(default_variables)
ordered_dict.py 219 inst_dict = vars(self).copy()
226 def copy(self): member in class:OrderedDict
227 'od.copy() -> a shallow copy of od'
  /external/chromium_org/tools/telemetry/telemetry/
test_runner.py 10 import copy namespace
144 return min(255, self._test().Run(copy.copy(options)))
  /external/chromium_org/tools/telemetry/third_party/davclient/
davclient.py 5 # 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
144 """Copy DAV resource"""
154 self._request('COPY', source, body=body, headers=headers)
158 """Copy DAV collection""
    [all...]
  /external/chromium_org/ui/gfx/image/
image_skia_unittest.cc 237 ImageSkia copy = image; local
238 copy.AddRepresentation(gfx::ImageSkiaRep(gfx::Size(10, 10),
242 EXPECT_TRUE(image.BackedBySameObjectAs(copy));
244 EXPECT_FALSE(copy.BackedBySameObjectAs(unrelated));
  /external/clang/include/clang/AST/
StmtIterator.h 164 StmtRange copy = *this; local
166 return copy;
207 ConstStmtRange copy = *this; local
209 return copy;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/cipher/
CipherInputStream.java 123 int copy = Math.min(avail, len); local
124 System.arraycopy(buffer, pos, dst, off, copy);
125 pos += copy;
126 off += copy;
127 len -= copy;
128 count += copy;
CipherOutputStream.java 45 int copy = (len > space) ? space : len; local
47 System.arraycopy(src, off, out_buffer, out_buffer_pos, copy);
49 off += copy;
50 out_buffer_pos += copy;
51 len -= copy;
115 int copy = Math.min(avail, len); local
117 System.arraycopy(src, off, buffer, pos, copy);
118 pos += copy;
119 off += copy;
120 len -= copy;
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Constraints.java 6 * You may obtain a copy of the License at
370 * TODO(kevinb): For better performance, avoid making a copy of the elements
376 Collection<E> copy = Lists.newArrayList(elements); local
377 for (E element : copy) {
380 return copy;
  /external/guava/guava-tests/test/com/google/common/collect/
ArrayListMultimapTest.java 6 * You may obtain a copy of the License at
99 ArrayListMultimap<String, Integer> copy local
101 assertEquals(multimap, copy);
HashMultisetTest.java 6 * You may obtain a copy of the License at
65 Multiset<Multiset<?>> copy = SerializableTester.reserialize(multiset); local
66 assertEquals(2, copy.size());
67 assertSame(copy, copy.iterator().next());
84 Multiset<MultisetHolder> copy = SerializableTester.reserialize(multiset); local
85 assertEquals(2, copy.size());
86 assertSame(copy, copy.iterator().next().member);
ImmutableSetTest.java 6 * You may obtain a copy of the License at
167 ImmutableSet<String> copy = ImmutableSet.copyOf(sortedSet); local
168 assertNotSame(sortedSet, copy);
187 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list); local
188 assertTrue(copy instanceof ImmutableAsList);
  /external/guava/guava-tests/test/com/google/common/io/
ResourcesTest.java 6 * You may obtain a copy of the License at
102 Resources.copy(resource, out);
  /external/icu4c/test/intltest/
reptest.cpp 154 virtual void copy(int32_t start, int32_t limit, int32_t dest) { function in class:TestReplaceable
155 chars.copy(start, limit, dest);
156 styles.copy(start, limit, dest);
200 virtual void copy(int32_t /*start*/, int32_t /*limit*/, int32_t /*dest*/) { function in class:NoopReplaceable
264 // UMemory/UObject/Replaceable copy constructors
  /external/javassist/src/main/javassist/bytecode/
ExceptionTable.java 71 * 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);
InnerClassesAttribute.java 200 * 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);
  /external/javassist/src/main/javassist/bytecode/analysis/
Frame.java 145 * 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/
Data.java 6 * You may obtain a copy of the License at
189 // **************************** Copy **************************
192 * Does a deep copy of the attributes and values from one node to another.
194 * @param toPath destination path for the deep copy.
197 void copy(String toPath, Data from); method in interface:Data
200 * Does a deep copy the attributes and values from one node to another
204 void copy(Data from); method in interface:Data
  /external/jsilver/src/org/clearsilver/
DelegatedHdf.java 6 * You may obtain a copy of the License at
174 public void copy(String hdfpath, HDF src) { method in class:DelegatedHdf
178 getHdf().copy(hdfpath, src);
  /external/libxslt/libxslt/
templates.c 619 xmlAttrPtr attr, copy, last; local
678 copy = xmlNewDocProp(target->doc, attr->name, NULL);
679 if (copy == NULL) {
694 copy->parent = target;
696 target->properties = copy;
697 last = copy;
699 last->next = copy;
700 copy->prev = last;
701 last = copy;
721 copy->ns = copyNs
    [all...]
  /external/mesa3d/src/gallium/state_trackers/xorg/
xorg_exa.h 41 } copy; member in struct:exa_context
  /external/mesa3d/src/glsl/
ir_clone.cpp 5 * 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...]

Completed in 383 milliseconds

<<11121314151617181920>>