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

1 2 3 4 5 6 7 891011>>

  /external/chromium/testing/gtest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
  /external/chromium/ui/gfx/
point.h 58 Point copy = *this; local
59 copy.Offset(other.x_, other.y_);
60 return copy;
64 Point copy = *this; local
65 copy.Offset(-other.x_, -other.y_);
66 return copy;
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
tokenutil.py 7 # You may obtain a copy of the License at
22 import copy namespace
251 new_token.metadata = copy.copy(token.metadata)
  /external/chromium-trace/trace-viewer/third_party/gl-matrix/src/gl-matrix/
mat2.js 59 * Copy the values from one mat2 to another
65 mat2.copy = function(out, a) {
mat2d.js 78 * Copy the values from one mat2d to another
84 mat2d.copy = function(out, a) {
  /external/chromium_org/base/memory/
linked_ptr.h 86 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
87 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
91 copy(&ptr);
97 copy(&ptr);
104 copy(&ptr);
154 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:linked_ptr
  /external/chromium_org/build/android/buildbot/
bb_run_bot.py 8 import copy namespace
207 bot_map[to_id] = copy.deepcopy(bot_map[from_id])._replace(bot_id=to_id)
  /external/chromium_org/cc/resources/
picture_pile_impl_unittest.cc 501 // Copy test.
509 // copy now points to the same spot as iterator,
511 PicturePileImpl::PixelRefIterator copy = iterator; local
516 EXPECT_TRUE(copy);
517 EXPECT_TRUE(*copy == lazy_bitmap[0][1].pixelRef());
518 EXPECT_TRUE(++copy);
519 EXPECT_TRUE(*copy == lazy_bitmap[1][1].pixelRef());
520 EXPECT_FALSE(++copy);
picture_unittest.cc 174 // Copy test.
182 // copy now points to the same spot as iterator,
184 Picture::PixelRefIterator copy = iterator; local
191 EXPECT_TRUE(copy);
192 EXPECT_TRUE(*copy == lazy_bitmap[2][1].pixelRef());
193 EXPECT_TRUE(++copy);
194 EXPECT_TRUE(*copy == lazy_bitmap[2][3].pixelRef());
195 EXPECT_TRUE(++copy);
196 EXPECT_TRUE(*copy == lazy_bitmap[3][2].pixelRef());
197 EXPECT_FALSE(++copy);
282 Picture::PixelRefIterator copy = iterator; local
    [all...]
  /external/chromium_org/chrome/browser/plugins/
plugin_metadata.cc 123 PluginMetadata* copy = new PluginMetadata(identifier_, local
130 copy->versions_ = versions_;
131 return make_scoped_ptr(copy);
  /external/chromium_org/content/browser/
host_zoom_map_impl.cc 50 HostZoomMapImpl* copy = static_cast<HostZoomMapImpl*>(copy_interface); local
52 base::AutoLock copy_auto_lock(copy->lock_);
54 insert(copy->host_zoom_levels_.begin(), copy->host_zoom_levels_.end());
55 for (SchemeHostZoomLevels::const_iterator i(copy->
57 i != copy->scheme_host_zoom_levels_.end(); ++i) {
62 default_zoom_level_ = copy->default_zoom_level_;
  /external/chromium_org/content/common/
gamepad_seqlock_unittest.cc 40 TestData copy; local
44 copy = *data_;
47 EXPECT_EQ(copy.a + 100, copy.b);
48 EXPECT_EQ(copy.c, copy.b + copy.a);
  /external/chromium_org/crypto/
rsa_private_key_nss.cc 101 RSAPrivateKey* copy = new RSAPrivateKey();
102 copy->key_ = SECKEY_CopyPrivateKey(key);
103 copy->public_key_ = SECKEY_ConvertToPublicKey(key);
104 if (!copy->key_ || !copy->public_key_) {
106 delete copy;
109 return copy;
171 RSAPrivateKey* RSAPrivateKey::Copy() const {
172 RSAPrivateKey* copy = new RSAPrivateKey(); local
173 copy->key_ = SECKEY_CopyPrivateKey(key_)
    [all...]
  /external/chromium_org/media/cdm/ppapi/
linked_ptr.h 5 // This is a copy of base/linked_ptr.h with CHECKS/DCHECKS replaced with
89 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
90 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
94 copy(&ptr);
100 copy(&ptr);
107 copy(&ptr);
159 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:linked_ptr
  /external/chromium_org/media/tools/layout_tests/
layouttest_analyzer_helpers_unittest.py 6 import copy namespace
65 te_info_map2 = copy.copy(te_info_map1)
  /external/chromium_org/net/base/
address_list_unittest.cc 34 // Copy the addrinfo struct into an AddressList object and
39 // Copy the AddressList to another one.
78 AddressList copy; local
79 copy = list;
80 ASSERT_EQ(kNumElements, copy.size());
82 // Check if copy is independent.
83 copy[1] = IPEndPoint(copy[2].address(), 0xBEEF);
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-linked_ptr.h 60 // - it's safe to copy linked_ptr objects concurrently,
61 // - it's safe to copy *from* a linked_ptr and read its underlying
145 // Copy an existing linked_ptr<>, adding ourselves to the list of references.
146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); }
149 copy(&ptr);
155 copy(&ptr);
162 copy(&ptr);
203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
  /external/chromium_org/third_party/WebKit/Source/core/html/
TimeRanges.cpp 54 PassRefPtr<TimeRanges> TimeRanges::copy() const function in class:TimeRanges
96 RefPtr<TimeRanges> invertedOther = other->copy();
107 RefPtr<TimeRanges> unioned = copy();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleBoxData.h 18 * You should have received a copy of the GNU Library General Public License
38 PassRefPtr<StyleBoxData> copy() const { return adoptRef(new StyleBoxData(*this)); } function in class:WebCore::StyleBoxData
StyleGridData.h 45 PassRefPtr<StyleGridData> copy() const { return adoptRef(new StyleGridData(*this)); } function in class:WebCore::StyleGridData
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathByteStream.h 14 * You should have received a copy of the GNU Library General Public License
53 PassOwnPtr<SVGPathByteStream> copy() function in class:WebCore::SVGPathByteStream
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
baselineoptimizer.py 29 import copy namespace
165 new_results_by_directory = copy.copy(results_by_directory)
  /external/chromium_org/third_party/WebKit/public/platform/
WebFileSystem.h 90 virtual void copy(const WebURL& srcPath, const WebURL& destPath, WebFileSystemCallbacks) { BLINK_ASSERT_NOT_REACHED(); } function in class:blink::WebFileSystem
  /external/chromium_org/third_party/closure_linter/closure_linter/
tokenutil.py 7 # You may obtain a copy of the License at
22 import copy namespace
251 new_token.metadata = copy.copy(token.metadata)
  /external/chromium_org/third_party/freetype/src/base/
ftglyph.c 311 FT_Glyph copy; local
332 error = ft_new_glyph( source->library, clazz, &copy );
336 copy->advance = source->advance;
337 copy->format = source->format;
340 error = clazz->glyph_copy( source, copy );
343 FT_Done_Glyph( copy );
345 *target = copy;
402 /* copy advance while converting it to 16.16 format */
585 /* in case of success, copy the bitmap to the glyph bitmap */
590 /* copy advance *
    [all...]

Completed in 674 milliseconds

1 2 3 4 5 6 7 891011>>