HomeSort by relevance Sort by last modified time
    Searched refs:copy (Results 1 - 25 of 3001) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/string/
strndup.c 35 char* copy = malloc(len+1); local
37 if (copy) {
38 memcpy( copy, s, len );
39 copy[len] = 0;
41 return copy;
strdup.c 42 char *copy; local
45 if ((copy = malloc(siz)) == NULL)
47 (void)memcpy(copy, str, siz);
48 return(copy);
  /external/bluetooth/hcidump/
bootstrap 5 automake --add-missing --copy && \
  /external/bluetooth/bluez/
bootstrap 5 libtoolize --automake --copy --force && \
6 automake --add-missing --copy && \
  /external/icu4c/i18n/unicode/
fieldpos.h 14 * 07/17/98 stephen Added default/copy ctors, and operators =, ==, !=
136 * Copy constructor
137 * @param copy the object to be copied from.
140 FieldPosition(const FieldPosition& copy)
141 : UObject(copy), fField(copy.fField), fBeginIndex(copy.fBeginIndex), fEndIndex(copy.fEndIndex) {}
151 * @param copy the object to be copied from.
154 FieldPosition& operator=(const FieldPosition& copy);
    [all...]
  /external/tcpdump/missing/
strdup.c 50 char *copy; local
53 if ((copy = malloc(len)) == NULL)
55 memcpy(copy, str, len);
56 return (copy);
  /external/webkit/WebCore/platform/
CrossThreadCopier.cpp 43 CrossThreadCopierBase<false, false, KURL>::Type CrossThreadCopierBase<false, false, KURL>::copy(const KURL& url) function in class:WebCore::CrossThreadCopierBase
45 return url.copy();
48 CrossThreadCopierBase<false, false, String>::Type CrossThreadCopierBase<false, false, String>::copy(const String& str) function in class:WebCore::CrossThreadCopierBase
53 CrossThreadCopierBase<false, false, ResourceError>::Type CrossThreadCopierBase<false, false, ResourceError>::copy(const ResourceError& error) function in class:WebCore::CrossThreadCopierBase
55 return error.copy();
58 CrossThreadCopierBase<false, false, ResourceRequest>::Type CrossThreadCopierBase<false, false, ResourceRequest>::copy(const ResourceRequest& request) function in class:WebCore::CrossThreadCopierBase
63 CrossThreadCopierBase<false, false, ResourceResponse>::Type CrossThreadCopierBase<false, false, ResourceResponse>::copy(const ResourceResponse& response) function in class:WebCore::CrossThreadCopierBase
CrossThreadCopier.h 54 static Type copy(const T& parameter) function in struct:WebCore::CrossThreadCopierPassThrough
73 // Custom copy methods.
77 static Type copy(const T& refPtr) function in struct:WebCore::CrossThreadCopierBase
85 static Type copy(const PassOwnPtr<T>& ownPtr) function in struct:WebCore::CrossThreadCopierBase
93 static Type copy(const std::auto_ptr<T>& autoPtr) function in struct:WebCore::CrossThreadCopierBase
101 static Type copy(const KURL&);
106 static Type copy(const String&);
111 static Type copy(const ResourceError&);
116 static Type copy(const ResourceRequest&);
121 static Type copy(const ResourceResponse&)
    [all...]
  /external/icu4c/common/unicode/
parsepos.h 71 * Copy constructor
72 * @param copy the object to be copied from.
75 ParsePosition(const ParsePosition& copy)
76 : UObject(copy),
77 index(copy.index),
78 errorIndex(copy.errorIndex)
91 ParsePosition& operator=(const ParsePosition& copy);
183 ParsePosition::operator=(const ParsePosition& copy)
185 index = copy.index;
186 errorIndex = copy.errorIndex
    [all...]
  /external/dropbear/libtomcrypt/src/pk/asn1/der/set/
der_encode_set.c 70 ltc_asn1_list *copy; local
74 /* make copy of list */
75 copy = XCALLOC(inlen, sizeof(*copy));
76 if (copy == NULL) {
82 copy[x] = list[x];
83 copy[x].used = x;
87 XQSORT(copy, inlen, sizeof(*copy), &qsort_helper);
90 err = der_encode_sequence_ex(copy, inlen, out, outlen, LTC_ASN1_SET);
    [all...]
  /frameworks/base/include/private/media/
VideoFrame.h 7 ** You may obtain a copy of the License at
60 MediaAlbumArt(const MediaAlbumArt& copy) {
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) {
94 mWidth = copy.mWidth;
95 mHeight = copy.mHeight;
96 mDisplayWidth = copy.mDisplayWidth
    [all...]
  /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...]
  /external/dbus/dbus/
dbus-marshal-byteswap-util.c 18 * You should have received a copy of the GNU General Public License
49 DBusString copy; local
53 if (!_dbus_string_init (&copy))
56 if (!_dbus_string_copy (&body, 0, &copy, 0))
62 &copy, 0);
67 &copy, 0);
75 _dbus_verbose_bytes_of_string (&copy, 0,
76 _dbus_string_get_length (&copy));
82 _dbus_string_free (&copy);
  /external/webkit/WebCore/bindings/objc/
PublicDOMInterfaces.h 34 @property(readonly, copy) NSString *name;
36 @property(copy) NSString *value;
45 @property(copy) NSString *data;
88 @property(copy) NSString *title;
89 @property(readonly, copy) NSString *referrer;
90 @property(readonly, copy) NSString *domain;
91 @property(readonly, copy) NSString *URL;
93 @property(copy) NSString *cookie;
94 @property(readonly, copy) NSString *inputEncoding AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
95 @property(readonly, copy) NSString *xmlEncoding AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER
    [all...]
  /external/webkit/WebCore/platform/network/
SocketStreamErrorBase.cpp 36 SocketStreamError SocketStreamErrorBase::copy() const function in class:WebCore::SocketStreamErrorBase
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
ITableFocusListener.java 6 * You may obtain a copy of the License at
30 public void copy(Clipboard clipboard); method in interface:ITableFocusListener.IFocusedTableActivator
  /external/libpng/
autogen.sh 10 libtoolize --force --copy --automake
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
Java6Arrays.java 7 * the License. You may obtain a copy of the License at
51 T[] copy = (T[]) Array.newInstance(original.getClass().getComponentType(), length); local
52 System.arraycopy(original, start, copy, 0, copyLength);
53 return copy;
67 T[] copy = (T[]) Array.newInstance(newType.getComponentType(), local
69 System.arraycopy(original, start, copy, 0, copyLength);
70 return copy;
  /external/webkit/WebCore/loader/mac/
DocumentLoaderMac.cpp 41 const ResourceLoaderSet copy = loaders; local
42 ResourceLoaderSet::const_iterator end = copy.end();
43 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
50 const ResourceLoaderSet copy = loaders; local
51 ResourceLoaderSet::const_iterator end = copy.end();
52 for (ResourceLoaderSet::const_iterator it = copy.begin(); it != end; ++it)
  /external/icu4c/test/intltest/
tstnrapi.cpp 32 // test copy constructor
33 Normalizer copy(norm);
34 if(copy.next()!=0xac00) {
39 Normalizer *clone=copy.clone();
40 if(*clone!=copy) {
41 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
44 if(clone->hashCode()!=copy.hashCode()) {
45 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
51 if(clone->hashCode()==copy.hashCode()) {
52 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()==copy.hashCode()")
    [all...]
  /build/core/
distdir.mk 6 # You may obtain a copy of the License at
17 # When specifying "dist", the user has asked that we copy the important
35 # $(3): goals that should copy the file
37 define copy-one-dist-file
41 $$(copy-file-to-new-target-with-cp)
52 # at copy time if necessary.
60 $(call copy-one-dist-file, \
  /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));
ostmit_test.cpp 41 copy(text, text + 5, iter);
47 copy(array, array + 4, iter2);
  /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...]
  /system/core/libcutils/
process_name.c 6 * You may obtain a copy of the License at
43 char* copy = (char*) malloc(len + 1); local
44 strcpy(copy, new_name);
45 process_name = (const char*) copy;

Completed in 2197 milliseconds

1 2 3 4 5 6 7 8 91011>>