HomeSort by relevance Sort by last modified time
    Searched refs:copy (Results 1 - 25 of 4348) 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/webkit/Source/WebCore/svg/
SVGMatrix.h 14 * You should have received a copy of the GNU Library General Public License
45 AffineTransform copy = *this; local
46 copy.translate(tx, ty);
47 return static_cast<SVGMatrix>(copy);
52 AffineTransform copy = *this; local
53 copy.scale(s, s);
54 return static_cast<SVGMatrix>(copy);
59 AffineTransform copy = *this; local
60 copy.scale(sx, sy);
61 return static_cast<SVGMatrix>(copy);
66 AffineTransform copy = *this; local
73 AffineTransform copy = *this; local
80 AffineTransform copy = *this; local
87 AffineTransform copy = *this; local
94 AffineTransform copy = *this; local
101 AffineTransform copy = *this; local
120 AffineTransform copy = *this; local
    [all...]
  /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/Source/WebCore/platform/
CrossThreadCopier.cpp 44 CrossThreadCopierBase<false, false, KURL>::Type CrossThreadCopierBase<false, false, KURL>::copy(const KURL& url) function in class:WebCore::CrossThreadCopierBase
46 return url.copy();
49 CrossThreadCopierBase<false, false, String>::Type CrossThreadCopierBase<false, false, String>::copy(const String& str) function in class:WebCore::CrossThreadCopierBase
54 CrossThreadCopierBase<false, false, ResourceError>::Type CrossThreadCopierBase<false, false, ResourceError>::copy(const ResourceError& error) function in class:WebCore::CrossThreadCopierBase
56 return error.copy();
59 CrossThreadCopierBase<false, false, ResourceRequest>::Type CrossThreadCopierBase<false, false, ResourceRequest>::copy(const ResourceRequest& request) function in class:WebCore::CrossThreadCopierBase
64 CrossThreadCopierBase<false, false, ResourceResponse>::Type CrossThreadCopierBase<false, false, ResourceResponse>::copy(const ResourceResponse& response) function in class:WebCore::CrossThreadCopierBase
  /frameworks/compile/mclinker/lib/MC/
MCLDAttribute.cpp 114 Attribute *copy = new Attribute(*m_pBase); local
115 copy->setWholeArchive();
116 ReplaceOrRecord(m_AttrPool, m_pBase, copy);
121 Attribute *copy = new Attribute(*m_pBase); local
122 copy->unsetWholeArchive();
123 ReplaceOrRecord(m_AttrPool, m_pBase, copy);
128 Attribute *copy = new Attribute(*m_pBase); local
129 copy->setAsNeeded();
130 ReplaceOrRecord(m_AttrPool, m_pBase, copy);
135 Attribute *copy = new Attribute(*m_pBase) local
142 Attribute *copy = new Attribute(*m_pBase); local
149 Attribute *copy = new Attribute(*m_pBase); local
156 Attribute *copy = new Attribute(*m_pBase); local
163 Attribute *copy = new Attribute(*m_pBase); local
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
PendingAddItemInfo.java 6 * You may obtain a copy of the License at
80 // Copy constructor
81 public PendingAddWidgetInfo(PendingAddWidgetInfo copy) {
82 minWidth = copy.minWidth;
83 minHeight = copy.minHeight;
84 minResizeWidth = copy.minResizeWidth;
85 minResizeHeight = copy.minResizeHeight;
86 previewImage = copy.previewImage;
87 icon = copy.icon;
88 info = copy.info
    [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/clang/test/CodeGen/
2007-04-24-VolatileStructCopy.c 8 void copy(volatile struct foo *p, struct foo *q) { function
  /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/av/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...]
  /external/elfutils/tests/
run-ranlib-test.sh 15 # You should have received a copy of the GNU General Public License along
29 tempfiles ranlib-test.a ranlib-test.a-copy
39 cp ranlib-test.a ranlib-test.a-copy
44 cmp ranlib-test.a ranlib-test.a-copy
  /external/clang/test/Lexer/
digraph.c 9 void copy(char d<::>, const char s<::>, int len)
  /external/guava/guava-testlib/src/com/google/common/testing/
SerializableTester.java 6 * You may obtain a copy of the License at
95 T copy = reserialize(object); local
97 .addEqualityGroup(object, copy)
99 Assert.assertEquals(object.getClass(), copy.getClass());
100 return copy;
  /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/elfutils/libdwfl/
dwfl_module_report_build_id.c 14 You should have received a copy of the GNU General Public License along
81 void *copy = NULL; local
84 copy = malloc (len);
85 if (unlikely (copy == NULL))
90 memcpy (copy, bits, len);
95 mod->build_id_bits = copy;
  /external/webkit/Source/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/compiler-rt/BlocksRuntime/tests/
byrefstruct.c 21 BobTheStruct copy; local
32 memset(&copy, 0x2A, sizeof(copy));
40 copy = fiddly;
43 if ( &copy == &fiddly ) {
48 //printf("[%d]: fiddly.ps: %lu, copy.ps: %lu, fiddly.qs: %d, copy.qs: %d\n", i, fiddly.ps[i], copy.ps[i], fiddly.qs[i], copy.qs[i]);
49 if ( (fiddly.ps[i] != copy.ps[i] + 1) || (fiddly.qs[i] != copy.qs[i] + 1) )
    [all...]

Completed in 1553 milliseconds

1 2 3 4 5 6 7 8 91011>>