Searched refs:copy (Results 101 - 125 of 2627) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleDeprecatedFlexibleBoxData.h18 * You should have received a copy of the GNU Library General Public License
36 PassRefPtr<StyleDeprecatedFlexibleBoxData> copy() const { return adoptRef(new StyleDeprecatedFlexibleBoxData(*this)); } function in class:blink::StyleDeprecatedFlexibleBoxData
H A DStyleFilterData.h38 PassRefPtr<StyleFilterData> copy() const { return adoptRef(new StyleFilterData(*this)); } function in class:blink::StyleFilterData
H A DStyleFlexibleBoxData.h39 PassRefPtr<StyleFlexibleBoxData> copy() const { return adoptRef(new StyleFlexibleBoxData(*this)); } function in class:blink::StyleFlexibleBoxData
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dmain.c79 char *copy; local
82 copy = malloc(len);
83 memcpy(copy, str, len);
84 return (copy);
/external/chromium_org/tools/gyp/test/compiler-override/
H A Dgyptest-compiler-env.py12 import copy namespace
44 oldenv = os.environ.copy()
63 oldenv = os.environ.copy()
89 oldenv = os.environ.copy()
/external/chromium_org/tools/gyp/test/toolsets/
H A Dgyptest-toolsets.py18 oldenv = os.environ.copy()
/external/deqp/framework/delibs/debase/
H A DdeMemory.c9 * You may obtain a copy of the License at
139 char* copy = malloc(len+1);
140 memcpy(copy, str, len);
141 copy[len] = 0;
142 return copy;
/external/javassist/src/main/javassist/bytecode/
H A DDeprecatedAttribute.java47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:DeprecatedAttribute
H A DSyntheticAttribute.java47 * Makes a copy.
49 * @param newCp the constant pool table used by the new copy.
52 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SyntheticAttribute
/external/skia/tools/
H A DCopyTilesRenderer.cpp78 SkBitmap copy; local
81 dst.pixelRef()->readPixels(&copy, &subset);
84 dst.copyTo(&copy);
88 success &= SkImageEncoder::EncodeFile(pathWithNumber.c_str(), copy,
/external/chromium_org/cc/animation/
H A Danimation_registrar.cc15 AnimationControllerMap copy = all_animation_controllers_; local
16 for (AnimationControllerMap::iterator iter = copy.begin();
17 iter != copy.end();
/external/chromium_org/content/common/dom_storage/
H A Ddom_storage_map_unittest.cc30 scoped_refptr<DOMStorageMap> copy; local
39 copy = map->DeepCopy();
40 EXPECT_EQ(0u, copy->Length());
41 EXPECT_EQ(0u, copy->bytes_used());
72 copy = map->DeepCopy();
73 EXPECT_EQ(2u, copy->Length());
74 EXPECT_EQ(kValue, copy->GetItem(kKey).string());
75 EXPECT_EQ(kValue2, copy->GetItem(kKey2).string());
76 EXPECT_EQ(kKey, copy->Key(0).string());
77 EXPECT_EQ(kKey2, copy
[all...]
/external/chromium_org/content/common/
H A Dset_process_title_linux.cc80 char* copy = strdup(environ[i]); local
82 if (!copy)
84 environ[i] = copy;
/external/chromium_org/net/spdy/
H A Dspdy_prefixed_buffer_reader.cc31 std::copy(prefix_, prefix_ + count, out);
37 out = std::copy(prefix_, prefix_ + prefix_length_, out);
44 std::copy(suffix_, suffix_ + count, out);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebRange.cpp100 WebRange copy(*this);
101 copy.m_private->expand("block", IGNORE_EXCEPTION);
102 return copy;
/external/chromium_org/third_party/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.h70 // TiXmlString copy constructor
71 TiXmlString ( const TiXmlString & copy) : rep_(0) argument
73 init(copy.length());
74 memcpy(start(), copy.data(), length());
78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0) argument
80 init( static_cast<size_type>( strlen(copy) ));
81 memcpy(start(), copy, length()); local
97 TiXmlString& operator = (const char * copy) argument
99 return assign( copy, (size_type)strlen(copy));
102 operator =(const TiXmlString & copy) argument
[all...]
/external/chromium_org/third_party/webrtc/base/
H A Dtaskparent.cc73 ChildSet copy = *children_; local
74 for (ChildSet::iterator it = copy.begin(); it != copy.end(); ++it) {
/external/guava/guava-tests/test/com/google/common/collect/
H A DHashMultimapTest.java6 * You may obtain a copy of the License at
47 HashMultimap<String, Integer> copy = HashMultimap.create(multimap);
48 assertEquals(multimap, copy);
49 assertEquals(8, copy.expectedValuesPerKey);
/external/mockito/src/org/mockito/internal/util/reflection/
H A DLenientCopyTool.java16 copy(from, mock, from.getClass(), mock.getClass().getSuperclass());
20 copy(from, to, from.getClass(), to.getClass());
23 private <T> void copy(T from, T to, Class fromClazz, Class toClass) { method in class:LenientCopyTool
/external/qemu/hw/nvram/
H A Dfw_cfg.c6 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
207 uint16_t *copy; local
209 copy = g_malloc(sizeof(value));
210 *copy = cpu_to_le16(value);
211 return fw_cfg_add_bytes(opaque, key, (uint8_t *)copy, sizeof(value));
216 uint32_t *copy; local
218 copy = g_malloc(sizeof(value));
219 *copy = cpu_to_le32(value);
220 return fw_cfg_add_bytes(opaque, key, (uint8_t *)copy, sizeo
225 uint64_t *copy; local
[all...]
/external/sfntly/cpp/src/test/tinyxml/
H A Dtinystr.h70 // TiXmlString copy constructor
71 TiXmlString ( const TiXmlString & copy) : rep_(0) argument
73 init(copy.length());
74 memcpy(start(), copy.data(), length());
78 TIXML_EXPLICIT TiXmlString ( const char * copy) : rep_(0) argument
80 init( static_cast<size_type>( strlen(copy) ));
81 memcpy(start(), copy, length()); local
97 TiXmlString& operator = (const char * copy) argument
99 return assign( copy, (size_type)strlen(copy));
102 operator =(const TiXmlString & copy) argument
[all...]
/external/stlport/test/unit/
H A Dbinsert_test.cpp35 bit = copy(array, array + 3, bit);
41 copy(array, array + 3, bit);
50 copy(array, array + 3, back_inserter(names));
H A Dinsert_test.cpp40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i));
49 copy(array1, array1 + 3, itd);
62 copy(array2, array2 + 3, inserter(names, i));
/external/tinyxml/
H A Dtinystr.h33 * - added "copy" constructor with length, and most compare operators.
67 // TiXmlString copy constructor
68 TiXmlString (const TiXmlString & copy) argument
70 init(copy.length());
71 memcpy(start(), copy.data(), length());
75 TiXmlString (const char * copy) argument
77 init( static_cast<size_type>( strlen(copy) ));
78 memcpy(start(), copy, length()); local
95 TiXmlString& operator = (const char * copy) argument
97 return assign( copy, (size_typ
101 operator =(const TiXmlString & copy) argument
[all...]
/external/chromium_org/base/memory/
H A Dlinked_ptr.h87 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

Completed in 716 milliseconds

1234567891011>>