Searched refs:copy (Results 151 - 175 of 2627) sorted by relevance

1234567891011>>

/external/chromium_org/ppapi/tests/
H A Dtest_buffer.cc98 // Implicitly test that the copy constructor doesn't cause a double-unmap on
100 pp::Buffer_Dev* copy = new pp::Buffer_Dev(*buffer); local
106 // Test that we can still write to copy's copy of the data.
107 char* copy_data = static_cast<char*>(copy->data());
111 delete copy;
/external/chromium_org/third_party/skia/src/core/
H A DSkWriter32.cpp30 size_t SkReader32::readIntoString(SkString* copy) { argument
33 if (copy) {
34 copy->set(ptr, len);
74 // we were external, so copy in the data
91 // We need to copy to an allocated buffer before returning.
96 // prepare us to do copy on write, by pretending the data buffer
/external/chromium_org/v8/tools/testrunner/objects/
H A Dtestcase.py44 copy = TestCase(self.suite, self.path, self.flags + flags, self.dependency)
45 copy.outcomes = self.outcomes
46 return copy
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DObjectArrays.java6 * You may obtain a copy of the License at
79 T[] copy = newArray(original, newLength);
81 original, 0, copy, 0, Math.min(original.length, newLength));
82 return copy;
/external/guava/guava-tests/test/com/google/common/collect/
H A DHashBasedTableTest.java6 * You may obtain a copy of the License at
75 Table<String, Integer, Character> copy = HashBasedTable.create(original);
76 assertEquals(original, copy);
77 assertEquals((Character) 'a', copy.get("foo", 1));
/external/guava/guava-tests/test/com/google/common/testing/
H A DSerializableTesterTest.java6 * You may obtain a copy of the License at
32 String copy = SerializableTester.reserializeAndAssert(original);
33 assertEquals(original, copy);
34 assertNotSame(original, copy);
/external/skia/src/core/
H A DSkWriter32.cpp30 size_t SkReader32::readIntoString(SkString* copy) { argument
33 if (copy) {
34 copy->set(ptr, len);
74 // we were external, so copy in the data
91 // We need to copy to an allocated buffer before returning.
96 // prepare us to do copy on write, by pretending the data buffer
/external/chromium_org/cc/resources/
H A Dpicture_unittest.cc191 // copy now points to the same spot as iterator,
193 Picture::PixelRefIterator copy = iterator; local
200 EXPECT_TRUE(copy);
201 EXPECT_TRUE(*copy == discardable_bitmap[2][1].pixelRef());
202 EXPECT_TRUE(++copy);
203 EXPECT_TRUE(*copy == discardable_bitmap[2][3].pixelRef());
204 EXPECT_TRUE(++copy);
205 EXPECT_TRUE(*copy == discardable_bitmap[3][2].pixelRef());
206 EXPECT_FALSE(++copy);
291 // copy no
293 Picture::PixelRefIterator copy = iterator; local
[all...]
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dautofill_tooltip_controller.h34 @property(copy, nonatomic) NSString* message;
/external/chromium_org/content/renderer/dom_storage/
H A Dwebstoragenamespace_impl.cc37 WebStorageNamespace* WebStorageNamespaceImpl::copy() { function in class:content::WebStorageNamespaceImpl
40 // book-keeping necessary to make it a true copy-on-write despite not doing
/external/chromium_org/net/spdy/
H A Dspdy_pinnable_buffer_piece.cc17 std::copy(buffer_, buffer_ + length_, storage_.get());
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleBackgroundData.h18 * You should have received a copy of the GNU Library General Public License
39 PassRefPtr<StyleBackgroundData> copy() const { return adoptRef(new StyleBackgroundData(*this)); } function in class:blink::StyleBackgroundData
H A DStyleGridItemData.h44 PassRefPtr<StyleGridItemData> copy() const { return adoptRef(new StyleGridItemData(*this)); } function in class:blink::StyleGridItemData
H A DStyleInheritedData.h18 * You should have received a copy of the GNU Library General Public License
40 PassRefPtr<StyleInheritedData> copy() const { return adoptRef(new StyleInheritedData(*this)); } function in class:blink::StyleInheritedData
H A DStyleMarqueeData.h18 * You should have received a copy of the GNU Library General Public License
38 PassRefPtr<StyleMarqueeData> copy() const { return adoptRef(new StyleMarqueeData(*this)); } function in class:blink::StyleMarqueeData
H A DStyleSurroundData.h18 * You should have received a copy of the GNU Library General Public License
38 PassRefPtr<StyleSurroundData> copy() const { return adoptRef(new StyleSurroundData(*this)); } function in class:blink::StyleSurroundData
H A DStyleTransformData.h18 * You should have received a copy of the GNU Library General Public License
38 PassRefPtr<StyleTransformData> copy() const { return adoptRef(new StyleTransformData(*this)); } function in class:blink::StyleTransformData
H A DStyleVisualData.h18 * You should have received a copy of the GNU Library General Public License
38 PassRefPtr<StyleVisualData> copy() const { return adoptRef(new StyleVisualData(*this)); } function in class:blink::StyleVisualData
H A DStyleWillChangeData.h19 PassRefPtr<StyleWillChangeData> copy() const { return adoptRef(new StyleWillChangeData(*this)); } function in class:blink::StyleWillChangeData
/external/chromium_org/third_party/WebKit/Source/core/workers/
H A DWorkerThreadStartupData.cpp39 : m_scriptURL(scriptURL.copy())
/external/chromium_org/third_party/brotli/src/woff2/
H A Dfile.h5 // You may obtain a copy of the License at
34 std::copy(content.begin(),
/external/chromium_org/third_party/icu/source/common/unicode/
H A Durep.h121 * @param dst array in which to copy characters. The length of
142 * @param dest the index at which the copy of the UChars should be
146 void (*copy)(UReplaceable* rep, member in struct:UReplaceableCallbacks
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/
H A DRTCICECandidate.mm48 _sdpMid = [sdpMid copy];
50 _sdp = [sdp copy];
H A DRTCICEServer.mm50 _username = [username copy];
51 _password = [password copy];
/external/chromium_org/third_party/skia/experimental/webtry/poly/
H A DGruntfile.js42 copy: {
53 grunt.loadNpmTasks('grunt-contrib-copy');
62 grunt.registerTask('notmin', ['shell:bower_install', 'bower', 'concat', 'copy:simple']);

Completed in 3441 milliseconds

1234567891011>>