HomeSort by relevance Sort by last modified time
    Searched defs:copy (Results 851 - 875 of 1328) sorted by null

<<31323334353637383940>>

  /external/skia/bench/
benchmain.cpp 105 SkBitmap copy; local
106 if (!bm.copyTo(&copy, SkBitmap::kARGB_8888_Config)) {
112 size_t size = copy.getSize() >> 2;
113 SkPMColor* p = copy.getAddr32(0, 0);
127 SkImageEncoder::EncodeFile(path.c_str(), copy, SkImageEncoder::kPNG_Type, 100);
  /external/skia/src/animator/
SkDisplayApply.cpp 402 SkApply* copy = (SkApply*) deepCopy(&maker); // work on copy of animator state local
404 copy->mode = (Mode) -1;
405 SkDrawable* copyScope = copy->scope = (SkDrawable*) scope->deepCopy(&maker);
413 if (copy->resolveIDs(maker, this, this)) { // fix up all fields, including target
417 copy->activate(maker);
418 copy->interpolate(maker, step * SK_MSec1);
419 maker.removeActive(copy->fActive);
421 delete copy;
  /external/sonivox/jet_tools/JetCreator/
JetCreator.py 12 You may obtain a copy of the License at
28 import copy namespace
609 self.jet_file = copy.deepcopy(state.jet_file)
622 self.jet_file = copy.deepcopy(state.jet_file)
642 editSegment = copy.deepcopy(segment)
    [all...]
  /external/stlport/stlport/stl/
_string.h 11 * Permission to use or copy this software for any purpose is hereby granted
63 * it does not perform reference-count or copy-on-write, and that
70 * Second, the C++ standard requires basic_string to copy elements
71 * using char_traits<>::assign, char_traits<>::copy, and
678 _Traits::copy(__res, __f, __l - __f);
765 _Traits::copy(__res, __f, __l - __f);
933 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const { function in class:basic_string
    [all...]
  /external/stlport/test/unit/
string_test.cpp 67 CPPUNIT_TEST(copy);
126 void copy();
823 void StringTest::copy() function in class:StringTest
828 s.copy(dest, 4);
836 s.copy(dest, 4, 2);
843 s.copy(dest, 4, 5);
884 * pass it to the helper function. It uses the copy constructor for this.
    [all...]
  /external/v8/src/arm/
builtins-arm.cc 400 // Fill arguments as array elements. Copy from the top of the stack (last
1693 Label copy; local
1720 Label copy; local
    [all...]
  /external/v8/src/mips/
builtins-mips.cc 408 // Fill arguments as array elements. Copy from the top of the stack (last
1724 Label copy; local
1756 Label copy; local
    [all...]
  /external/v8/src/x64/
builtins-x64.cc 308 // Copy arguments and receiver to the expression stack.
471 // Copy arguments to the stack in a loop.
521 // Push a copy of the function onto the stack.
548 // Push a copy of the function onto the stack.
750 __ j(not_sign, &loop); // While non-negative (to copy return address).
751 __ pop(rbx); // Discard copy of return address.
909 // Copy all arguments from the array to the stack.
1623 Label copy; local
1642 Label copy; local
    [all...]
  /external/valgrind/main/coregrind/
pub_core_threadstate.h 23 You should have received a copy of the GNU General Public License
223 int copy; member in struct:__anon27999::__anon28000::__anon28012
245 int copy; member in struct:__anon27999::__anon28000::__anon28017
  /frameworks/av/media/libstagefright/
MPEG2TSWriter.cpp 6 * You may obtain a copy of the License at
257 sp<ABuffer> copy = local
259 memcpy(copy->data(),
266 copy->meta()->setInt64("timeUs", timeUs);
271 copy->meta()->setInt32("isSync", true);
274 notify->setBuffer("buffer", copy);
928 size_t copy = accessUnit->size(); local
929 if (copy > sizeLeft) {
930 copy = sizeLeft;
933 memcpy(ptr, accessUnit->data(), copy);
974 size_t copy = accessUnit->size() - offset; local
    [all...]
  /frameworks/av/media/libstagefright/wifi-display/source/
TSPacketizer.cpp 6 * You may obtain a copy of the License at
888 size_t copy = accessUnit->size(); local
890 if (copy > sizeAvailableForPayload) {
891 copy = sizeAvailableForPayload;
893 if (alignPayload && copy > 16) {
894 copy -= (copy % 16);
898 size_t numPaddingBytes = sizeAvailableForPayload - copy;
949 memcpy(ptr, accessUnit->data(), copy);
950 ptr += copy;
970 size_t copy = accessUnit->size() - offset; local
    [all...]
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
TestDocumentsProvider.java 6 * You may obtain a copy of the License at
343 Streams.copy(bis, fos);
  /frameworks/opt/mailcommon/java/com/android/mailcommon/
WebViewContextMenu.java 7 * You may obtain a copy of the License at
86 // For our copy menu items.
87 private class Copy implements MenuItem.OnMenuItemClickListener {
90 public Copy(CharSequence text) {
96 copy(mText);
137 private void copy(CharSequence text) { method in class:WebViewContextMenu
231 // Copy
233 setOnMenuItemClickListener(new Copy(extra));
242 setOnMenuItemClickListener(new Copy(extra));
261 setOnMenuItemClickListener(new Copy(extra))
    [all...]
  /libcore/luni/src/main/java/java/math/
BigInt.java 6 * You may obtain a copy of the License at
72 BigInt copy() { method in class:BigInt
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentImpl.java 6 * You may obtain a copy of the License at
119 * Returns a shallow copy of the given node. If the node is an element node,
155 "Cannot copy node of type " + node.getNodeType());
188 * behave differently for clones vs. imports. Clones copy
190 * original document. Imports copy entities by reference,
210 * Returns a copy of the given node or subtree with this document as its
216 * @param deep true to recursively copy any child nodes; false to do no such
220 NodeImpl copy = shallowCopy(operation, node); local
225 copy.appendChild(cloneOrImportNode(operation, list.item(i), deep));
229 notifyUserDataHandlers(operation, node, copy);
    [all...]
  /libcore/luni/src/test/java/dalvik/system/
DexClassLoaderTest.java 6 * You may obtain a copy of the License at
82 * Copy a resource in the package directory to the indicated
94 Streams.copy(in, out);
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_string.h 11 * Permission to use or copy this software for any purpose is hereby granted
63 * it does not perform reference-count or copy-on-write, and that
70 * Second, the C++ standard requires basic_string to copy elements
71 * using char_traits<>::assign, char_traits<>::copy, and
678 _Traits::copy(__res, __f, __l - __f);
765 _Traits::copy(__res, __f, __l - __f);
933 size_type copy(_CharT* __s, size_type __n, size_type __pos = 0) const { function in class:basic_string
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 67 CPPUNIT_TEST(copy);
126 void copy();
823 void StringTest::copy() function in class:StringTest
828 s.copy(dest, 4);
836 s.copy(dest, 4, 2);
843 s.copy(dest, 4, 5);
884 * pass it to the helper function. It uses the copy constructor for this.
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 67 CPPUNIT_TEST(copy);
126 void copy();
823 void StringTest::copy() function in class:StringTest
828 s.copy(dest, 4);
836 s.copy(dest, 4, 2);
843 s.copy(dest, 4, 5);
884 * pass it to the helper function. It uses the copy constructor for this.
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterGradRepresentation.java 6 * You may obtain a copy of the License at
86 public Band(Band copy) {
87 mask = copy.mask;
88 xPos1 = copy.xPos1;
89 yPos1 = copy.yPos1;
90 xPos2 = copy.xPos2;
91 yPos2 = copy.yPos2;
92 brightness = copy.brightness;
93 contrast = copy.contrast;
94 saturation = copy.saturation
139 public FilterRepresentation copy() { method in class:FilterGradRepresentation
    [all...]
FilterVignetteRepresentation.java 6 * You may obtain a copy of the License at
99 public FilterRepresentation copy() { method in class:FilterVignetteRepresentation
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
WebViewContextMenu.java 7 * You may obtain a copy of the License at
98 // For our copy menu items.
99 private class Copy implements MenuItem.OnMenuItemClickListener {
102 public Copy(CharSequence text) {
108 copy(mText);
149 private void copy(CharSequence text) { method in class:WebViewContextMenu
252 // Copy
254 setOnMenuItemClickListener(new Copy(extra));
263 setOnMenuItemClickListener(new Copy(extra));
282 setOnMenuItemClickListener(new Copy(extra))
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/
FileUtils.java 7 * the License. You may obtain a copy of the License at
552 * @param srcFile an existing file to copy, must not be <code>null</code>
553 * @param destDir the directory to place the copy in, must not be <code>null</code>
572 * @param srcFile an existing file to copy, must not be <code>null</code>
573 * @param destDir the directory to place the copy in, must not be <code>null</code>
574 * @param preserveFileDate true if the file date of the copy
601 * @param srcFile an existing file to copy, must not be <code>null</code>
621 * @param srcFile an existing file to copy, must not be <code>null</code>
623 * @param preserveFileDate true if the file date of the copy
660 * Internal copy file method.
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
som.h 71 unsigned int copy :1; /* Must be copied by the linker */ member in struct:aux_id
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
som.h 71 unsigned int copy :1; /* Must be copied by the linker */ member in struct:aux_id

Completed in 442 milliseconds

<<31323334353637383940>>