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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/string/
strndup.c 34 char* copy; local
38 copy = malloc(n+1);
39 if (copy) {
40 memcpy(copy, s, n);
41 copy[n] = 0;
43 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/chromium/third_party/icu/public/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/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
  /external/chromium/third_party/icu/public/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/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...]
  /bionic/libc/wchar/
wcsdup.c 36 wchar_t *copy; local
40 if ((copy = malloc(len * sizeof(wchar_t))) == NULL)
42 return (wmemcpy(copy, s, len));
  /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/icu4c/test/intltest/
tstnrapi.cpp 31 // test copy constructor
32 Normalizer copy(norm);
33 if(copy.next()!=0xac00) {
38 Normalizer *clone=copy.clone();
39 if(*clone!=copy) {
40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
43 if(clone->hashCode()!=copy.hashCode()) {
44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
50 if(clone->hashCode()==copy.hashCode()) {
51 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->next().hashCode()==copy.hashCode()")
    [all...]
  /external/chromium/third_party/libevent/
autogen.sh 11 automake --add-missing --copy
  /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
  /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/tools/genprops/misc/
ucdcopy.py 13 # Copy Unicode Character Database (ucd) files from a tree
109 # Simply copy these files.
110 "BidiMirroring.txt": shutil.copy,
111 "BidiTest.txt": shutil.copy,
112 "Blocks.txt": shutil.copy,
113 "CaseFolding.txt": shutil.copy,
114 "DerivedAge.txt": shutil.copy,
115 "DerivedBidiClass.txt": shutil.copy,
116 "DerivedJoiningGroup.txt": shutil.copy,
117 "DerivedJoiningType.txt": shutil.copy,
    [all...]
  /external/icu4c/tools/genprops/
ucdcopy.py 13 # Copy Unicode Character Database (ucd) files from a tree
109 # Simply copy these files.
110 "BidiMirroring.txt": shutil.copy,
111 "BidiTest.txt": shutil.copy,
112 "Blocks.txt": shutil.copy,
113 "CaseFolding.txt": shutil.copy,
114 "DerivedAge.txt": shutil.copy,
115 "DerivedBidiClass.txt": shutil.copy,
116 "DerivedJoiningGroup.txt": shutil.copy,
117 "DerivedJoiningType.txt": shutil.copy,
    [all...]
  /external/chromium/third_party/icu/source/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...]

Completed in 2136 milliseconds

1 2 3 4 5 6 7 8 91011>>