/external/stlport/stlport/stl/ |
_vector.c | 213 __tmp.swap(*this);
|
_slist.h | 430 void swap(_Self& __x) function in class:slist 431 { this->_M_head.swap(__x._M_head); } 433 void _M_swap_workaround(_Self& __x) { swap(__x); }
|
/external/webkit/JavaScriptCore/API/ |
JSClassRef.cpp | 152 swap(definition.staticFunctions, protoDefinition.staticFunctions); // Move static functions to the prototype.
|
/external/webkit/WebCore/loader/ |
DocumentLoader.h | 309 loadsSet.swap(m_resourcesLoadedFromMemoryCacheForClientNotification);
|
ImageLoader.cpp | 323 m_dispatchingList.swap(m_dispatchSoonList);
|
/external/webkit/WebCore/rendering/ |
RenderRubyRun.cpp | 176 // Collect all children in a single base, then swap the bases.
|
/external/webkit/WebKit/win/ |
COMPropertyBag.h | 92 instance->m_hashMap.swap(hashMap);
|
/frameworks/base/core/jni/android/graphics/ |
Region.cpp | 124 dst->swap(tmp);
|
/frameworks/base/docs/html/guide/tutorials/views/ |
hello-tabwidget.jd | 57 in our code, and swap the views in the FrameLayout. We've also defined our own IDs for each TextView, which we'll use to
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
StateListDrawable.java | 30 * Lets you assign a number of graphic images to a single Drawable and swap out the visible item by a string
|
/packages/apps/Phone/src/com/android/phone/ |
InCallControlState.java | 124 // Swap / merge calls
|
/prebuilt/windows/sdl/host/include/SDL/ |
SDL_endian.h | 153 /* Separate into high and low 32-bit values and swap them */
|
/system/extras/showmap/ |
showmap.c | 82 if(fgets(line, 1024, fp) == 0) goto oops; // Swap
|
/system/extras/tests/framebuffer/ |
mdp_test.c | 135 fprintf(stderr,"active fb swap failed!\n");
|
/external/dbus/bus/ |
services.c | 1045 _dbus_assert_not_reached ("Tried to swap a non primary owner"); 1054 _dbus_assert_not_reached ("Tried to swap owner of a service that has no owners"); 1058 _dbus_assert_not_reached ("Tried to swap owner of a service that has no other owners in the queue"); [all...] |
/external/icu4c/common/ |
usprep.cpp | 939 /* swap the int32_t indexes[] */ 944 /* swap the UTrie */ 949 /* swap the uint16_t mappingTable[] */
|
/external/qemu/distrib/sdl-1.2.12/src/video/cybergfx/ |
SDL_cgximage.c | 280 /* Byte-swap the pixels in the display image */ 430 /* Check for endian-swapped X server, swap if necessary (VERY slow!) */ 729 /* Check for endian-swapped X server, swap if necessary */
|
/external/stlport/stlport/stl/debug/ |
_debug.c | 490 * according to the standard : --no swap() function invalidates any references, 498 * As user is supposed to provide its own synchronization around swap() ( it is unsafe to do any container/iterator access 499 * in parallel with swap()), we just do not use any locking at all -- that behaviour is closer to non-debug version
|
_string.h | 643 void swap(_Self& __s) { function in class:basic_string 645 _M_non_dbg_impl.swap(__s._M_non_dbg_impl); 648 void _M_swap_workaround(_Self& __x) { swap(__x); }
|
/external/webkit/WebKit/chromium/src/gtk/ |
WebInputEventFactory.cpp | 168 // even when we change the layout options, e.g. when we swap a control 169 // key and a caps-lock key, GTK doesn't swap their 170 // |event->hardware_keycode| values but swap their |event->keyval| values.
|
/bionic/libc/bionic/ |
pthread.c | 914 * if it made the swap successfully. If the result is nonzero, this 920 * requires promoting it to state 2. We need to swap in the new 923 * __atomic_swap() returns the previous value. We swap 2 in and 968 * This doesn't cause a race with the swap/wait pair in 988 * wake up a sleeper, which will swap in a 2 and then go back to [all...] |
/dalvik/vm/interp/ |
Interp.c | 888 * the swap, and for 4- or 8-byte values we need to swap pieces within 900 /* un-swap pairs of bytes as we go */ 918 /* swap word halves */ 924 /* swap word halves and words */ [all...] |
/external/proguard/src/proguard/optimize/evaluation/ |
EvaluationShrinker.java | [all...] |
/external/skia/src/core/ |
SkPath.cpp | 133 void SkPath::swap(SkPath& other) { function in class:SkPath 138 fPts.swap(other.fPts); 139 fVerbs.swap(other.fVerbs); 929 dst->swap(tmp); [all...] |
/dalvik/libcore/luni/src/test/java/tests/api/java/util/ |
CollectionsTest.java | [all...] |