/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
sessiondescription.cc | 92 SessionDescription* SessionDescription::Copy() const { 93 SessionDescription* copy = new SessionDescription(*this); local 94 // Copy all ContentDescriptions. 95 for (ContentInfos::iterator content = copy->contents_.begin(); 96 content != copy->contents().end(); ++content) { 97 content->description = content->description->Copy(); 99 return copy;
|
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/ |
string_piece.cc | 37 size_type StringPiece::copy(char* buf, size_type n, size_type pos) const { function in class:i18n::phonenumbers::StringPiece
|
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/simplejson/ |
ordered_dict.py | 79 inst_dict = vars(self).copy() 102 def copy(self): member in class:OrderedDict
|
/external/chromium_org/third_party/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/chromium_org/third_party/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/chromium_org/third_party/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/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/ |
lexer.py | 14 import copy namespace
|
/external/chromium_org/tools/checkdeps/ |
builddeps.py | 80 import copy namespace 155 rules = copy.deepcopy(existing_rules)
|
/external/chromium_org/tools/telemetry/telemetry/core/ |
browser_options.py | 5 import copy namespace 38 # If set, copy the generated profile to this path on exit. 58 def Copy(self): 59 return copy.deepcopy(self)
|
/external/chromium_org/tools/telemetry/telemetry/core/timeline/ |
trace_event_importer.py | 10 import copy namespace 89 return copy.deepcopy(obj)
|
/external/chromium_org/ui/compositor/ |
layer_animation_sequence_unittest.cc | 167 TestLayerAnimationDelegate copy = delegate; local 173 copy.GetBoundsForAnimation()); 175 copy.GetTransformForAnimation()); 177 copy.GetOpacityForAnimation());
|
/external/clang/test/CodeGen/ |
blockstret.c | 45 void (*copy)(void *dst, void *src); // conditional on BLOCK_HAS_COPY_DISPOSE member in struct:block_descriptor_big
|
tbaa-struct.cpp | 11 void copy(struct A *a, struct A *b) { function
|
/external/clang/test/CodeGenCXX/ |
lvalue-bitcasts.cpp | 147 void copy( const struct in_addr &new_addr ) { function in namespace:PR6437
|
/external/eigen/blas/ |
level1_impl.h | 7 // Public License v. 2.0. If a copy of the MPL was not distributed 29 int EIGEN_BLAS_FUNC(copy)(int *n, RealScalar *px, int *incx, RealScalar *py, int *incy) function
|
/external/freetype/src/base/ |
ftglyph.c | 311 FT_Glyph copy; local 332 error = ft_new_glyph( source->library, clazz, © ); 336 copy->advance = source->advance; 337 copy->format = source->format; 340 error = clazz->glyph_copy( source, copy ); 343 FT_Done_Glyph( copy ); 345 *target = copy; 402 /* copy advance while converting it to 16.16 format */ 585 /* in case of success, copy the bitmap to the glyph bitmap */ 590 /* copy advance * [all...] |
/external/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/guava/guava-tests/test/com/google/common/collect/ |
HashBasedTableTest.java | 6 * You may obtain a copy of the License at 75 Table<String, Integer, Character> copy = HashBasedTable.create(original); local 76 assertEquals(original, copy); 77 assertEquals((Character) 'a', copy.get("foo", 1));
|