Searched refs:old (Results 126 - 150 of 699) sorted by relevance

1234567891011>>

/external/skia/experimental/PdfViewer/pdfparser/native/
H A DSkPdfNativeObject.cpp31 const unsigned char* old = fStr.fBuffer; local
44 delete[] old;
/external/chromium_org/third_party/icu/source/samples/ucnv/
H A Dflagcb.c49 FromUFLAGContext *old, *cloned; local
55 old = (FromUFLAGContext*)context;
58 memcpy(cloned, old, sizeof(FromUFLAGContext));
61 printf("%p: my subcb=%p:%p\n", old, old->subCallback,
62 old->subContext);
/external/chromium_org/third_party/polymer/components-chromium/core-animated-pages/
H A Dcore-animated-pages-extracted.js45 _transitionsChanged: function(old) {
158 selectedChanged: function(old) {
159 this.lastSelected = old;
/external/chromium_org/third_party/polymer/components-chromium/core-animation/
H A Dcore-animation-extracted.js330 targetChanged: function(old) {
331 if (old) {
332 old.classList.remove('core-animation-target');
/external/chromium_org/third_party/tcmalloc/chromium/src/base/
H A Datomicops-internals-arm-v6plus.h85 Atomic32 tmp, old; local
92 : "=&r" (tmp), "=&r" (old)
95 return old;
211 Atomic64 old; local
218 : "=&r" (store_failed), "=&r" (old)
221 return old;
/external/chromium_org/third_party/tcmalloc/vendor/src/base/
H A Datomicops-internals-arm-v6plus.h84 Atomic32 tmp, old; local
91 : "=&r" (tmp), "=&r" (old)
94 return old;
210 Atomic64 old; local
217 : "=&r" (store_failed), "=&r" (old)
220 return old;
/external/conscrypt/src/main/java/org/conscrypt/
H A DOpenSSLSessionImpl.java448 Object old = values.put(name, value);
453 if (old instanceof SSLSessionBindingListener) {
454 ((SSLSessionBindingListener) old)
475 Object old = values.remove(name);
476 if (old instanceof SSLSessionBindingListener) {
477 SSLSessionBindingListener listener = (SSLSessionBindingListener) old;
/external/icu/icu4c/source/samples/ucnv/
H A Dflagcb.c49 FromUFLAGContext *old, *cloned; local
55 old = (FromUFLAGContext*)context;
58 memcpy(cloned, old, sizeof(FromUFLAGContext));
61 printf("%p: my subcb=%p:%p\n", old, old->subCallback,
62 old->subContext);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DLogTest.java126 PrintStream old = ShadowLog.stream;
135 ShadowLog.stream = old;
141 PrintStream old = ShadowLog.stream;
150 ShadowLog.stream = old;
155 PrintStream old = ShadowLog.stream;
163 ShadowLog.stream = old;
/external/valgrind/main/nightly/bin/
H A Dnightly104 rm -rf diffs diffs.txt diff.short final new.short new.verbose old.short old.verbose
105 rm -rf sendmail.log unchanged.log valgrind-old valgrind-new
142 # Do everything twice -- once for the 24 hours old Valgrind, and once
144 for logfile in old new ; do
146 # Remove old short and verbose log files, and start the new ones
152 if [ $logfile = "old" ] ; then
158 # Get dates for the old and new versions
240 # 'final' shows the difference between the old and new results
247 diff -C1 old
[all...]
/external/libedit/src/
H A Drefresh.c308 * end of the screen line, it won't be a NUL or some old
454 * number of characters between the new and old line.
480 /old first difference
481 /beginning of line | /old last same /old EOL
483 old: eddie> Oh, my little gruntle-buggy is to me, as lurgid as
501 re_update_line(EditLine *el, Char *old, Char *new, int i) argument
512 for (o = old, n = new; *o && (*o == *n); o++, n++)
518 * Find the end of both old and new
618 * Pragmatics I: If old trailin
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_bitvector.h35 basic_int_t old = bits_; local
37 return bits_ != old;
42 basic_int_t old = bits_; local
44 return bits_ != old;
58 basic_int_t old = bits_; local
60 return bits_ != old;
65 basic_int_t old = bits_; local
67 return bits_ != old;
72 basic_int_t old = bits_; local
74 return bits_ != old;
[all...]
/external/libnl/lib/
H A Dcache.c26 * 2) destroy old cache +----------- pp_cb ---------|---+
522 struct nl_object *old; local
527 old = nl_cache_search(cache, obj);
528 if (old) {
529 nl_cache_remove(old);
532 cb(cache, old, NL_ACT_DEL, data);
533 nl_object_put(old);
539 if (old == NULL && cb)
541 else if (old) {
542 if (nl_object_diff(old, ob
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dshared.c408 /* unref old state */
409 struct gl_shared_state *old = *ptr; local
412 _glthread_LOCK_MUTEX(old->Mutex);
413 assert(old->RefCount >= 1);
414 old->RefCount--;
415 delete = (old->RefCount == 0);
416 _glthread_UNLOCK_MUTEX(old->Mutex);
419 free_shared_state(ctx, old);
/external/chromium_org/third_party/polymer/components-chromium/core-overlay/
H A Dcore-overlay-extracted.js172 targetChanged: function(old) {
181 if (old) {
182 this.removeElementListenerList(old, this.targetListeners);
185 transition.teardown(old);
187 old.style.position = '';
188 old.style.outline = '';
190 old.style.display = '';
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dhelp.c258 static void add_cmd_list(struct cmdnames *cmds, struct cmdnames *old) argument
262 ALLOC_GROW(cmds->names, cmds->cnt + old->cnt, cmds->alloc);
264 for (i = 0; i < old->cnt; i++)
265 cmds->names[cmds->cnt++] = old->names[i];
266 free(old->names);
267 old->cnt = 0;
268 old->names = NULL;
/external/mesa3d/src/mesa/main/
H A Dshared.c408 /* unref old state */
409 struct gl_shared_state *old = *ptr; local
412 _glthread_LOCK_MUTEX(old->Mutex);
413 assert(old->RefCount >= 1);
414 old->RefCount--;
415 delete = (old->RefCount == 0);
416 _glthread_UNLOCK_MUTEX(old->Mutex);
419 free_shared_state(ctx, old);
/external/valgrind/main/coregrind/
H A Dm_redir.c282 Addr from_addr; /* old addr -- MUST BE THE FIRST WORD! */
697 Active *old, new; local
699 old = VG_(OSetGen_Lookup)(activeSet, &old_from);
700 vg_assert(old);
701 vg_assert(old->isIFunc);
703 new = *old;
850 Active* old = NULL; local
874 old = VG_(OSetGen_Lookup)( activeSet, &act.from_addr );
875 if (old) {
877 vg_assert(old
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DExpandedNameTable.java257 for (HashEntry old = oldTable[i]; old != null; )
259 HashEntry e = old;
260 old = old.next;
/external/bsdiff/
H A Dbspatch.c67 u_char *old, *new; local
138 ((old=malloc(oldsize+1))==NULL) ||
140 (read(fd,old,oldsize)!=oldsize) ||
170 /* Add old data to diff string */
173 new[newpos+i]+=old[oldpos+i];
207 free(old);
/external/chromium_org/third_party/freetype/src/cache/
H A Dftccmap.c312 FT_CharMap old, cmap = NULL; local
315 old = face->charmap;
318 if ( old != cmap && !no_cmap_change )
323 if ( old != cmap && !no_cmap_change )
324 FT_Set_Charmap( face, old );
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayApply.cpp348 int old = displayList.findGroup(drawable, &parentList, &parentGroup, &thisGroup, &grandList); local
349 if (old < 0)
352 if ((*parentList)[old] != this || restore) {
355 parentGroup->markCopySize(old);
361 old = -1;
365 SkASSERT(old < parentList->count());
366 if ((*parentList)[old]->isApply()) {
367 SkApply* apply = (SkApply*) (*parentList)[old];
374 parentGroup->markCopySize(old);
375 SkDrawable** newApplyLocation = &(*parentList)[old];
433 int old = maker.fDisplayList.findGroup(scope, &pList, &pGroup, &found, &gList); local
[all...]
/external/freetype/src/cache/
H A Dftccmap.c312 FT_CharMap old, cmap = NULL; local
315 old = face->charmap;
318 if ( old != cmap && !no_cmap_change )
323 if ( old != cmap && !no_cmap_change )
324 FT_Set_Charmap( face, old );
/external/skia/src/animator/
H A DSkDisplayApply.cpp348 int old = displayList.findGroup(drawable, &parentList, &parentGroup, &thisGroup, &grandList); local
349 if (old < 0)
352 if ((*parentList)[old] != this || restore) {
355 parentGroup->markCopySize(old);
361 old = -1;
365 SkASSERT(old < parentList->count());
366 if ((*parentList)[old]->isApply()) {
367 SkApply* apply = (SkApply*) (*parentList)[old];
374 parentGroup->markCopySize(old);
375 SkDrawable** newApplyLocation = &(*parentList)[old];
433 int old = maker.fDisplayList.findGroup(scope, &pList, &pGroup, &found, &gList); local
[all...]
/external/qemu/
H A Dkvm-all.c463 fprintf(stderr, "kvm version too old\n");
704 KVMSlot *mem, old; local
736 old = *mem;
756 old.start_addr == start_addr && old.memory_size < size &&
759 mem->memory_size = old.memory_size;
760 mem->start_addr = old.start_addr;
761 mem->phys_offset = old.phys_offset;
771 start_addr += old.memory_size;
772 phys_offset += old
[all...]

Completed in 4744 milliseconds

1234567891011>>