Searched defs:copy (Results 51 - 75 of 718) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleVisualData.h18 * You should have received a copy of the GNU Library General Public License
38 PassRefPtr<StyleVisualData> copy() const { return adoptRef(new StyleVisualData(*this)); } function in class:blink::StyleVisualData
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCrossThreadCopier.cpp43 CrossThreadCopierBase<false, false, false, KURL>::Type CrossThreadCopierBase<false, false, false, KURL>::copy(const KURL& url) function in class:blink::CrossThreadCopierBase
45 return url.copy();
48 CrossThreadCopierBase<false, false, false, String>::Type CrossThreadCopierBase<false, false, false, String>::copy(const String& str) function in class:blink::CrossThreadCopierBase
53 CrossThreadCopierBase<false, false, false, ResourceError>::Type CrossThreadCopierBase<false, false, false, ResourceError>::copy(const ResourceError& error) function in class:blink::CrossThreadCopierBase
55 return error.copy();
58 CrossThreadCopierBase<false, false, false, ResourceRequest>::Type CrossThreadCopierBase<false, false, false, ResourceRequest>::copy(const ResourceRequest& request) function in class:blink::CrossThreadCopierBase
63 CrossThreadCopierBase<false, false, false, ResourceResponse>::Type CrossThreadCopierBase<false, false, false, ResourceResponse>::copy(const ResourceResponse& response) function in class:blink::CrossThreadCopierBase
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DCStringTest.cpp106 CString copy = string; local
109 ASSERT_TRUE(string != copy);
111 ASSERT_STREQ(copy.data(), initialString);
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dparsepos.h72 * @param copy the object to be copied from.
75 ParsePosition(const ParsePosition& copy) argument
76 : UObject(copy),
77 index(copy.index),
78 errorIndex(copy.errorIndex)
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy) argument
185 index = copy.index;
186 errorIndex = copy.errorIndex;
191 ParsePosition::operator==(const ParsePosition& copy) cons
[all...]
/external/chromium_org/third_party/libaddressinput/src/cpp/test/
H A Drule_test.cc5 // You may obtain a copy of the License at
65 Rule copy; local
66 EXPECT_NE(rule.GetFormat(), copy.GetFormat());
67 EXPECT_NE(rule.GetLatinFormat(), copy.GetLatinFormat());
68 EXPECT_NE(rule.GetId(), copy.GetId());
69 EXPECT_NE(rule.GetRequired(), copy.GetRequired());
70 EXPECT_NE(rule.GetSubKeys(), copy.GetSubKeys());
71 EXPECT_NE(rule.GetLanguages(), copy.GetLanguages());
73 copy.GetAdminAreaNameMessageId());
75 copy
365 Rule copy; local
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_import_prototypes.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
84 ir_function_signature *copy = ir->clone_prototype(mem_ctx, NULL); local
86 this->function->add_signature(copy);
/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/chromium_org/tools/deep_memory_profiler/lib/
H A Drange_dict.py61 def copy(self): # pylint: disable=R0201 member in class:ExclusiveRangeDict.RangeAttribute
93 self._tree[bound_begin] = (begin, new_value.copy())
94 self._tree[begin] = (new_end, new_value.copy())
115 self._tree[bound_begin] = (end, new_value.copy())
116 self._tree[end] = (new_end, new_value.copy())
/external/chromium_org/tools/gyp/test/compiler-override/
H A Dgyptest-compiler-global-settings.py12 import copy namespace
/external/chromium_org/tools/perf_expectations/
H A Dupdate_perf_expectations_unittest.py6 import copy namespace
24 # Work with a copy of the set of tests.
25 all_tests_copy = copy.deepcopy(all_tests)
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/
H A Dp2.cpp29 namespace copy { namespace
31 Volatile(const volatile Volatile&) = default; // expected-error {{the parameter for an explicitly-defaulted copy constructor may not be volatile}}
32 Volatile& operator=(const volatile Volatile&) = default; // expected-error {{the parameter for an explicitly-defaulted copy assignment operator may not be volatile}}
61 NonConst nc; // makes implicit copy non-const
65 AssignmentRet1&& operator=(const AssignmentRet1&) = default; // expected-error {{explicitly-defaulted copy assignment operator must return 'copy::AssignmentRet1 &'}}
69 const AssignmentRet2& operator=(const AssignmentRet2&) = default; // expected-error {{explicitly-defaulted copy assignment operator must return 'copy::AssignmentRet2 &'}}
73 ConstAssignment& operator=(const ConstAssignment&) const = default; // expected-error {{an explicitly-defaulted copy assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers}}
/external/compiler-rt/test/BlocksRuntime/
H A Dbyrefcopyint.c50 voidVoid copy = Block_copy(dummy); local
53 return copy;
/external/icu/icu4c/source/common/unicode/
H A Dparsepos.h72 * @param copy the object to be copied from.
75 ParsePosition(const ParsePosition& copy) argument
76 : UObject(copy),
77 index(copy.index),
78 errorIndex(copy.errorIndex)
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy) argument
185 index = copy.index;
186 errorIndex = copy.errorIndex;
191 ParsePosition::operator==(const ParsePosition& copy) cons
[all...]
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DIoUtil.java6 * You may obtain a copy of the License at
40 public static void copy(File from, File to, byte[] buf) throws IOException { method in class:IoUtil
55 * Create a copy of an zip file without its empty directories.
/external/javassist/src/main/javassist/bytecode/
H A DAnnotationDefaultAttribute.java104 * Copies this attribute and returns a new copy.
106 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:AnnotationDefaultAttribute
H A DConstantAttribute.java60 * Makes a copy. Class names are replaced according to the
63 * @param newCp the constant pool table used by the new copy.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:ConstantAttribute
68 int index = getConstPool().copy(getConstantValue(), newCp,
H A DEnclosingMethodAttribute.java119 * Makes a copy. Class names are replaced according to the
122 * @param newCp the constant pool table used by the new copy.
126 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:EnclosingMethodAttribute
H A DSourceFileAttribute.java60 * Makes a copy. Class names are replaced according to the
63 * @param newCp the constant pool table used by the new copy.
67 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SourceFileAttribute
/external/lldb/tools/debugserver/source/MacOSX/
H A DCFUtils.h35 CFReleaser(const CFReleaser& copy) : _ptr(copy.get()) argument
43 CFReleaser& operator= (const CFReleaser<T>& copy) argument
45 if (copy != *this)
48 reset(copy.get());
/external/mesa3d/src/glsl/
H A Dir_import_prototypes.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
84 ir_function_signature *copy = ir->clone_prototype(mem_ctx, NULL); local
86 this->function->add_signature(copy);
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSubroutine.java65 public Subroutine copy() { method in class:Subroutine
/external/proguard/src/proguard/classfile/instruction/
H A DSwitchInstruction.java17 * You should have received a copy of the GNU General Public License along
59 public SwitchInstruction copy(SwitchInstruction switchInstruction) method in class:SwitchInstruction
/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dsidenav_data_source.py5 import copy namespace
104 sidenav = copy.deepcopy(sidenav)
H A Dsidenav_data_source_test.py8 import copy namespace
50 sidenav_json = copy.deepcopy(expected)
/external/chromium_org/content/common/
H A Done_writer_seqlock_unittest.cc40 TestData copy; variable
44 copy = *data_;
47 EXPECT_EQ(copy.a + 100, copy.b);
48 EXPECT_EQ(copy.c, copy.b + copy.a);

Completed in 404 milliseconds

1234567891011>>