Searched defs:copy (Results 1 - 16 of 16) sorted by relevance

/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dmemlink.cpp39 void memlink::copy (iterator start, const void* p, size_type n) function in class:ustl::memlink
H A Dmemlink.h72 inline void copy (const cmemlink& l) { copy (begin(), l.cdata(), l.size()); } function in class:ustl::memlink
73 inline void copy (const void* p, size_type n) { copy (begin(), p, n); } function in class:ustl::memlink
74 void copy (iterator offset, const void* p, size_type n);
H A Dualgobase.h52 /// for every integer n from 0 to last - first, copy performs the assignment
58 inline OutputIterator copy (InputIterator first, InputIterator last, OutputIterator result) function in namespace:ustl
204 template <> inline type* copy (const type* first, const type* last, type* result) \
234 template <> inline type* copy (ctype* first, ctype* last, type* result) \
235 { return ((type*) copy ((const alias_type*) first, (const alias_type*) last, (alias_type*) result)); }
H A Ductralgo.h25 /// for every integer n from 0 to last - first, copy performs the assignment
31 inline OutputIterator copy (const Container& ctr, OutputIterator result) function in namespace:ustl
33 return (copy (ctr.begin(), ctr.end(), result));
/frameworks/base/awt/javax/imageio/plugins/jpeg/
H A DJPEGHuffmanTable.java7 * the License. You may obtain a copy of the License at
103 * @param copy
104 * the copy
106 JPEGHuffmanTable(short[] lengths, short[] values, boolean copy) { argument
/frameworks/base/opengl/tools/glgen/src/
H A DGenerateGL.java11 static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateGL
38 copy("stubs/jsr239/" + fname +
40 copy("stubs/jsr239/" + fname + ".java-impl", glImplStream);
41 copy("stubs/jsr239/" + fname + ".cpp", cStream);
138 copy("stubs/jsr239/GL10Header.java-if", gl10Stream);
139 copy("stubs/jsr239/GL10ExtHeader.java-if", gl10ExtStream);
140 copy("stubs/jsr239/GL11Header.java-if", gl11Stream);
141 copy("stubs/jsr239/GL11ExtHeader.java-if", gl11ExtStream);
142 copy("stubs/jsr239/GL11ExtensionPackHeader.java-if", gl11ExtPackStream);
143 copy("stub
[all...]
H A DGenerateGLES.java11 static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateGLES
37 copy(javaPath, glStream);
38 copy(stubRoot + ".cpp", cStream);
86 copy("stubs/gles11/" + suffix + "Header.java-if", gl11Stream);
87 copy("stubs/gles11/" + suffix + "cHeader.cpp", gl11cStream);
/frameworks/base/include/private/media/
H A DVideoFrame.h7 ** You may obtain a copy of the License at
60 MediaAlbumArt(const MediaAlbumArt& copy) { argument
61 mSize = copy.mSize;
63 if (mSize > 0 && copy.mData != NULL) {
64 mData = new uint8_t[copy.mSize];
66 memcpy(mData, copy.mData, mSize);
93 VideoFrame(const VideoFrame& copy) { argument
94 mWidth = copy.mWidth;
95 mHeight = copy.mHeight;
96 mDisplayWidth = copy
[all...]
/frameworks/base/core/java/com/google/android/mms/pdu/
H A DEncodedStringValue.java7 * You may obtain a copy of the License at
265 public static EncodedStringValue copy(EncodedStringValue value) { method in class:EncodedStringValue
H A DPduComposer.java7 * You may obtain a copy of the License at
345 mStack.copy();
494 temp = EncodedStringValue.copy(addr[i]);
538 mStack.copy();
619 mStack.copy();
850 mStack.copy();
879 mStack.copy();
941 mStack.copy();
998 mStack.copy();
1049 // That is after calling pop() and before calling copy()
1092 void copy() { method in class:PduComposer.BufferStack
[all...]
/frameworks/base/tools/preload/
H A DMemoryUsage.java6 * You may obtain a copy of the License at
240 copy(err, System.err);
274 private static void copy(InputStream in, OutputStream out) { method in class:MemoryUsage
/frameworks/base/core/java/android/content/res/
H A DCompatibilityInfo.java6 * You may obtain a copy of the License at
168 * Returns the copy of this instance.
170 public CompatibilityInfo copy() { method in class:CompatibilityInfo
/frameworks/base/awt/org/apache/harmony/awt/gl/
H A DMultiRectArea.java7 * the License. You may obtain a copy of the License at
366 * Constructs a new MultiRectArea as a copy of another one
529 protected void setRect(int[] buf, boolean copy) { argument
530 if (copy) {
H A DCommonGraphics2D.java7 * the License. You may obtain a copy of the License at
1114 * @param copy Graphics class to copy
1116 protected void copyInternalFields(CommonGraphics2D copy) { argument
1118 copy.setTransformedClip(null);
1120 copy.setTransformedClip(new MultiRectArea(clip));
1122 copy.setBackground(bgColor);
1123 copy.setColor(fgColor);
1124 copy.setPaint(paint);
1125 copy
[all...]
/frameworks/base/tools/localize/
H A DXLIFFFile.cpp352 XMLNode* copy = XMLNode::NewElement(original->Position(), XLIFF_XMLNS, "g", local
358 err |= convert_html_to_xliff(children[i], name, copy, phID);
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java6 * You may obtain a copy of the License at
311 * @return the new bitmap, or null if the copy could not be made.
313 public Bitmap copy(Config config, boolean isMutable) { method in class:Bitmap
314 checkRecycled("Can't copy a recycled bitmap");
354 * be the same object as source, or a copy may have been made. It is
363 * bitmap. The new bitmap may be the same object as source, or a copy may
722 * Returns in pixels[] a copy of the data in the bitmap. Each value is
843 * @param width The number of colors to copy from pixels[] per row

Completed in 604 milliseconds