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

<<21222324252627282930>>

  /external/chromium_org/chrome/test/functional/
nacl_sdk.py 6 import copy namespace
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
ImeTest.java 124 mImeAdapter.copy();
  /external/chromium_org/native_client_sdk/src/build_tools/
build_sdk.py 21 import copy namespace
225 # Copy the existing arm toolchain from native_client tree
310 """Copy a set of files from src_root to dest_root according
532 gyp_env = copy.copy(os.environ)
811 # checkout new copy of naclports
816 # sync existing copy to pinned revision.
848 oshelpers.Copy(['-v', os.path.join(SDK_SRC_DIR, 'README.naclports'), readme])
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElementInstance.h 15 * You should have received a copy of the GNU Library General Public License
125 DECLARE_FORWARDING_ATTRIBUTE_EVENT_LISTENER(correspondingElement(), copy); member in class:WebCore::SVGElementInstance
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
Geolocation.cpp 225 void Geolocation::Watchers::getNotifiersVector(GeoNotifierVector& copy) const
227 copyValuesToVector(m_idToNotifierMap, copy);
487 GeoNotifierVector copy; local
488 copyToVector(m_oneShots, copy);
490 stopTimer(copy);
495 GeoNotifierVector copy; local
496 m_watchers.getNotifiersVector(copy);
498 stopTimer(copy);
516 GeoNotifierVector copy; local
517 copyToVector(m_oneShots, copy);
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/irc/
ircbot.py 13 # You should have received a copy of the GNU Lesser General Public
291 def copy(self): member in class:IRCDict
294 import copy namespace
295 return copy.copy(self)
  /external/chromium_org/third_party/bintrees/bintrees/
treemixin.py 59 * copy() -> a shallow copy of T, O(n*log(n))
148 def copy(self): member in class:TreeMixin
149 """ T.copy() -> get a shallow copy of T. """
153 __copy__ = copy
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape.cc 8 * license or royalty fees, to use, copy, modify, and distribute this
334 /* Normalization process sets up glyph_index(), we just copy it. */
692 hb_set_t copy; local
693 copy.init ();
695 copy.set (glyphs);
698 } while (!copy.is_equal (glyphs));
  /external/chromium_org/third_party/jinja2/
utils.py 329 def copy(self): member in class:LRUCache
330 """Return a shallow copy of the instance."""
468 __copy__ = copy
  /external/chromium_org/third_party/leveldatabase/src/db/
repair.cc 323 // We will copy src contents to a new table and then rename the
327 std::string copy = TableFileName(dbname_, next_file_number_++); local
329 Status s = env_->NewWritableFile(copy, &file);
335 // Copy data.
364 s = env_->RenameFile(copy, orig);
372 env_->DeleteFile(copy);
  /external/chromium_org/third_party/libxml/src/
testSAX.c 54 static int copy = 0; variable
1138 else if ((!strcmp(argv[i], "-copy")) || (!strcmp(argv[i], "--copy")))
1139 copy++;
  /external/chromium_org/third_party/mesa/src/src/mesa/vbo/
vbo_split_copy.c 9 * copy of this software and associated documentation files (the "Software"),
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
117 check_flush( struct copy_context *copy )
119 GLenum mode = copy->dstprim[copy->dstprim_nr].mode;
122 copy->dstelt_nr & 1) { /* see bug9962 */
126 if (copy->dstbuf_nr + 4 > copy->dstbuf_size)
129 if (copy->dstelt_nr + 4 > copy->dstelt_size
599 struct copy_context copy; local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/ssl/
ssl_sess.c 151 /* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */
533 int copy=1; local
535 if ((ret=s->session_ctx->get_session_cb(s,session_id,len,&copy)))
542 * it must handle the reference count itself [i.e. copy == 0],
544 if (copy)
1099 unsigned char *data,int len,int *copy))
    [all...]
  /external/chromium_org/third_party/skia/src/animator/
SkDisplayable.cpp 76 SkDisplayable* copy = SkDisplayType::CreateInstance(maker, type); local
81 info = copy->getMember(++index);
87 copy->setProperty(propIndex, value);
98 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy);
116 info->setMemberData(copy, deeper, sizeof(deeper));
122 info->setString(copy, string);
127 info->setMemberData(copy, data, size);
129 copy->dirty();
130 return copy;
  /external/chromium_org/third_party/skia/src/xml/
SkDOM.cpp 332 const SkDOM::Node* SkDOM::copy(const SkDOM& dom, const SkDOM::Node* node) function in class:SkDOM
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/
gen_x86_insn.py 459 def copy(self): member in class:Insn
460 """Return a shallow copy."""
566 newinsn = insn.copy()
577 newinsn = insn.copy()
    [all...]
  /external/chromium_org/v8/src/
flags.cc 331 // make a copy so we can NUL-terminate flag name
502 // make a 0-terminated copy of str
508 char* copy = SkipWhiteSpace(copy0.start()); local
512 for (char* p = copy; *p != '\0'; argc++) {
522 for (char* p = copy; *p != '\0'; argc++) {
hydrogen-check-elimination.cc 119 // Global analysis: Copy state to successor block.
120 HCheckTable* Copy(HBasicBlock* succ, Zone* zone) {
121 HCheckTable* copy = new(phase_->zone()) HCheckTable(phase_); local
124 HCheckTableEntry* new_entry = &copy->entries_[i];
128 new_entry->maps_ = old_entry->maps_->Copy(phase_->zone());
136 HCheckTableEntry* entry = copy->Find(object);
138 copy->Insert(object, cmp->map());
147 return copy;
182 MapSet i = instr->map_set().Copy(phase_->zone());
205 Insert(object, instr, instr->map_set().Copy(phase_->zone()))
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaRenamer.java 6 * You may obtain a copy of the License at
200 RegisterSpec[] copy = new RegisterSpec[orig.length]; local
202 System.arraycopy(orig, 0, copy, 0, orig.length);
204 return copy;
490 * For moves: copy propogate the move if we can, but don't
526 * If we're going to copy-propogate, then the ssa register
571 * Do not copy-propogate, since the two registers have
  /external/guava/guava/src/com/google/common/collect/
ArrayTable.java 6 * You may obtain a copy of the License at
187 V[][] copy = (V[][]) new Object[rowList.size()][columnList.size()]; local
188 array = copy;
190 System.arraycopy(table.array[i], 0, copy[i], 0, table.array[i].length);
262 V[][] copy = (V[][]) Array.newInstance( local
265 System.arraycopy(array[i], 0, copy[i], 0, array[i].length);
267 return copy;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
UnmodifiableCollectionTests.java 6 * You may obtain a copy of the License at
118 Collection<E> copy = new ArrayList<E>(); local
119 copy.addAll(collection);
126 assertCollectionsAreEquivalent(copy, collection);
133 assertCollectionsAreEquivalent(copy, collection);
140 assertCollectionsAreEquivalent(copy, collection);
143 assertCollectionsAreEquivalent(copy, collection);
150 assertCollectionsAreEquivalent(copy, collection);
157 assertCollectionsAreEquivalent(copy, collection);
164 assertCollectionsAreEquivalent(copy, collection)
208 Multiset<E> copy = LinkedHashMultiset.create(multiset); local
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
SuppliersTest.java 6 * You may obtain a copy of the License at
120 // Calls to the original memoized supplier shouldn't affect its copy.
123 Supplier<Integer> copy = reserialize(memoizedSupplier); local
127 ((Suppliers.MemoizingSupplier<Integer>) copy).delegate;
128 checkMemoize(countingCopy, copy);
186 // Calls to the original memoized supplier shouldn't affect its copy.
189 Supplier<Integer> copy = reserialize(memoizedSupplier); local
193 ((Suppliers.ExpiringMemoizingSupplier<Integer>) copy).delegate;
194 checkExpiration(countingCopy, copy);
  /external/guava/guava-tests/test/com/google/common/collect/
LinkedListMultimapTest.java 6 * You may obtain a copy of the License at
95 LinkedListMultimap<String, Integer> copy = local
97 assertEquals(multimap, copy);
  /external/javassist/src/main/javassist/bytecode/
StackMap.java 116 * Makes a copy.
118 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:StackMap
258 int newClazz = srcCp.copy(clazz, destCp, classnames);
  /external/libppp/src/
datalink.c 1296 struct fsm_retry copy; local
    [all...]

Completed in 760 milliseconds

<<21222324252627282930>>