Searched defs:copy (Results 26 - 50 of 718) sorted by relevance

1234567891011>>

/external/clang/test/SemaCXX/
H A Dconstexpr-duffs-device.cpp4 constexpr void copy(const char *from, unsigned long count, char *to) { function
22 copy("Hello, world!", 14, stuff);
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefstruct.c21 BobTheStruct copy; local
32 memset(&copy, 0x2A, sizeof(copy));
40 copy = fiddly;
43 if ( &copy == &fiddly ) {
48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]);
49 if ( (fiddly.ps[i] != copy
[all...]
/external/icu/icu4c/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/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/okhttp/okio/src/main/java/okio/
H A DOkio.java6 * You may obtain a copy of the License at
37 public static void copy(OkBuffer source, long offset, long byteCount, OutputStream sink) method in class:Okio
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowWifiConfiguration.java32 public WifiConfiguration copy(){ method in class:ShadowWifiConfiguration
/external/apache-http/src/org/apache/http/params/
H A DDefaultedHttpParams.java13 * with the License. You may obtain a copy of the License at
66 * Creates a copy of the local collection with the same default
68 public HttpParams copy() { method in class:DefaultedHttpParams
69 HttpParams clone = this.local.copy();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DSHA384Digest.java31 * Copy constructor. This will copy the state of the provided
88 public Memoable copy() method in class:SHA384Digest
H A DSHA512Digest.java31 * Copy constructor. This will copy the state of the provided
90 public Memoable copy() method in class:SHA512Digest
/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/chrome/common/extensions/docs/server2/
H A Dreference_resolver.py5 from copy import copy namespace
165 link = copy(link)
/external/chromium_org/chrome/tools/build/win/
H A Dsln_deps.py6 import copy namespace
74 # First, create a copy of the map.
75 projects_reversed = copy.deepcopy(projects)
/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/content/public/android/javatests/src/org/chromium/content/browser/
H A DClipboardTest.java65 copy(adapter);
94 private void copy(final ImeAdapter adapter) { method in class:ClipboardTest
98 adapter.copy();
/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/native_client_sdk/src/build_tools/
H A Deasy_template.py6 import copy namespace
67 template_dict = copy.copy(template_dict)
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Din_file.py29 import copy namespace
58 self.parameters = copy.deepcopy(default_parameters if default_parameters else {})
60 self._valid_values = copy.deepcopy(valid_values if valid_values else {})
134 args = copy.deepcopy(self._defaults)
/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 DStyleMultiColData.h18 * You should have received a copy of the GNU Library General Public License
41 PassRefPtr<StyleMultiColData> copy() const { return adoptRef(new StyleMultiColData(*this)); } function in class:blink::StyleMultiColData
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

Completed in 5479 milliseconds

1234567891011>>