/external/guava/guava-tests/test/com/google/common/collect/ |
HashMultimapTest.java | 6 * You may obtain a copy of the License at 47 HashMultimap<String, Integer> copy = HashMultimap.create(multimap); local 48 assertEquals(multimap, copy); 49 assertEquals(8, copy.expectedValuesPerKey);
|
/external/guava/guava-tests/test/com/google/common/testing/ |
SerializableTesterTest.java | 6 * You may obtain a copy of the License at 32 String copy = SerializableTester.reserializeAndAssert(original); local 33 assertEquals(original, copy); 34 assertNotSame(original, copy);
|
/external/javassist/sample/vector/ |
VectorAssistant.java | 97 vec.addMethod(CtNewMethod.copy(addmethod, "add", vec, map)); 98 vec.addMethod(CtNewMethod.copy(atmethod, "at", vec, map));
|
/external/javassist/src/main/javassist/bytecode/ |
LineNumberAttribute.java | 153 * Makes a copy. 155 * @param newCp the constant pool table used by the new copy. 158 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:LineNumberAttribute
|
/external/jsilver/src/org/clearsilver/ |
HDF.java | 6 * You may obtain a copy of the License at 171 * Deep copy of the contents of the source HDF structure to this HDF 176 * node becomes a symlink in the copy. 180 * @param src the source HDF to copy over. 182 void copy(String hdfpath, HDF src); method in interface:HDF
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-linked_ptr.h | 60 // - it's safe to copy linked_ptr objects concurrently, 61 // - it's safe to copy *from* a linked_ptr and read its underlying 145 // Copy an existing linked_ptr<>, adding ourselves to the list of references. 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } 149 copy(&ptr); 155 copy(&ptr); 162 copy(&ptr); 203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
|
/external/markdown/markdown/ |
odict.py | 26 from copy import deepcopy 100 def copy(self): member in class:OrderedDict 101 """Return a copy of this object.""" 102 # This way of initializing the copy means it works for subclasses, too.
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_pair_translate.c | 7 * a copy of this software and associated documentation files (the 9 * without limitation the rights to use, copy, modify, merge, publish, 362 struct rc_sub_instruction copy; local 372 copy = inst->U.I; 374 check_opcode_support(c, ©); 376 final_rewrite(©); 378 set_pair_instruction(c, &inst->U.P, ©);
|
/external/mesa3d/src/gallium/state_trackers/clover/core/ |
resource.cpp | 5 // copy of this software and associated documentation files (the "Software"), 7 // the rights to use, copy, modify, merge, publish, distribute, sublicense, 56 resource::copy(command_queue &q, const point &origin, const point ®ion, function in class:resource
|
/external/mesa3d/src/glsl/ |
link_functions.cpp | 5 * copy of this software and associated documentation files (the "Software"), 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 150 ir_instruction *copy = original->clone(linked, ht); local 151 formal_parameters.push_tail(copy); 159 ir_instruction *copy = original->clone(linked, ht); local 160 linked_sig->body.push_tail(copy);
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
gtest-linked_ptr.h | 60 // - it's safe to copy linked_ptr objects concurrently, 61 // - it's safe to copy *from* a linked_ptr and read its underlying 145 // Copy an existing linked_ptr<>, adding ourselves to the list of references. 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } 149 copy(&ptr); 155 copy(&ptr); 162 copy(&ptr); 203 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
|
/external/mesa3d/src/mapi/glapi/gen/ |
typeexpr.py | 7 # copy of this software and associated documentation files (the "Software"), 9 # on the rights to use, copy, modify, merge, publish, distribute, sub 28 import string, copy namespace 199 self.expr = copy.deepcopy(te.expr)
|
/external/open-vcdiff/gtest/include/gtest/internal/ |
gtest-linked_ptr.h | 60 // - it's safe to copy linked_ptr objects concurrently, 61 // - it's safe to copy *from* a linked_ptr and read its underlying 145 // Copy an existing linked_ptr<>, adding ourselves to the list of references. 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } 149 copy(&ptr); 155 copy(&ptr); 162 copy(&ptr); 212 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
|
/external/proguard/src/proguard/classfile/instruction/ |
VariableInstruction.java | 17 * You should have received a copy of the GNU General Public License along 82 public VariableInstruction copy(VariableInstruction variableInstruction) method in class:VariableInstruction
|
/external/protobuf/gtest/include/gtest/internal/ |
gtest-linked_ptr.h | 60 // - it's safe to copy linked_ptr objects concurrently, 61 // - it's safe to copy *from* a linked_ptr and read its underlying 145 // Copy an existing linked_ptr<>, adding ourselves to the list of references. 146 template <typename U> linked_ptr(linked_ptr<U> const& ptr) { copy(&ptr); } 149 copy(&ptr); 155 copy(&ptr); 162 copy(&ptr); 212 template <typename U> void copy(linked_ptr<U> const* ptr) { function in class:testing::internal::linked_ptr
|
/external/qemu/android/utils/ |
system.c | 127 char* copy; local 133 copy = malloc(len+1); 134 memcpy(copy, str, len); 135 copy[len] = 0; 137 return copy;
|
/external/skia/include/core/ |
SkTDict.h | 48 char* copy = (char*)fStrings.alloc(len + 1, SkChunkAlloc::kThrow_AllocFailType); local 49 memcpy(copy, name, len); 50 copy[len] = '\0'; 51 pair->fName = copy;
|
/external/skia/src/animator/ |
SkDrawBitmap.cpp | 142 SkDisplayable* copy = INHERITED::deepCopy(maker); local 143 ((SkImageBaseBitmap*) copy)->fUriBase = ((SkImageBaseBitmap*) this)->fUriBase; 144 return copy;
|
SkDrawMatrix.cpp | 78 SkDrawMatrix* copy = (SkDrawMatrix*) local 81 copy->fMatrix = fMatrix; 82 copy->fConcat = fConcat; 83 return copy;
|
SkDrawPaint.cpp | 104 SkDrawPaint* copy = (SkDrawPaint*) INHERITED::deepCopy(maker); local 107 tempColor->setParent(copy); 109 copy->fOwnsColor = true; 110 return copy;
|
/external/skia/src/core/ |
SkData.cpp | 77 void* copy = sk_malloc_throw(length); // balanced in sk_free_releaseproc local 78 memcpy(copy, data, length); 79 return new SkData(copy, length, sk_free_releaseproc, NULL); 130 We could, if we wanted/need to, just make a deep copy of src's data,
|
/external/skia/tools/ |
skdiff_utils.cpp | 87 SkBitmap copy; local 88 bitmap.copyTo(©, SkBitmap::kARGB_8888_Config); 89 force_all_opaque(copy); 90 return SkImageEncoder::EncodeFile(path.c_str(), copy, 94 /// Return a copy of the "input" string, within which we have replaced all instances
|
/external/zlib/src/ |
gzwrite.c | 206 /* for small len, copy to input buffer, otherwise compress directly */ 208 /* copy to input buffer, compress when full */ 210 unsigned have, copy; local 215 copy = state->size - have; 216 if (copy > len) 217 copy = len; 218 memcpy(state->in + have, buf, copy); 219 strm->avail_in += copy; 220 state->x.pos += copy; 221 buf = (const char *)buf + copy; [all...] |
/frameworks/av/media/libstagefright/ |
DataSource.cpp | 6 * You may obtain a copy of the License at 210 KeyedVector<String8, String8> copy = *headers; local 212 ©, &cacheConfig, &disconnectAtHighwatermark);
|
/frameworks/base/core/java/android/view/ |
InputEvent.java | 6 * You may obtain a copy of the License at 100 * @return A deep copy of the event. 103 public abstract InputEvent copy(); method in class:InputEvent
|