/external/bison/lib/ |
xstrndup.h | 15 You should have received a copy of the GNU General Public License 21 /* Return a newly allocated copy of at most N bytes of STRING. 22 In other words, return a copy of the initial segment of length N of
|
fd-safer.c | 1 /* Return a safer copy of a file descriptor. 15 You should have received a copy of the GNU General Public License 37 /* Return FD, unless FD would be a copy of standard input, output, or
|
/external/stlport/test/unit/ |
finsert_test.cpp | 36 fit = copy(array, array + 3, front_insert_iterator<deque <char const*> >(names)); 42 copy(array, array + 3, fit); 53 copy(array, array + 3, front_inserter(names));
|
insert_test.cpp | 40 itd = copy(array2, array2 + 3, insert_iterator<deque <char const*> >(names, i)); 49 copy(array1, array1 + 3, itd); 62 copy(array2, array2 + 3, inserter(names, i));
|
copy_test.cpp | 44 copy(string, string + 23, result); 54 copy(a, a + size, va); 64 copy(a, a + size, va); 76 copy(a, a + size, va); 91 copy(v1.begin(), v1.end(), v2.begin()); 102 copy(v1.begin(), v1.end(), i);
|
/external/webkit/WebCore/manual-tests/gtk/ |
copy-htmltext.html | 5 <title>Copy HTML content</title> 8 <h1>Copy HTML content from currently editable area</h1> 16 <li><b>Copy</b> them use <b>Ctrl-C</b> / Option-C</li>
|
/frameworks/base/core/java/android/text/ |
NoCopySpan.java | 6 * You may obtain a copy of the License at 21 * into a new Spenned when performing a slice or copy operation on the original 27 * a span but want it to be no-copy. Use this instead.
|
/frameworks/base/opengl/tools/glgen/src/ |
GenerateGL.java | 6 * You may obtain a copy of the License at 26 static void copy(String filename, PrintStream out) throws IOException { method in class:GenerateGL 53 copy("stubs/jsr239/" + fname + 55 copy("stubs/jsr239/" + fname + ".java-impl", glImplStream); 56 copy("stubs/jsr239/" + fname + ".cpp", cStream); 153 copy("stubs/jsr239/GL10Header.java-if", gl10Stream); 154 copy("stubs/jsr239/GL10ExtHeader.java-if", gl10ExtStream); 155 copy("stubs/jsr239/GL11Header.java-if", gl11Stream); 156 copy("stubs/jsr239/GL11ExtHeader.java-if", gl11ExtStream); 157 copy("stubs/jsr239/GL11ExtensionPackHeader.java-if", gl11ExtPackStream) [all...] |
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 52 copy(javaPath, glStream); method 53 copy(stubRoot + ".cpp", cStream); 101 copy("stubs/gles11/" + suffix + "Header.java-if", gl11Stream); 102 copy("stubs/gles11/" + suffix + "cHeader.cpp", gl11cStream);
|
/cts/tests/src/android/provider/cts/ |
FileCopyHelper.java | 6 * You may obtain a copy of the License at 27 * The Class FileCopyHelper is used to copy files from resources to the 42 * Instantiates a new file copy helper. 52 * Copy the file from the resources with a filename . 59 public String copy(int resId, String fileName) { method in class:FileCopyHelper
|
/external/icu4c/common/ |
schriter.cpp | 34 // we had set the input parameter's array, now we need to set our copy's array 43 // we had set the input parameter's array, now we need to set our copy's array 54 // we had set the input parameter's array, now we need to set our copy's array 62 // we had set the input parameter's array, now we need to set our copy's array 73 // we had set the input parameter's array, now we need to set our copy's array
|
/external/opencore/protocols/systems/3g-324m_pvterminal/h245/per/src/ |
h245_copier.cpp | 6 * You may obtain a copy of the License at 21 // DESC: PER Copy routines for H.245 32 // ** Add copy routines as needed in the application ** 46 // Generic copy routine for an H.245 DataType. 60 /* Decode copy (y) from Instream */ 70 /* Return copy */ 77 // Generic copy routine for an H.245 H223LogicalChannelParameters. 91 /* Decode copy (y) from Instream */ 101 /* Return copy */ 108 // Generic copy routine for an H.245 MultiplexEntryDescriptor [all...] |
/external/qemu/android/utils/ |
system.c | 85 char* copy; local 91 copy = malloc(len+1); 92 memcpy(copy, str, len); 93 copy[len] = 0; 95 return copy;
|
/external/skia/tests/ |
StreamTest.cpp | 51 char copy[sizeof(s)]; local 55 char* copyPtr = copy; 61 } while (copyPtr < copy + sizeof(s)); 62 REPORTER_ASSERT(reporter, copyPtr == copy + sizeof(s)); 63 REPORTER_ASSERT(reporter, memcmp(s, copy, sizeof(s)) == 0);
|
/packages/apps/Email/src/org/apache/commons/io/ |
CopyUtils.java | 7 * the License. You may obtain a copy of the License at
36 * Unless otherwise noted, these <code>copy</code> methods do <em>not</em>
47 * For byte-to-char methods, a <code>copy</code> variant allows the encoding
52 * We don't provide special variants for the <code>copy</code> methods that
56 * The <code>copy</code> methods use an internal buffer when copying. It is
58 * to the <code>copy</code> methods in <code>Buffered*</code> streams. For
61 * copy( new BufferedInputStream( in ), new BufferedOutputStream( out ) );
73 * However, the <code>copy</code> methods do the same thing, keeping an
84 * 1 copy InputStream OutputStream (primitive)
85 * 2 copy Reader Writer (primitive) 136 public static void copy(byte[] input, OutputStream output) method in class:CopyUtils 153 public static void copy(byte[] input, Writer output) method in class:CopyUtils 156 copy(in, output); method 170 public static void copy( method in class:CopyUtils 176 copy(in, output, encoding); method 192 public static int copy( method in class:CopyUtils 217 public static int copy( method in class:CopyUtils 243 public static void copy( method in class:CopyUtils 248 copy(in, output); method 261 public static void copy( method in class:CopyUtils 267 copy(in, output); method 282 public static void copy( method in class:CopyUtils 287 copy(input, out); method 305 public static void copy( method in class:CopyUtils 311 copy(in, out); method 327 public static void copy(String input, Writer output) method in class:CopyUtils [all...] |
/dalvik/dx/ |
Android.mk | 5 # We use copy-file-to-new-target so that the installed 20 @echo "Copy: $(PRIVATE_MODULE) ($@)" 21 $(copy-file-to-new-target) 37 @echo "Copy: $(PRIVATE_MODULE) ($@)" 38 $(copy-file-to-new-target) 53 @echo "Copy: $(PRIVATE_MODULE) ($@)" 54 $(copy-file-to-target)
|
/external/skia/src/animator/ |
SkDisplayMovie.cpp | 7 ** You may obtain a copy of the License at 63 SkDisplayMovie* copy = (SkDisplayMovie*) INHERITED::deepCopy(maker); local 64 copy->fMovie.fMaker->fParentMaker = fMovie.fMaker->fParentMaker; 65 copy->fMovie.fMaker->fHostEventSinkID = fMovie.fMaker->fHostEventSinkID; 66 copy->fMovieBuilt = false; 67 *fMovie.fMaker->fParentMaker->fMovies.append() = copy; 68 return copy;
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
prune.h | 5 // You may obtain a copy of the License at 171 vector<StateId> copy; local 185 while (copy.size() <= state) 186 copy.push_back(kNoStateId); 191 if (copy[state] == kNoStateId) 192 copy[state] = ofst->AddState(); 194 ofst->SetFinal(copy[state], ifst.Final(state)); 207 while (copy.size() <= arc.nextstate) 208 copy.push_back(kNoStateId); 214 if (copy[arc.nextstate] == kNoStateId [all...] |
/external/tinyxml/ |
tinystr.h | 33 * - added "copy" constructor with length, and most compare operators. 67 // TiXmlString copy constructor 68 TiXmlString (const TiXmlString & copy) 70 init(copy.length()); 71 memcpy(start(), copy.data(), length()); 75 TiXmlString (const char * copy) 77 init( static_cast<size_type>( strlen(copy) )); 78 memcpy(start(), copy, length()); local 95 TiXmlString& operator = (const char * copy) 97 return assign( copy, (size_type)strlen(copy)) [all...] |
/development/pdk/pndk/ |
Pndk.mk | 6 # You may obtain a copy of the License at 21 # A macro to make rules to copy all newer files in a directory tree matching an 23 # Designed after copy_headers.make: Create a rule to copy each file; 24 # copy-one-file defines the actual rule. 29 define define-tree-copy-rules 34 $(eval $(call copy-one-file,$(_src),$(_dest))) \ 119 $(copy-file-to-target) 123 $(copy-file-to-target) 127 $(copy-file-to-target) 131 $(copy-file-to-target [all...] |
/external/icu4c/layout/ |
layout.vcproj | 869 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 878 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 887 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 896 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 913 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 922 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 931 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 940 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 953 CommandLine="copy "$(InputPath)" ..\..\include\layout
" 962 CommandLine="copy "$(InputPath)" ..\..\include\layout
 [all...] |
/external/proguard/build/ |
build.xml | 28 <copy todir = "${classes}"> 35 </copy> 52 <copy todir = "${classes}"> 59 </copy> 76 <copy todir = "${classes}"> 83 </copy> 109 <copy todir = "${classes}"> 116 </copy> 142 <copy todir = "${classes}"> 149 </copy> [all...] |
/external/opencore/protocols/systems/3g-324m_pvterminal/common/src/ |
pvt_common.cpp | 6 * You may obtain a copy of the License at 44 OSCL_EXPORT_REF CPVParam* CPVAudioParam::Copy() 68 OSCL_EXPORT_REF CPVParam* CPVVideoParam::Copy() 134 OSCL_EXPORT_REF CPVParam* CPVM4vVideoParam::Copy() 203 OSCL_EXPORT_REF CPVUserInput* CPVUserInputDtmf::Copy() 240 OSCL_EXPORT_REF CPVUserInput* CPVUserInputAlphanumeric::Copy() 272 OSCL_EXPORT_REF TPVH245Vendor* TPVH245VendorObjectIdentifier::Copy() 293 OSCL_EXPORT_REF TPVH245Vendor* TPVVendorH221NonStandard::Copy() 325 iVendor = vendor->Copy(); 385 OSCL_EXPORT_REF CPVParam* CPVGenericMuxParam::Copy() [all...] |
/bionic/libc/string/ |
strlcpy.c | 6 * Permission to use, copy, modify, and distribute this software for any 23 * Copy src to string dst of size siz. At most siz-1 characters 34 /* Copy as many bytes as will fit */
|
/external/bluetooth/glib/debian/ |
build | 15 use File::Copy; 39 copy('debian/changelog', 'debian/changelog.old') or die "Couldn't copy debian/changelog to debian/changelog.old: $!\n";
|