/frameworks/base/graphics/java/android/graphics/ |
Shader.java | 6 * You may obtain a copy of the License at 96 protected Shader copy() { method in class:Shader 97 final Shader copy = new Shader(); local 98 copyLocalMatrix(copy); 99 return copy;
|
/frameworks/base/telephony/java/android/telephony/ |
CellIdentityGsm.java | 6 * You may obtain a copy of the License at 72 CellIdentityGsm copy() { method in class:CellIdentityGsm
|
/frameworks/compile/mclinker/lib/MC/ |
Attribute.cpp | 118 Attribute *copy = new Attribute(*m_pBase); local 119 copy->setWholeArchive(); 120 ReplaceOrRecord(m_AttrPool, m_pBase, copy); 125 Attribute *copy = new Attribute(*m_pBase); local 126 copy->unsetWholeArchive(); 127 ReplaceOrRecord(m_AttrPool, m_pBase, copy); 132 Attribute *copy = new Attribute(*m_pBase); local 133 copy->setAsNeeded(); 134 ReplaceOrRecord(m_AttrPool, m_pBase, copy); 139 Attribute *copy = new Attribute(*m_pBase) local 146 Attribute *copy = new Attribute(*m_pBase); local 153 Attribute *copy = new Attribute(*m_pBase); local 160 Attribute *copy = new Attribute(*m_pBase); local 167 Attribute *copy = new Attribute(*m_pBase); local [all...] |
/frameworks/native/opengl/tools/glgen/src/ |
GenerateEGL.java | 6 * You may obtain a copy of the License at 26 private static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateEGL 52 copy(javaPath, glStream); method 53 copy(stubRoot + ".cpp", cStream); 96 copy("stubs/egl/" + suffix + "Header.java-if", egljStream); 97 copy("stubs/egl/" + suffix + "cHeader.cpp", eglcStream);
|
GenerateGLES.java | 6 * You may obtain a copy of the License at 26 static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateGLES 51 copy(javaPath, glStream); method 52 copy(stubRoot + ".cpp", cStream); 98 copy("stubs/gles11/" + suffix + "Header.java-if", gl11Stream); 99 copy("stubs/gles11/" + suffix + "cHeader.cpp", gl11cStream); 100 copy("stubs/gles11/common.cpp", gl11cStream);
|
/libcore/luni/src/main/java/java/nio/ |
CharArrayBuffer.java | 7 * the License. You may obtain a copy of the License at 42 private static CharArrayBuffer copy(CharArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:CharArrayBuffer 51 return copy(this, mark, true); 66 return copy(this, mark, isReadOnly);
|
DoubleArrayBuffer.java | 7 * the License. You may obtain a copy of the License at 42 private static DoubleArrayBuffer copy(DoubleArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:DoubleArrayBuffer 51 return copy(this, mark, true); 66 return copy(this, mark, isReadOnly);
|
FloatArrayBuffer.java | 7 * the License. You may obtain a copy of the License at 42 private static FloatArrayBuffer copy(FloatArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:FloatArrayBuffer 51 return copy(this, mark, true); 67 return copy(this, mark, isReadOnly);
|
IntArrayBuffer.java | 7 * the License. You may obtain a copy of the License at 42 private static IntArrayBuffer copy(IntArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:IntArrayBuffer 51 return copy(this, mark, true); 66 return copy(this, mark, isReadOnly);
|
LongArrayBuffer.java | 7 * the License. You may obtain a copy of the License at 42 private static LongArrayBuffer copy(LongArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:LongArrayBuffer 51 return copy(this, mark, true); 66 return copy(this, mark, isReadOnly);
|
ShortArrayBuffer.java | 7 * the License. You may obtain a copy of the License at 42 private static ShortArrayBuffer copy(ShortArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:ShortArrayBuffer 51 return copy(this, mark, true); 66 return copy(this, mark, isReadOnly);
|
/libcore/luni/src/test/java/libcore/javax/net/ssl/ |
SSLParametersTest.java | 6 * You may obtain a copy of the License at 64 String[] copy = cipherSuites.clone(); local 65 p.setCipherSuites(copy); 66 copy[0] = null; 79 String[] copy = protocols.clone(); local 80 p.setProtocols(copy); 81 copy[0] = null;
|
/libcore/luni/src/test/java/tests/api/java/lang/reflect/ |
GenericSignatureFormatErrorTest.java | 64 copy(is, fos); method 90 private void copy(InputStream is, OutputStream os) { method in class:GenericSignatureFormatErrorTest
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/src/ |
future.cpp | 135 __assoc_sub_state::copy() function in class:__assoc_sub_state 198 __s->copy();
|
/ndk/sources/third_party/googletest/googletest/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
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
FilterImageBorderRepresentation.java | 6 * You may obtain a copy of the License at 40 public FilterRepresentation copy() { method in class:FilterImageBorderRepresentation
|
FilterPointRepresentation.java | 6 * You may obtain a copy of the License at 34 public abstract FilterRepresentation copy(); method in class:FilterPointRepresentation
|
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/ |
BinaryTempFileBody.java | 6 * You may obtain a copy of the License at 75 IOUtils.copy(in, base64Out);
|
/packages/apps/UnifiedEmail/src/com/android/mail/browse/ |
EmailCopyContextMenu.java | 7 * You may obtain a copy of the License at 62 * Copy class for handling click event on the "Copy" button and storing 65 private class Copy implements MenuItem.OnMenuItemClickListener { 68 public Copy(CharSequence text) { 74 copy(mText); 81 * Copy the input text sequence to the system clipboard. 84 private void copy(CharSequence text) { method in class:EmailCopyContextMenu 109 new Copy(mAddress));
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
DeferredFileOutputStream.java | 7 * the License. You may obtain a copy of the License at
263 IOUtils.copy(fis, out);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/ |
PreviewPlacerView.java | 6 * You may obtain a copy of the License at 55 CoordinateUtils.copy(mKeyboardViewOrigin, originCoords);
|
/prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/ |
pretty_printers.py | 14 # You should have received a copy of the GNU General Public License 19 import copy namespace 127 sorted_pretty_printers = copy.copy(pretty_printers) 138 sorted_subprinters = copy.copy(printer.subprinters)
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/share/gdb/python/gdb/command/ |
pretty_printers.py | 14 # You should have received a copy of the GNU General Public License 19 import copy namespace 127 sorted_pretty_printers = copy.copy(pretty_printers) 138 sorted_subprinters = copy.copy(printer.subprinters)
|
/prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/command/ |
pretty_printers.py | 14 # You should have received a copy of the GNU General Public License 19 import copy namespace 127 sorted_pretty_printers = sorted (copy.copy(pretty_printers), 136 sorted_subprinters = sorted (copy.copy(printer.subprinters),
|
/prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/share/gdb/python/gdb/command/ |
pretty_printers.py | 14 # You should have received a copy of the GNU General Public License 19 import copy namespace 127 sorted_pretty_printers = copy.copy(pretty_printers) 138 sorted_subprinters = copy.copy(printer.subprinters)
|