/external/guava/guava-testlib/src/com/google/common/testing/ |
SerializableTester.java | 6 * You may obtain a copy of the License at 95 T copy = reserialize(object); local 97 .addEqualityGroup(object, copy) 99 Assert.assertEquals(object.getClass(), copy.getClass()); 100 return copy;
|
/build/core/ |
distdir.mk | 6 # You may obtain a copy of the License at 17 # When specifying "dist", the user has asked that we copy the important 35 # $(3): goals that should copy the file 37 define copy-one-dist-file 41 $$(copy-file-to-new-target-with-cp) 47 # copy-one-dist-file to avoid multiple rules for the same target. 57 # at copy time if necessary. 66 $(eval $(call copy-one-dist-file,\
|
/external/chromium_org/chrome/test/pyautolib/ |
timer_queue.py | 5 import copy namespace 48 'next time': next_time, 'args': copy.copy(args)})
|
/external/chromium_org/content/renderer/dom_storage/ |
webstoragenamespace_impl.cc | 37 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/tools/ |
run.py | 10 import copy namespace 59 env = copy.copy(os.environ)
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
MediaQueryExp.h | 62 PassOwnPtr<MediaQueryExp> copy() const { return adoptPtr(new MediaQueryExp(*this)); } function in class:WebCore::MediaQueryExp
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/ |
StyleDeprecatedFlexibleBoxData.h | 18 * 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
|
StyleFlexibleBoxData.h | 39 PassRefPtr<StyleFlexibleBoxData> copy() const { return adoptRef(new StyleFlexibleBoxData(*this)); } function in class:WebCore::StyleFlexibleBoxData
|
StyleMarqueeData.h | 18 * 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
|
StyleSurroundData.h | 18 * 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:WebCore::StyleSurroundData
|
StyleTransformData.h | 18 * 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:WebCore::StyleTransformData
|
StyleVariableData.h | 49 PassRefPtr<StyleVariableData> copy() const { return adoptRef(new StyleVariableData(*this)); } function in class:WebCore::StyleVariableData
|
/external/chromium_org/third_party/icu/source/common/unicode/ |
urep.h | 121 * @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/ |
rule_test.cc | 5 // 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.GetFormat()) [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ir_import_prototypes.cpp | 5 * 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/tlslite/tlslite/utils/ |
hmac.py | 64 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/ |
policy_template_generator.py | 7 import copy namespace 45 self._policy_data = copy.deepcopy(policy_data)
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
MSVSUtil.py | 7 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 target [all...] |
/external/chromium_org/tools/gyp/test/compiler-override/ |
gyptest-compiler-env.py | 12 import copy namespace 46 oldenv = os.environ.copy() 66 oldenv = os.environ.copy() 92 oldenv = os.environ.copy()
|
/external/dropbear/libtomcrypt/src/pk/asn1/der/set/ |
der_encode_set.c | 70 ltc_asn1_list *copy; local 74 /* make copy of list */ 75 copy = XCALLOC(inlen, sizeof(*copy)); 76 if (copy == NULL) { 82 copy[x] = list[x]; 83 copy[x].used = x; 87 XQSORT(copy, inlen, sizeof(*copy), &qsort_helper); 90 err = der_encode_sequence_ex(copy, inlen, out, outlen, LTC_ASN1_SET); [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
LenientSerializableTester.java | 6 * You may obtain a copy of the License at 47 Set<E> copy = reserialize(original); local 48 assertEquals(original, copy); 49 assertTrue(copy instanceof ImmutableSet); 50 return copy;
|
/external/icu4c/common/unicode/ |
urep.h | 121 * @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/ |
ConstantAttribute.java | 60 * 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,
|
SourceFileAttribute.java | 60 * 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/mesa3d/src/glsl/ |
ir_import_prototypes.cpp | 5 * 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);
|