HomeSort by relevance Sort by last modified time
    Searched defs:Copy (Results 26 - 50 of 157) sorted by null

12 3 4 5 6 7

  /external/v8/src/crankshaft/
hydrogen-removable-simulates.cc 93 ? pred_state->Copy(succ_block, pred_block, zone)
138 State* Copy(HBasicBlock* succ_block, HBasicBlock* pred_block, Zone* zone) {
139 State* copy = new(zone) State(*this); local
141 PrintF("[copy state %p from B%d to new state %p for B%d]\n",
143 reinterpret_cast<void*>(copy), succ_block->block_id());
145 return copy;
hydrogen-flow-engine.h 39 inline NoState* Copy(HBasicBlock* succ, Zone* zone) {
  /external/webrtc/webrtc/p2p/base/
sessiondescription.cc 73 SessionDescription* SessionDescription::Copy() const {
74 SessionDescription* copy = new SessionDescription(*this); local
75 // Copy all ContentDescriptions.
76 for (ContentInfos::iterator content = copy->contents_.begin();
77 content != copy->contents().end(); ++content) {
78 content->description = content->description->Copy();
80 return copy;
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmailCopyContextMenu.java 7 * You may obtain a copy of the License at
62 * Copy class for handling click event on the "Copy" button and storing
65 private class Copy implements MenuItem.OnMenuItemClickListener {
68 public Copy(CharSequence text) {
74 copy(mText);
81 * Copy the input text sequence to the system clipboard.
84 private void copy(CharSequence text) { method in class:EmailCopyContextMenu
109 new Copy(mAddress));
  /external/chromium-trace/catapult/third_party/gsutil/gslib/third_party/storage_apitools/
storage_v1_client.py 5 # You may obtain a copy of the License at
777 'Copy': base_api.ApiMethodInfo(
779 method_id=u'storage.objects.copy',
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1_client.py 753 'Copy': base_api.ApiMethodInfo(
755 method_id=u'storage.objects.copy',
    [all...]
  /external/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 174 auto Copy = *this;
175 Copy.SupportedKind = Kind;
176 Copy.RestrictKind =
178 return Copy;
  /external/compiler-rt/lib/profile/
InstrProfilingFile.c 72 char *Copy = malloc(strlen(Filename) + 1);
73 strcpy(Copy, Filename);
74 __llvm_profile_recursive_mkdir(Copy);
75 free(Copy);
  /external/gmock/include/gmock/internal/
gmock-internal-utils.h 352 // other types. Useful for saving a copy of a function argument.
387 // - Copy(raw_container) returns an STL-style container view of a
388 // copy of raw_container, which is a RawContainer.
404 static type Copy(const RawContainer& container) { return container; }
442 static type Copy(const Element (&array)[N]) {
466 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) {
  /external/google-breakpad/src/testing/include/gmock/internal/
gmock-internal-utils.h 374 // - Copy(raw_container) returns an STL-style container view of a
375 // copy of raw_container, which is a RawContainer.
391 static type Copy(const RawContainer& container) { return container; }
429 static type Copy(const Element (&array)[N]) {
453 static type Copy(const ::std::tr1::tuple<ElementPointer, Size>& array) {
  /external/libvpx/libvpx/test/
consistency_test.cc 98 void Copy(uint8_t *reference, uint8_t *source) {
161 Copy(source_data_[1], source_data_[0]);
162 Copy(reference_data_[0], source_data_[0]);
164 Copy(reference_data_[1], source_data_[0]);
181 Copy(source_data_[1], source_data_[0]);
191 Copy(source_data_[1], source_data_[0]);
192 Copy(reference_data_[0], source_data_[0]);
193 Copy(reference_data_[1], source_data_[0]);
198 Copy(reference_data_[1], source_data_[0]);
  /external/pdfium/xfa/src/fwl/src/lightwidget/
datetimepicker.cpp 111 FX_BOOL CFWL_DateTimePicker::Copy(CFX_WideString& wsCopy) {
112 return static_cast<IFWL_DateTimePicker*>(m_pIface)->Copy(wsCopy);
115 return static_cast<IFWL_DateTimePicker*>(m_pIface)->Copy(wsCut);
  /external/pdfium/xfa/src/fxfa/src/app/
xfa_ffwidget.h 98 virtual FX_BOOL Copy(CFX_WideString& wsCopy) { return FALSE; }
  /external/v8/src/compiler/
redundancy-elimination.cc 45 RedundancyElimination::EffectPathChecks::Copy(Zone* zone,
161 // Make a copy of the first input's checks and merge with the checks
163 EffectPathChecks* checks = EffectPathChecks::Copy(
  /external/webrtc/talk/media/webrtc/
webrtcvideoframe.cc 151 VideoFrame* WebRtcVideoFrame::Copy() const {
164 // Not exclusive already, need to copy buffer.
269 // making a redundant copy.
  /art/compiler/driver/
compiled_method_storage.cc 6 * You may obtain a copy of the License at
39 std::copy(array.begin(), array.end(), array_copy->begin());
159 const LengthPrefixedArray<T>* Copy(const ArrayRef<const T>& array) {
  /art/runtime/base/
arena_allocator.cc 6 * You may obtain a copy of the License at
94 void ArenaAllocatorStatsImpl<kCount>::Copy(const ArenaAllocatorStatsImpl& other) {
96 std::copy(other.alloc_stats_, other.alloc_stats_ + arraysize(alloc_stats_), alloc_stats_);
bit_vector.cc 6 * You may obtain a copy of the License at
59 Copy(&src);
290 void BitVector::Copy(const BitVector *src) {
291 // Get highest bit set, we only need to copy till then.
300 // Set upper bit to ensure right size before copy.
  /art/runtime/base/unix_file/
fd_file.cc 6 * You may obtain a copy of the License at
27 // Includes needed for FdFile::Copy().
265 bool FdFile::Copy(FdFile* input_file, int64_t offset, int64_t size) {
  /external/chromium-trace/catapult/common/py_utils/py_utils/
cloud_storage.py 127 gsutil_env = os.environ.copy()
199 def Copy(bucket_from, bucket_to, remote_path_from, remote_path_to):
200 """Copy a file from one location in CloudStorage to another.
335 if there is no local copy of file_path, but there is a hash file for it.
360 there is no local copy.
  /external/chromium-trace/catapult/telemetry/telemetry/internal/browser/
browser_options.py 5 import copy namespace
55 def Copy(self):
56 return copy.deepcopy(self)
248 # If set, copy the generated profile to this path on exit.
297 obj = self.__dict__.copy()
445 # Copy to self.
  /external/google-breakpad/src/processor/
basic_source_line_resolver_unittest.cc 71 virtual const CodeModule* Copy() const {
fast_source_line_resolver_unittest.cc 82 virtual const CodeModule* Copy() const {
stackwalker_unittest_utils.h 117 const google_breakpad::CodeModule *Copy() const {
160 const CodeModules *Copy() const { abort(); } // Tests won't use this.
  /external/llvm/include/llvm/ADT/
BitVector.h 92 /// BitVector copy ctor.
172 BitWord Copy = Bits[WordPos];
174 Copy &= ~0UL << BitPos;
176 if (Copy != 0)
177 return WordPos * BITWORD_SIZE + countTrailingZeros(Copy);

Completed in 2204 milliseconds

12 3 4 5 6 7