Searched defs:copy (Results 251 - 275 of 425) sorted by relevance

<<11121314151617

/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
H A Dtest_runner.py40 import copy namespace
/external/webkit/Tools/android/flex-2.5.4a/
H A Dmisc.c189 /* copy_string - returns a dynamically allocated copy of a string */
196 char *copy; local
204 copy = (char *) flex_alloc( size );
206 if ( copy == NULL )
209 for ( c2 = copy; (*c2++ = *str++) != 0; )
212 return copy;
217 * returns a dynamically allocated copy of a (potentially) unsigned string
224 Char *copy; local
230 copy = allocate_Character_array( c - str + 1 );
232 for ( c = copy; (*
[all...]
/external/zlib/src/contrib/blast/
H A Dblast.c262 * an instruction to copy previously uncompressed bytes to the output. The
263 * copy is from distance bytes back in the output stream, copying for length
272 * twelve copies the last four bytes three times. A simple forward copy
281 int len; /* length for copy */
282 int dist; /* distance for copy */
283 int copy; /* copy counter */ local
284 unsigned char *from, *to; /* copy pointers */
339 /* copy length bytes from distance bytes back */
343 copy
[all...]
/external/chromium/base/
H A Dfile_path.cc1205 StringType copy = path_; local
1207 std::replace(copy.begin(), copy.end(), kSeparators[i], kSeparators[0]);
1209 return FilePath(copy);
H A Dvalues.cc13 // Make a deep copy of |node|, but don't include empty lists or dictionaries
14 // in the copy. It's possible for this function to return NULL and it
21 ListValue* copy = new ListValue; local
26 copy->Append(child_copy);
28 if (!copy->empty())
29 return copy;
31 delete copy;
37 DictionaryValue* copy = new DictionaryValue; local
45 copy->SetWithoutPathExpansion(*it, child_copy);
47 if (!copy
625 Value* copy = CopyWithoutEmptyChildren(this); local
[all...]
H A Dvalues_unittest.cc467 scoped_ptr<DictionaryValue> copy; local
468 copy.reset(dv.DeepCopy());
469 EXPECT_TRUE(dv.Equals(copy.get()));
476 EXPECT_FALSE(dv.Equals(copy.get()));
477 copy->Set("f", list->DeepCopy());
478 EXPECT_TRUE(dv.Equals(copy.get()));
481 EXPECT_FALSE(dv.Equals(copy.get()));
484 copy.reset(dv.DeepCopy());
485 EXPECT_TRUE(dv.Equals(copy.get()));
486 copy
[all...]
/external/chromium/net/server/
H A Dhttp_server.cc34 IdToConnectionMap copy = id_to_connection_; local
35 for (IdToConnectionMap::iterator it = copy.begin(); it != copy.end(); ++it)
/external/dropbear/libtomcrypt/src/headers/
H A Dtomcrypt_math.h37 /** init copy
39 @param src The number to copy from
59 /** copy
60 @param src The number to copy from
64 int (*copy)(void *src, void *dst); member in struct:__anon5214
451 #define mp_copy(a, b) ltc_mp.copy(a, b)
/external/icu4c/i18n/
H A Ddtitvinf.cpp660 UnicodeString* copy = new UnicodeString[kIPI_MAX_INDEX]; local
663 copy[i] = value[i];
665 target->put(UnicodeString(*key), copy, status);
/external/icu4c/test/intltest/
H A Dsrchtest.cpp755 StringSearch *copy = new StringSearch(*result); local
756 if (*(copy->getCollator()) != *(result->getCollator()) ||
757 copy->getBreakIterator() != result->getBreakIterator() ||
758 copy->getMatchedLength() != result->getMatchedLength() ||
759 copy->getMatchedStart() != result->getMatchedStart() ||
760 copy->getOffset() != result->getOffset() ||
761 copy->getPattern() != result->getPattern() ||
762 copy->getText() != result->getText() ||
763 *(copy) != *(result))
767 delete copy;
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DSignatureAttribute.java77 * Makes a copy. Class names are replaced according to the
80 * @param newCp the constant pool table used by the new copy.
84 public AttributeInfo copy(ConstPool newCp, Map classnames) { method in class:SignatureAttribute
H A DStackMapTable.java56 * Makes a copy.
64 public AttributeInfo copy(ConstPool newCp, Map classnames) method in class:StackMapTable
77 * An exception that may be thrown by <code>copy()</code>
411 return srcPool.copy(data, destPool, null);
420 newData[i] = srcPool.copy(data[i], destPool, null);
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DVector3f.java116 * Constructor instantiates a new <code>Vector3f</code> that is a copy
118 * @param copy The Vector3f to copy
120 public Vector3f(Vector3f copy) { argument
121 this.set(copy);
148 * the vector to copy.
H A DVector4f.java121 * Constructor instantiates a new <code>Vector3f</code> that is a copy
123 * @param copy The Vector3f to copy
125 public Vector4f(Vector4f copy) { argument
126 this.set(copy);
156 * the vector to copy.
/external/libppp/src/
H A Ddatalink.c1296 struct fsm_retry copy; local
1365 copy = dl->pap.cfg.fsm;
1367 dl->pap.cfg.fsm = copy;
1369 copy = dl->chap.auth.cfg.fsm;
1371 dl->chap.auth.cfg.fsm = copy;
/external/openssl/ssl/
H A Dssl_sess.c151 /* aka SSL_get0_session; gets 0 objects, just returns a copy of the pointer */
533 int copy=1; local
535 if ((ret=s->session_ctx->get_session_cb(s,session_id,len,&copy)))
542 * it must handle the reference count itself [i.e. copy == 0],
544 if (copy)
1102 unsigned char *data,int len,int *copy))
1108 unsigned char *data,int len,int *copy)
1100 SSL_CTX_sess_set_get_cb(SSL_CTX *ctx, SSL_SESSION *(*cb)(struct ssl_st *ssl, unsigned char *data,int len,int *copy)) argument
/external/qemu/
H A Dposix-aio-compat.c270 * Ok, we have to do it the hard way, copy all segments into
287 size_t count = aiocb->aio_nbytes, copy; local
291 copy = count;
292 if (copy > aiocb->aio_iov[i].iov_len)
293 copy = aiocb->aio_iov[i].iov_len;
294 memcpy(aiocb->aio_iov[i].iov_base, p, copy);
295 p += copy;
296 count -= copy;
/external/skia/legacy/src/animator/
H A DSkDisplayApply.cpp402 SkApply* copy = (SkApply*) deepCopy(&maker); // work on copy of animator state local
404 copy->mode = (Mode) -1;
405 SkDrawable* copyScope = copy->scope = (SkDrawable*) scope->deepCopy(&maker);
413 if (copy->resolveIDs(maker, this, this)) { // fix up all fields, including target
417 copy->activate(maker);
418 copy->interpolate(maker, step * SK_MSec1);
419 maker.removeActive(copy->fActive);
421 delete copy;
H A DSkDisplayable.cpp76 SkDisplayable* copy = SkDisplayType::CreateInstance(maker, type); local
81 info = copy->getMember(++index);
87 copy->setProperty(propIndex, value);
98 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy);
116 info->setMemberData(copy, deeper, sizeof(deeper));
122 info->setString(copy, string);
127 info->setMemberData(copy, data, size);
129 copy->dirty();
130 return copy;
/external/skia/legacy/src/xml/
H A DSkDOM.cpp332 const SkDOM::Node* SkDOM::copy(const SkDOM& dom, const SkDOM::Node* node) function in class:SkDOM
/external/skia/src/animator/
H A DSkDisplayApply.cpp402 SkApply* copy = (SkApply*) deepCopy(&maker); // work on copy of animator state local
404 copy->mode = (Mode) -1;
405 SkDrawable* copyScope = copy->scope = (SkDrawable*) scope->deepCopy(&maker);
413 if (copy->resolveIDs(maker, this, this)) { // fix up all fields, including target
417 copy->activate(maker);
418 copy->interpolate(maker, step * SK_MSec1);
419 maker.removeActive(copy->fActive);
421 delete copy;
H A DSkDisplayable.cpp76 SkDisplayable* copy = SkDisplayType::CreateInstance(maker, type); local
81 info = copy->getMember(++index);
87 copy->setProperty(propIndex, value);
98 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy);
116 info->setMemberData(copy, deeper, sizeof(deeper));
122 info->setString(copy, string);
127 info->setMemberData(copy, data, size);
129 copy->dirty();
130 return copy;
/external/skia/src/core/
H A DSkPathRef.h25 * copy-on-write if the SkPathRef is shared by multipls SkPaths. The caller passes the Editor's
77 SkPathRef* copy = SkNEW(SkPathRef); local
78 copy->copy(*pathRef->get(), incReserveVerbs, incReservePoints);
79 pathRef->reset(copy);
340 // We've done the work to determine that these are equal. If either has a zero genID, copy
397 void copy(const SkPathRef& ref, int additionalReserveVerbs, int additionalReservePoints) { function in class:SkPathRef
404 // a copy then presumably we intend to make a modification immediately afterwards.
/external/skia/src/xml/
H A DSkDOM.cpp332 const SkDOM::Node* SkDOM::copy(const SkDOM& dom, const SkDOM::Node* node) function in class:SkDOM
/external/sonivox/jet_tools/JetCreator/
H A DJetCreator.py12 You may obtain a copy of the License at
28 import copy namespace
609 self.jet_file = copy.deepcopy(state.jet_file)
622 self.jet_file = copy.deepcopy(state.jet_file)
642 editSegment = copy.deepcopy(segment)
697 curEvent = copy.deepcopy(self.jet_file.GetEvent(self.currentSegmentName, self.currentEventName))
704 editSegment = copy.deepcopy(segment)
1226 """ Thread writes a temporary copy of the jet file, and calls the library to play it """

Completed in 8367 milliseconds

<<11121314151617