Searched defs:copy (Results 1 - 25 of 678) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/docs/examples/api/devtools/panels/chrome-query/
H A Ddevtools.js8 // Make a shallow copy with a null prototype, so that sidebar does not
11 var copy = { __proto__: null };
13 copy[props[i]] = data[props[i]];
14 return copy;
/external/tcpdump/missing/
H A Dstrdup.c50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
/external/clang/test/CodeGen/
H A D2007-04-24-VolatileStructCopy.c8 void copy(volatile struct foo *p, struct foo *q) { function
/external/grub/stage2/
H A Dnbloader.S15 * You should have received a copy of the GNU General Public License
63 /* Always copy 32k bytes */
86 jg copy
89 copy: label
105 /* Use word-size copy */
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DMemoable.java6 * Produce a copy of this object with its configuration and in its current state.
11 public Memoable copy(); method in interface:Memoable
18 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DTextCodecASCIIFastPath.h36 static void copy(LChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
41 static void copy(UChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
50 static void copy(LChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
55 static void copy(UChar* destination, const uint8_t* source) function in struct:WTF::UCharByteFiller
70 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
75 UCharByteFiller<sizeof(WTF::MachineWord)>::copy(destination, source);
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dxstrdup.c48 char *copy; local
51 copy = yasm_xmalloc(len);
52 memcpy(copy, str, len);
53 return (copy);
60 char *copy; local
64 copy = yasm_xmalloc(len+1);
65 memcpy(copy, str, len);
66 copy[len] = '\0';
67 return (copy);
/external/chromium_org/tools/json_schema_compiler/
H A Djson_schema.py5 import copy namespace
47 # Return a copy of the object so that any changes a caller makes won't affect
49 return copy.deepcopy(_cache[filename])
/external/compiler-rt/lib/asan/lit_tests/TestCases/
H A Dstrdup_oob_test.cc11 char *copy = strdup(kString); local
12 int x = copy[4 + argc]; // BOOM
/external/elfutils/libdwfl/
H A Ddwfl_module_report_build_id.c14 You should have received a copy of the GNU General Public License along
81 void *copy = NULL; local
84 copy = malloc (len);
85 if (unlikely (copy == NULL))
90 memcpy (copy, bits, len);
95 mod->build_id_bits = copy;
/external/chromium_org/chrome/test/pyautolib/
H A Dtimer_queue.py5 import copy namespace
48 'next time': next_time, 'args': copy.copy(args)})
/external/chromium_org/native_client_sdk/src/tools/
H A Drun.py10 import copy namespace
59 env = copy.copy(os.environ)
/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:WebCore::StyleDeprecatedFlexibleBoxData
H A DStyleFilterData.h38 PassRefPtr<StyleFilterData> copy() const { return adoptRef(new StyleFilterData(*this)); } function in class:WebCore::StyleFilterData
H A DStyleFlexibleBoxData.h39 PassRefPtr<StyleFlexibleBoxData> copy() const { return adoptRef(new StyleFlexibleBoxData(*this)); } function in class:WebCore::StyleFlexibleBoxData
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:WebCore::StyleMarqueeData
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceError.cpp44 ResourceError ResourceError::copy() const function in class:WebCore::ResourceError
/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/libaddressinput/chromium/cpp/test/
H A Drule_test.cc5 // You may obtain a copy of the License at
53 Rule copy; local
54 EXPECT_NE(rule.GetFormat(), copy.GetFormat());
55 EXPECT_NE(rule.GetSubKeys(), copy.GetSubKeys());
56 EXPECT_NE(rule.GetLanguages(), copy.GetLanguages());
57 EXPECT_NE(rule.GetLanguage(), copy.GetLanguage());
59 copy.GetAdminAreaNameMessageId());
61 copy.GetPostalCodeNameMessageId());
63 copy.CopyFrom(rule);
64 EXPECT_EQ(rule.GetFormat(), copy
[all...]
/external/chromium_org/third_party/tlslite/tlslite/utils/
H A Dhmac.py64 def copy(self): member in class:HMAC
65 """Return a separate copy of this hashing object.
67 An update to this copy won't affect the original object.
72 other.inner = self.inner.copy()
73 other.outer = self.outer.copy()
83 h = self.outer.copy()
/external/chromium_org/tools/grit/grit/format/policy_templates/
H A Dpolicy_template_generator.py7 import copy namespace
45 self._policy_data = copy.deepcopy(policy_data)
/external/chromium_org/tools/gyp/pylib/gyp/
H A DMSVSUtil.py7 import copy namespace
28 """Performs a partial deep-copy on |in_dict|, only copying the keys in |keys|.
31 in_dict: The dictionary to copy.
41 d[key] = copy.deepcopy(in_dict[key])
100 new_target_dicts[name] = copy.copy(target_dicts[t])
112 dependencies = copy.copy(new_target_dicts[t].get('dependencies', []))
213 copy_dict = copy.deepcopy(base_dict)
223 # copy targe
[all...]
/external/chromium_org/tools/gyp/test/compiler-override/
H A Dgyptest-compiler-env.py12 import copy namespace
46 oldenv = os.environ.copy()
66 oldenv = os.environ.copy()
92 oldenv = os.environ.copy()
/external/chromium_org/ui/gfx/
H A Dpath_gtk.cc36 GdkRegion* copy = gdk_region_copy(r1); local
37 gdk_region_intersect(copy, r2);
38 return copy;
43 GdkRegion* copy = gdk_region_copy(r1); local
44 gdk_region_union(copy, r2);
45 return copy;
50 GdkRegion* copy = gdk_region_copy(r1); local
51 gdk_region_subtract(copy, r2);
52 return copy;
/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);

Completed in 1214 milliseconds

1234567891011>>