Searched refs:copy (Results 451 - 475 of 2627) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/skia/src/animator/
H A DSkDrawMatrix.cpp78 SkDrawMatrix* copy = (SkDrawMatrix*) local
81 copy->fMatrix = fMatrix;
82 copy->fConcat = fConcat;
83 return copy;
/external/chromium_org/third_party/skia/tools/
H A Dskdiff_utils.cpp71 SkBitmap copy; local
72 bitmap.copyTo(&copy, kN32_SkColorType);
73 force_all_opaque(copy);
74 return SkImageEncoder::EncodeFile(path.c_str(), copy,
78 /// Return a copy of the "input" string, within which we have replaced all instances
/external/chromium_org/third_party/tlslite/tlslite/
H A Dmathtls.py134 def copy(self): member in class:MAC_SSL
136 new.ihash = self.ihash.copy()
137 new.ohash = self.ohash.copy()
143 ohash2 = self.ohash.copy()
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Dlinemap.c85 char *copy; local
128 copy = yasm__xstrdup(filename);
130 mapping->filename = HAMT_insert(linemap->filenames, copy, copy,
/external/chromium_org/tools/android/checkstyle/
H A Dcheckstyle.py31 checkstyle_env = os.environ.copy()
/external/chromium_org/tools/gyp/test/compiler-override/
H A Dgyptest-compiler-env-toolchain.py12 import copy namespace
H A Dgyptest-compiler-global-settings.py12 import copy namespace
/external/chromium_org/tools/relocation_packer/test_data/
H A Dgenerate_elf_file_unittest_relocs.py42 shutil.copy(input_path, output_path)
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dsystem_info_unittest.py59 data_copy = data.copy()
/external/chromium_org/tools/win/split_link/
H A Dgraph_dependencies.py18 env = os.environ.copy()
/external/chromium_org/v8/src/
H A Dhydrogen-check-elimination.cc177 HCheckTable* copy = new(zone) HCheckTable(phase_); local
181 HCheckTableEntry* new_entry = &copy->entries_[i];
195 copy->cursor_ = cursor_;
196 copy->size_ = size_;
207 HCheckTableEntry* pred_entry = copy->Find(phi_operand);
210 copy->Insert(phi, NULL, pred_entry->maps_, pred_entry->state_);
224 HCheckTableEntry* entry = copy->Find(object);
231 copy->Insert(object, cmp, cmp->map(), state);
254 HCheckTableEntry* le = copy->Find(left);
255 HCheckTableEntry* re = copy
[all...]
H A Dlithium-codegen.cc144 Vector<char> copy = Vector<char>::New(static_cast<int>(length) + 1); local
145 MemCopy(copy.start(), builder.Finalize(), copy.length());
146 masm()->RecordComment(copy.start());
/external/chromium_org/win8/metro_driver/ime/
H A Dinput_scope.cc48 std::copy(input_scopes_.begin(), input_scopes_.end(), *input_scopes);
/external/clang/include/clang/AST/
H A DStmtIterator.h164 StmtRange copy = *this; local
166 return copy;
207 ConstStmtRange copy = *this; local
209 return copy;
/external/clang/test/CodeGen/
H A Dblocksignature.c43 void (*copy)(void *dst, void *src); // conditional on BLOCK_HAS_COPY_DISPOSE
H A Dblockstret.c52 void (*copy)(void *dst, void *src); // conditional on BLOCK_HAS_COPY_DISPOSE member in struct:block_descriptor_big
/external/clang/test/CodeGenCXX/
H A Dlvalue-bitcasts.cpp147 void copy( const struct in_addr &new_addr ) { function in namespace:PR6437
/external/compiler-rt/lib/BlocksRuntime/
H A DBlock_private.h5 * to any person obtaining a copy of this software and associated documentation
7 * including without limitation the rights to use, copy, modify, merge, publish,
65 void (*copy)(void *dst, void *src); member in struct:Block_descriptor
99 /* Runtime support functions used by compiler when generating copy/dispose helpers. */
106 BLOCK_FIELD_IS_WEAK = 16, /* declared __weak, only used in byref copy helpers */
107 BLOCK_BYREF_CALLER = 128 /* called from __block (byref) copy/dispose support routines. */
110 /* Runtime entry point called by compiler when assigning objects inside copy helper routines */
112 /* BLOCK_FIELD_IS_BYREF is only used from within block copy helpers */
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DRegisterSpecSet.java6 * You may obtain a copy of the License at
377 * Makes and return a mutable copy of this instance.
379 * @return {@code non-null;} the mutable copy
383 RegisterSpecSet copy = new RegisterSpecSet(len);
388 copy.put(spec);
392 copy.size = size;
394 return copy;
/external/gtest/test/
H A Dgtest_env_var_test.py45 environ = os.environ.copy()
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableSetTest.java6 * You may obtain a copy of the License at
167 ImmutableSet<String> copy = ImmutableSet.copyOf(sortedSet);
168 assertNotSame(sortedSet, copy);
187 ImmutableList<String> copy = SerializableTester.reserializeAndAssert(list);
188 assertTrue(copy instanceof ImmutableAsList);
/external/guava/guava-tests/test/com/google/common/io/
H A DByteStreamsTest.java6 * You may obtain a copy of the License at
19 import static com.google.common.io.ByteStreams.copy;
192 // copy, both suppliers
193 ByteStreams.copy(okRead, okWrite);
198 ByteStreams.copy(okRead, brokenWrite);
207 ByteStreams.copy(brokenRead, okWrite);
216 ByteStreams.copy(brokenRead, brokenWrite);
224 // copy, input supplier
226 ByteStreams.copy(okRead, out);
233 ByteStreams.copy(okRea
[all...]
/external/icu/icu4c/source/common/unicode/
H A Drep.h116 * @param target UnicodeString into which to copy characters.
172 virtual void copy(int32_t start, int32_t limit, int32_t dest) = 0;
/external/icu/icu4c/source/test/intltest/
H A Dreptest.cpp154 virtual void copy(int32_t start, int32_t limit, int32_t dest) { function in class:TestReplaceable
155 chars.copy(start, limit, dest);
156 styles.copy(start, limit, dest);
200 virtual void copy(int32_t /*start*/, int32_t /*limit*/, int32_t /*dest*/) { function in class:NoopReplaceable
264 // UMemory/UObject/Replaceable copy constructors
/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

Completed in 666 milliseconds

<<11121314151617181920>>