Searched defs:copy (Results 1 - 25 of 718) 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/chromium_org/tools/perf/measurements/
H A Dsmooth_gesture_util.py4 import copy namespace
22 return copy.copy(interaction_record)
30 return copy.copy(interaction_record)
/external/libedit/src/
H A Dwcsdup.c9 * Permission to use or copy this software for any purpose is hereby granted
29 wchar_t *copy; local
35 copy = malloc(len * sizeof (wchar_t));
37 if (!copy)
40 return wmemcpy(copy, str, len);
/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/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
54 # Return a copy of the object so that any changes a caller makes won't affect
56 return copy.deepcopy(_cache[filename])
/external/compiler-rt/test/asan/TestCases/
H A Dstrdup_oob_test.cc11 char *copy = strdup(kString); local
12 int x = copy[4 + argc]; // BOOM
/external/deqp/framework/delibs/decpp/
H A DdeMemPool.cpp9 * You may obtain a copy of the License at
35 char* copy = (char*)pool->alloc(size); local
37 std::copy(string, string+size, copy);
39 return copy;
/external/elfutils/0.153/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/browser/ui/bookmarks/
H A Dbookmark_drag_drop.cc26 bool copy) {
35 DCHECK(copy ||
40 if (copy) {
47 return copy ? ui::DragDropTypes::DRAG_COPY : ui::DragDropTypes::DRAG_MOVE;
22 DropBookmarks(Profile* profile, const BookmarkNodeData& data, const BookmarkNode* parent_node, int index, bool copy) argument
/external/chromium_org/native_client_sdk/src/tools/
H A Drun.py10 import copy namespace
54 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: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
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 DStyleWillChangeData.h19 PassRefPtr<StyleWillChangeData> copy() const { return adoptRef(new StyleWillChangeData(*this)); } function in class:blink::StyleWillChangeData
/external/chromium_org/third_party/WebKit/Source/platform/network/
H A DResourceError.cpp44 ResourceError ResourceError::copy() const function in class:blink::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/tools/grit/grit/format/policy_templates/
H A Dpolicy_template_generator.py7 import copy namespace
44 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])
113 dependencies = copy.copy(new_target_dicts[t].get(deptype, []))
214 copy_dict = copy.deepcopy(base_dict)
224 # copy targe
[all...]
/external/chromium_org/tools/gyp/test/compiler-override/
H A Dgyptest-compiler-env-toolchain.py12 import copy namespace
H A Dgyptest-compiler-env.py12 import copy namespace
44 oldenv = os.environ.copy()
63 oldenv = os.environ.copy()
89 oldenv = os.environ.copy()

Completed in 3888 milliseconds

1234567891011>>