Searched refs:copy (Results 176 - 200 of 2627) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/tools/
H A DCopyTilesRenderer.cpp85 SkBitmap copy; local
88 dst.pixelRef()->readPixels(&copy, &subset);
91 dst.copyTo(&copy);
95 success &= SkImageEncoder::EncodeFile(pathWithNumber.c_str(), copy,
/external/chromium_org/tools/gyp/test/ios/
H A Dgyptest-crosscompile.py20 oldenv = os.environ.copy()
/external/icu/icu4c/source/common/unicode/
H A Durep.h121 * @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/sample/
H A DTest.java10 defined in class Test, then this program adds a copy of
38 CtMethod gMethod = CtNewMethod.copy(fMethod, "g", cc, null);
/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/qemu/android/utils/
H A Dfile_data.c115 APANIC("Trying to copy an uninitialized FileData instance\n");
121 void* copy = malloc(other->size); local
122 if (!copy) {
126 memcpy(copy, other->data, other->size);
127 fileData_initWith(data, copy, other->size);
/external/qemu/include/exec/
H A Dsoftmmu-semi.h40 int copy)
45 if (p && copy) {
50 #define lock_user(type, p, len, copy) softmmu_lock_user(env, p, len, copy)
39 softmmu_lock_user(CPUArchState *env, uint32_t addr, uint32_t len, int copy) argument
/external/skia/experimental/webtry/poly/
H A DGruntfile.js42 copy: {
53 grunt.loadNpmTasks('grunt-contrib-copy');
62 grunt.registerTask('notmin', ['shell:bower_install', 'bower', 'concat', 'copy:simple']);
/external/chromium_org/components/policy/core/common/
H A Dpolicy_map.cc28 scoped_ptr<Entry> copy(new Entry);
29 copy->level = level;
30 copy->scope = scope;
32 copy->value = value->DeepCopy();
34 copy->external_data_fetcher =
37 return copy.Pass();
109 PolicyMap* copy = new PolicyMap(); local
110 copy->CopyFrom(*this);
111 return make_scoped_ptr(copy);
/external/freetype/src/gzip/
H A Dinfcodes.c45 uInt dist; /* distance back to copy from */
46 } copy; /* if EXT or COPY, where and how much */ member in union:inflate_codes_state::__anon21549
94 Bytef *f; /* pointer to copy strings from */
97 /* copy input/output information to locals (UPDATE macro restores) */
137 c->sub.copy.get = e & 15;
159 j = c->sub.copy.get;
175 c->sub.copy.get = e & 15;
176 c->sub.copy.dist = t->base;
191 j = c->sub.copy.get;
193 c->sub.copy
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DArrays.java445 byte[] copy = new byte[data.length];
447 System.arraycopy(data, 0, copy, 0, data.length);
449 return copy;
473 byte[][] copy = new byte[data.length][];
475 for (int i = 0; i != copy.length; i++)
477 copy[i] = clone(data[i]);
480 return copy;
490 byte[][][] copy = new byte[data.length][][];
492 for (int i = 0; i != copy.length; i++)
494 copy[
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableBiMapTest.java6 * You may obtain a copy of the License at
415 ImmutableBiMap<String, Integer> copy
417 assertEquals(Collections.<String, Integer>emptyMap(), copy);
418 assertSame(copy, ImmutableBiMap.copyOf(copy));
419 assertSame(ImmutableBiMap.of(), copy);
423 ImmutableBiMap<String, Integer> copy
425 assertMapEquals(copy, "one", 1);
426 assertSame(copy, ImmutableBiMap.copyOf(copy));
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_clone.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
284 ir_function *copy = new(mem_ctx) ir_function(this->name); local
291 copy->add_signature(sig_copy);
298 return copy;
304 ir_function_signature *copy = this->clone_prototype(mem_ctx, ht); local
306 copy->is_defined = this->is_defined;
314 copy->body.push_tail(inst_copy);
317 return copy;
323 ir_function_signature *copy local
433 ir_instruction *copy = original->clone(mem_ctx, ht); local
[all...]
/external/guava/guava/src/com/google/common/io/
H A DFiles.java6 * You may obtain a copy of the License at
199 // Avoid an extra allocation and copy.
234 public static void copy(InputSupplier<? extends InputStream> from, File to) method in class:Files
236 ByteStreams.copy(from, newOutputStreamSupplier(to));
258 public static void copy(File from, OutputSupplier<? extends OutputStream> to) method in class:Files
260 ByteStreams.copy(newInputStreamSupplier(from), to);
270 public static void copy(File from, OutputStream to) throws IOException { method in class:Files
271 ByteStreams.copy(newInputStreamSupplier(from), to);
282 public static void copy(File from, File to) throws IOException { method in class:Files
285 copy(newInputStreamSupplie
298 public static <R extends Readable & Closeable> void copy( method in class:Files
356 public static <W extends Appendable & Closeable> void copy(File from, method in class:Files
370 public static void copy(File from, Charset charset, Appendable to) method in class:Files
[all...]
/external/mesa3d/src/glsl/
H A Dir_clone.cpp5 * copy of this software and associated documentation files (the "Software"),
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
284 ir_function *copy = new(mem_ctx) ir_function(this->name); local
291 copy->add_signature(sig_copy);
298 return copy;
304 ir_function_signature *copy = this->clone_prototype(mem_ctx, ht); local
306 copy->is_defined = this->is_defined;
314 copy->body.push_tail(inst_copy);
317 return copy;
323 ir_function_signature *copy local
433 ir_instruction *copy = original->clone(mem_ctx, ht); local
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_action.cc100 scoped_ptr<ExtensionAction> copy(
103 copy->popup_url_ = popup_url_;
104 copy->title_ = title_;
105 copy->icon_ = icon_;
106 copy->badge_text_ = badge_text_;
107 copy->badge_background_color_ = badge_background_color_;
108 copy->badge_text_color_ = badge_text_color_;
109 copy->is_visible_ = is_visible_;
110 copy->id_ = id_;
113 copy
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DStyleRule.cpp16 * You should have received a copy of the GNU Library General Public License
172 PassRefPtrWillBeRawPtr<StyleRuleBase> StyleRuleBase::copy() const function in class:blink::StyleRuleBase
176 return toStyleRule(this)->copy();
178 return toStyleRulePage(this)->copy();
180 return toStyleRuleFontFace(this)->copy();
182 return toStyleRuleMedia(this)->copy();
184 return toStyleRuleSupports(this)->copy();
190 return toStyleRuleKeyframes(this)->copy();
192 return toStyleRuleViewport(this)->copy();
194 return toStyleRuleFilter(this)->copy();
[all...]
H A DStyleRule.h16 * You should have received a copy of the GNU Library General Public License
68 PassRefPtrWillBeRawPtr<StyleRuleBase> copy() const;
115 PassRefPtrWillBeRawPtr<StyleRule> copy() const { return adoptRefWillBeNoop(new StyleRule(*this)); } function in class:blink::StyleRule
140 PassRefPtrWillBeRawPtr<StyleRuleFontFace> copy() const { return adoptRefWillBeNoop(new StyleRuleFontFace(*this)); } function in class:blink::StyleRuleFontFace
165 PassRefPtrWillBeRawPtr<StyleRulePage> copy() const { return adoptRefWillBeNoop(new StyleRulePage(*this)); } function in class:blink::StyleRulePage
203 PassRefPtrWillBeRawPtr<StyleRuleMedia> copy() const { return adoptRefWillBeNoop(new StyleRuleMedia(*this)); } function in class:blink::StyleRuleMedia
223 PassRefPtrWillBeRawPtr<StyleRuleSupports> copy() const { return adoptRefWillBeNoop(new StyleRuleSupports(*this)); } function in class:blink::StyleRuleSupports
246 PassRefPtrWillBeRawPtr<StyleRuleViewport> copy() const { return adoptRefWillBeNoop(new StyleRuleViewport(*this)); } function in class:blink::StyleRuleViewport
270 PassRefPtrWillBeRawPtr<StyleRuleFilter> copy() const { return adoptRefWillBeNoop(new StyleRuleFilter(*this)); } function in class:blink::StyleRuleFilter
/external/flac/include/FLAC/
H A Dmetadata.h1260 * \a copy to \c true to have the function make it's own copy of the data, or
1265 * the length argument is 0 and the \a copy argument is \c false.
1314 /** Create a copy of an existing metadata object.
1316 * The copy is a "deep" copy, i.e. dynamically allocated data within the
1320 * \param object Pointer to object to copy.
1356 * If \a copy is \c true, a copy of the data is stored; otherwise, the object
1358 * function is successful, otherwise the original data will remain if \a copy
[all...]
/external/chromium_org/tools/gyp/pylib/gyp/generator/
H A Dcmake.py459 have_copies = any(copy['files'] for copy in copies)
478 file_copy = Copy('', 'copy')
481 for copy in copies:
482 files = copy['files']
483 destination = copy['destination']
489 copy = file_copy if os.path.basename(src) else dir_copy
491 copy.cmake_inputs.append(NormjoinPath(path_to_gyp, src))
492 copy.cmake_outputs.append(NormjoinPathForceCMakeSource(path_to_gyp, dst))
493 copy
[all...]
/external/chromium_org/build/android/gyp/
H A Dcreate_standalone_apk.py24 shutil.copy(options.input_apk_path, intermediate_path)
29 shutil.copy(intermediate_path, options.output_apk_path)
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/
H A Dconstrained_window_alert.h27 @property(nonatomic, copy) NSString* informativeText;
28 @property(nonatomic, copy) NSString* messageText;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationWatchers.cpp71 void GeolocationWatchers::getNotifiersVector(HeapVector<Member<GeoNotifier> >& copy) const
73 copyValuesToVector(m_idToNotifierMap, copy);
/external/chromium_org/third_party/WebKit/Source/platform/animation/
H A DKeyframeValueList.h64 KeyframeValueList copy(other);
65 swap(copy);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseDiffHeader.pl58 +++ index_path.py (working copy)
68 +++ index_path.py (working copy)

Completed in 5672 milliseconds

1234567891011>>