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

<<31323334353637383940>>

  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSortedSetTest.java 6 * You may obtain a copy of the License at
154 SortedSet<String> copy = SerializableTester.reserialize(set); local
155 assertSame(set, copy);
202 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); local
203 assertEquals(set.comparator(), copy.comparator());
217 * to copy from that array to the destination array. This would be fine, but
218 * GWT has a bug: It refuses to copy from an E[] to an Object[] when E is an
316 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); local
317 assertTrue(Iterables.elementsEqual(set, copy));
318 assertEquals(set.comparator(), copy.comparator())
414 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); local
424 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); local
444 SortedSet<String> copy = copyOf(subset); local
451 SortedSet<String> copy = copyOf(headset); local
458 SortedSet<String> copy = copyOf(tailset); local
653 SortedSet<String> copy = SerializableTester.reserializeAndAssert(set); local
766 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list); local
784 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list); local
    [all...]
  /art/compiler/
image_writer.cc 6 * You may obtain a copy of the License at
488 Object* copy = reinterpret_cast<Object*>(dst); local
489 copy->SetField32(Object::MonitorOffset(), 0, false); // We may have inflated the lock during compilation.
490 image_writer->FixupObject(obj, copy);
493 void ImageWriter::FixupObject(const Object* orig, Object* copy) {
495 DCHECK(copy != NULL);
496 copy->SetClass(down_cast<Class*>(GetImageAddress(orig->GetClass())));
499 FixupClass(orig->AsClass(), down_cast<Class*>(copy));
501 FixupObjectArray(orig->AsObjectArray<Object>(), down_cast<ObjectArray<Object>*>(copy));
503 FixupMethod(orig->AsArtMethod(), down_cast<ArtMethod*>(copy));
    [all...]
  /bootable/recovery/applypatch/
applypatch.c 6 * You may obtain a copy of the License at
141 char* copy = strdup(filename); local
142 const char* magic = strtok(copy, ":");
316 free(copy);
363 char* copy = strdup(target); local
364 const char* magic = strtok(copy, ":");
519 free(copy);
592 // we were killed in the middle of patching it. A copy of it
768 printf("source file is bad; trying copy\n");
773 printf("failed to read copy file\n")
    [all...]
  /bootable/recovery/
recovery.cpp 6 * You may obtain a copy of the License at
250 // How much of the temp log we have copied to the copy in cache.
293 // Copy logs to cache so the system can find out what happened.
305 // copy our log file to cache as well (for the system to read), and
432 // Reset the pointer so we copy from the beginning of the temp
709 char* copy = copy_sideloaded_package(new_path); local
713 if (copy) {
714 result = install_package(copy, wipe_cache, TEMPORARY_INSTALL_FILE);
715 free(copy);
935 // starts a copy of itself from the apply_from_adb() function
    [all...]
  /external/chromium/base/
file_path.cc 1205 StringType copy = path_; local
    [all...]
values.cc 13 // Make a deep copy of |node|, but don't include empty lists or dictionaries
14 // in the copy. It's possible for this function to return NULL and it
21 ListValue* copy = new ListValue; local
26 copy->Append(child_copy);
28 if (!copy->empty())
29 return copy;
31 delete copy;
37 DictionaryValue* copy = new DictionaryValue; local
45 copy->SetWithoutPathExpansion(*it, child_copy);
47 if (!copy->empty()
625 Value* copy = CopyWithoutEmptyChildren(this); local
    [all...]
values_unittest.cc 467 scoped_ptr<DictionaryValue> copy; local
468 copy.reset(dv.DeepCopy());
469 EXPECT_TRUE(dv.Equals(copy.get()));
476 EXPECT_FALSE(dv.Equals(copy.get()));
477 copy->Set("f", list->DeepCopy());
478 EXPECT_TRUE(dv.Equals(copy.get()));
481 EXPECT_FALSE(dv.Equals(copy.get()));
484 copy.reset(dv.DeepCopy());
485 EXPECT_TRUE(dv.Equals(copy.get()));
486 copy->Remove("a", NULL)
    [all...]
  /external/chromium/chrome/browser/sync/engine/
syncer_thread.cc 788 SyncSessionJob copy = *job_to_execute; local
789 copy.is_canary_job = is_canary_job;
790 DoSyncSessionJob(copy);
    [all...]
  /external/chromium/net/base/
host_resolver_impl_unittest.cc 103 CaptureList copy; local
106 copy = capture_list_;
108 return copy;
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_win.cc 209 // Schannel will make its own copy of client_cert.
357 PCCERT_CONTEXT copy; local
360 &copy);
362 return ok ? copy : NULL;
525 // Copy it to our own certificate store, so that we can close the "MY"
    [all...]
  /external/chromium/third_party/libjingle/source/talk/base/
stream.cc 743 const size_t copy = data_length_; local
744 const size_t tail_copy = _min(copy, buffer_length_ - read_position_);
746 memcpy(buffer + tail_copy, &buffer_[0], copy - tail_copy);
767 const size_t copy = _min(bytes, available);
768 const size_t tail_copy = _min(copy, buffer_length_ - read_position_);
771 memcpy(p + tail_copy, &buffer_[0], copy - tail_copy);
772 read_position_ = (read_position_ + copy) % buffer_length_;
773 data_length_ -= copy;
775 *bytes_read = copy;
778 if (!was_writable && copy > 0)
800 const size_t copy = _min(bytes, available); local
    [all...]
  /external/chromium_org/base/files/
file_path.cc 1296 StringType copy = path_; local
    [all...]
  /external/chromium_org/base/third_party/symbolize/
demangle.cc 448 State copy = *state; local
452 *state = copy;
469 State copy = *state; local
474 *state = copy;
490 State copy = *state; local
496 *state = copy;
509 State copy = *state; local
514 LeaveNestedName(state, copy.nest_level) &&
518 *state = copy;
567 State copy = *state local
581 State copy = *state; local
681 State copy = *state; local
740 State copy = *state; local
803 State copy = *state; local
826 State copy = *state; local
838 State copy = *state; local
876 State copy = *state; local
939 State copy = *state; local
949 State copy = *state; local
960 State copy = *state; local
979 State copy = *state; local
996 State copy = *state; local
1013 State copy = *state; local
1033 State copy = *state; local
1055 State copy = *state; local
1078 State copy = *state; local
1126 State copy = *state; local
1160 State copy = *state; local
1178 State copy = *state; local
1195 State copy = *state; local
    [all...]
  /external/chromium_org/base/
values_unittest.cc 511 scoped_ptr<DictionaryValue> copy; local
512 copy.reset(dv.DeepCopy());
513 EXPECT_TRUE(dv.Equals(copy.get()));
520 EXPECT_FALSE(dv.Equals(copy.get()));
521 copy->Set("f", list->DeepCopy());
522 EXPECT_TRUE(dv.Equals(copy.get()));
525 EXPECT_FALSE(dv.Equals(copy.get()));
528 copy.reset(dv.DeepCopy());
529 EXPECT_TRUE(dv.Equals(copy.get()));
530 copy->Remove("a", NULL)
    [all...]
  /external/chromium_org/extensions/browser/
event_router.cc 587 // to avoid lifetime issues. Use a separate copy of the event args, so they
757 Event* copy = new Event(event_name, local
763 copy->will_dispatch_callback = will_dispatch_callback;
764 return copy;
  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
KURL.cpp 196 // FIXME: We should be able to skip this extra copy and created an
198 return KURL(ParsedURLString, url).copy();
239 m_innerURL = adoptPtr(new KURL(other.m_innerURL->copy()));
249 m_innerURL = adoptPtr(new KURL(other.m_innerURL->copy()));
255 KURL KURL::copy() const function in class:WebCore::KURL
263 result.m_innerURL = adoptPtr(new KURL(m_innerURL->copy()));
  /external/chromium_org/third_party/WebKit/Source/web/
WebPluginContainerImpl.cpp 339 void WebPluginContainerImpl::copy() function in class:blink::WebPluginContainerImpl
352 if (name != "Copy")
355 copy();
764 // Only copy if there's a selection, so that we only ever do this
768 copy();
776 // Copy stashed info over, and only copy here in order not to interfere
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
test.py 30 import copy namespace
  /external/chromium_org/third_party/gtk+/gtk/
compose-parse.py 18 from copy import copy namespace
54 * You should have received a copy of the GNU Lesser General Public
574 original_sequence = copy(sequence)
575 stats_sequence = copy(sequence)
732 xorg_compose_sequences = copy(xorg_compose_sequences_uniqued)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
unistr.cpp 78 // need to copy areas that may overlap
483 // we always copy the length
498 // copy all fields, share the reference-counted buffer
513 // -> allocate a new buffer and copy the contents
515 // src is a writable alias; we make a copy of that instead
735 // do not copy anything if we alias dst itself
1349 UnicodeString::copy(int32_t start, int32_t limit, int32_t dest) { function in class:UnicodeString
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
dtitvinf.cpp 644 UnicodeString* copy = new UnicodeString[kIPI_MAX_INDEX]; local
647 copy[i] = value[i];
649 target->put(UnicodeString(*key), copy, status);
  /external/chromium_org/third_party/icu/source/test/cintltst/
cdattst.c 59 UDateFormat *copy; local
141 copy=udat_clone(def, &status);
145 /*if(def != copy)
370 udat_close(copy);
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
srchtest.cpp 652 StringSearch *copy = new StringSearch(*result); local
653 if (*(copy->getCollator()) != *(result->getCollator()) ||
654 copy->getBreakIterator() != result->getBreakIterator() ||
655 copy->getMatchedLength() != result->getMatchedLength() ||
656 copy->getMatchedStart() != result->getMatchedStart() ||
657 copy->getOffset() != result->getOffset() ||
658 copy->getPattern() != result->getPattern() ||
659 copy->getText() != result->getText() ||
660 *(copy) != *(result))
664 delete copy;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/base/
stream.cc 946 const size_t copy = data_length_; local
947 const size_t tail_copy = _min(copy, buffer_length_ - read_position_);
949 memcpy(buffer + tail_copy, &buffer_[0], copy - tail_copy);
977 size_t copy = 0;
978 StreamResult result = ReadOffsetLocked(buffer, bytes, 0, &copy);
983 read_position_ = (read_position_ + copy) % buffer_length_;
984 data_length_ -= copy;
986 *bytes_read = copy;
990 if (!was_writable && copy > 0) {
1002 size_t copy = 0 local
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/evp/
evp_locl.h 297 int (*copy)(EVP_PKEY_CTX *dst, EVP_PKEY_CTX *src); member in struct:evp_pkey_method_st

Completed in 972 milliseconds

<<31323334353637383940>>