HomeSort by relevance Sort by last modified time
    Searched full:dummy (Results 51 - 75 of 1142) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_QPEApp.cc 42 QWidget dummy; local
43 app->showMainWidget(&dummy);
  /external/v8/tools/
splaytree.py 181 # Create a dummy node. The use of the dummy node is a bit
182 # counter-intuitive: The right child of the dummy node will hold
183 # the L tree of the algorithm. The left child of the dummy node
184 # will hold the R tree of the algorithm. Using a dummy node, left
186 dummy = left = right = Node(None, None)
224 current.left = dummy.right
225 current.right = dummy.left
splaytree.js 223 // Create a dummy node. The use of the dummy node is a bit
224 // counter-intuitive: The right child of the dummy node will hold
225 // the L tree of the algorithm. The left child of the dummy node
226 // will hold the R tree of the algorithm. Using a dummy node, left
228 var dummy, left, right;
229 dummy = left = right = new goog.structs.SplayTree.Node(null, null);
275 current.left = dummy.right;
276 current.right = dummy.left;
  /external/webkit/WebCore/page/android/
DragControllerAndroid.cpp 55 static IntSize dummy; member in namespace:WebCore
56 const IntSize& DragController::maxDragImageSize() { return dummy; }
  /packages/apps/Email/tests/src/com/android/email/
MessagingControllerUnitTests.java 39 * Delete any dummy accounts we set up for this test
75 * Create a dummy account with minimal fields
AccountUnitTests.java 44 * Delete any dummy accounts we set up for this test
62 // Create a dummy account
97 // create a dummy account
117 // create a dummy account
169 * Create a dummy account with minimal fields
  /external/elfutils/config/
config.guess 106 dummy=$tmpdir/dummy ;
107 files="$dummy.c $dummy.o $dummy.rel $dummy" ;
110 ,,) echo "int x;" > $dummy.c ;
112 if ($c $dummy.c -c -o $dummy.o) >/dev/null 2>&1 ; then
235 cat <<EOF >$dummy.
    [all...]
  /external/guava/src/com/google/common/collect/
ImmutableSortedSetFauxverideShim.java 55 * version in {@code ImmutableSortedSet}, not this dummy version.
68 * version in {@code ImmutableSortedSet}, not this dummy version.
81 * version in {@code ImmutableSortedSet}, not this dummy version.
94 * version in {@code ImmutableSortedSet}, not this dummy version.
109 * version in {@code ImmutableSortedSet}, not this dummy version.
124 * version in {@code ImmutableSortedSet}, not this dummy version.
ImmutableSortedMapFauxverideShim.java 47 * {@code ImmutableSortedMap}, not this dummy version.
60 * in {@code ImmutableSortedMap}, not this dummy version.
74 * version in {@code ImmutableSortedMap}, not this dummy version.
89 * in {@code ImmutableSortedMap}, not this dummy version.
104 * in {@code ImmutableSortedMap}, not this dummy version.
  /external/qemu/distrib/sdl-1.2.12/src/video/dummy/
SDL_nullvideo.c 24 /* Dummy SDL video driver implementation; this is just enough to make an
36 * SDL video driver. Renamed to "DUMMY" by Sam Lantinga.
49 #define DUMMYVID_DRIVER_NAME "dummy"
67 /* DUMMY driver bootstrap functions */
136 DUMMYVID_DRIVER_NAME, "SDL dummy video driver",
144 fprintf(stderr, "WARNING: You are using the SDL dummy video driver!\n");
  /external/srec/srec/crec/
comp_stats.c 117 FILETIME dummy, kernelCPU, userCPU; local
118 GetThreadTimes(GetCurrentThread(), &dummy, &dummy, &kernelCPU, local
144 FILETIME dummy, kernelCPU, userCPU; local
145 GetThreadTimes(GetCurrentThread(), &dummy, &dummy, &kernelCPU, local
  /external/v8/src/
zone-inl.h 223 // Create a dummy node. The use of the dummy node is a bit
224 // counter-intuitive: The right child of the dummy node will hold
225 // the L tree of the algorithm. The left child of the dummy node
226 // will hold the R tree of the algorithm. Using a dummy node, left
228 Node* dummy = &dummy_node; local
229 Node* left = dummy;
230 Node* right = dummy;
273 current->left_ = dummy->right_;
274 current->right_ = dummy->left_
    [all...]
  /frameworks/base/tools/layoutlib/create/tests/com/android/tools/layoutlib/create/
AsmAnalyzerTest.java 68 "mock_android.dummy.InnerTest",
69 "mock_android.dummy.InnerTest$DerivingClass",
70 "mock_android.dummy.InnerTest$MyGenerics1",
71 "mock_android.dummy.InnerTest$MyIntEnum",
72 "mock_android.dummy.InnerTest$MyStaticInnerClass",
73 "mock_android.dummy.InnerTest$NotStaticInner1",
74 "mock_android.dummy.InnerTest$NotStaticInner2",
  /external/jpeg/
jccoefct.c 161 * sequentially. Dummy blocks at the right or bottom edge are filled in
182 /* Create some dummy blocks at the right edge of the image. */
190 /* Create a row of dummy blocks at the bottom of the image. */
228 * and saved into the virtual arrays. We also generate suitable dummy blocks
229 * as needed at the right and lower edges. (The dummy blocks are constructed
231 * it possible for subsequent passes not to worry about real vs. dummy blocks.
263 /* Count non-dummy DCT block rows in this iMCU row. */
273 /* Count number of dummy blocks to be added at the right margin. */
277 /* Perform DCT for all non-dummy blocks in this iMCU row. Each call
287 /* Create dummy blocks at the right edge of the image. *
    [all...]
jdapistd.c 81 /* Perform any dummy output passes, and set up for the final pass */
87 * Set up for an output pass, and perform any dummy pass(es) needed.
103 /* Loop over any required dummy passes */
106 /* Crank through the dummy pass */
122 /* Finish up dummy pass, and set up for another one */
240 /* Perform any dummy output passes, and set up for the real pass */
  /external/v8/benchmarks/
splay.js 281 // Create a dummy node. The use of the dummy node is a bit
282 // counter-intuitive: The right child of the dummy node will hold
283 // the L tree of the algorithm. The left child of the dummy node
284 // will hold the R tree of the algorithm. Using a dummy node, left
286 var dummy, left, right;
287 dummy = left = right = new SplayTree.Node(null, null);
333 current.left = dummy.right;
334 current.right = dummy.left;
  /external/webkit/SunSpider/tests/v8-v4/
v8-splay.js 276 // Create a dummy node. The use of the dummy node is a bit
277 // counter-intuitive: The right child of the dummy node will hold
278 // the L tree of the algorithm. The left child of the dummy node
279 // will hold the R tree of the algorithm. Using a dummy node, left
281 var dummy, left, right;
282 dummy = left = right = new SplayTree.Node(null, null);
328 current.left = dummy.right;
329 current.right = dummy.left;
  /external/iproute2/include/linux/
if_ether.h 90 #define ETH_P_802_3 0x0001 /* Dummy type for 802.3 frames */
91 #define ETH_P_AX25 0x0002 /* Dummy protocol id for AX.25 */
96 #define ETH_P_WAN_PPP 0x0007 /* Dummy type for WAN PPP frames*/
97 #define ETH_P_PPP_MP 0x0008 /* Dummy type for PPP MP frames */
100 #define ETH_P_PPPTALK 0x0010 /* Dummy type for Atalk over PPP*/
  /external/kernel-headers/original/linux/
if_ether.h 90 #define ETH_P_802_3 0x0001 /* Dummy type for 802.3 frames */
91 #define ETH_P_AX25 0x0002 /* Dummy protocol id for AX.25 */
96 #define ETH_P_WAN_PPP 0x0007 /* Dummy type for WAN PPP frames*/
97 #define ETH_P_PPP_MP 0x0008 /* Dummy type for PPP MP frames */
100 #define ETH_P_PPPTALK 0x0010 /* Dummy type for Atalk over PPP*/
  /external/qemu/distrib/sdl-1.2.12/
Makefile.android 64 dummy/SDL_dummyaudio.c \
163 SRCS += dummy/SDL_nullevents.c \
164 dummy/SDL_nullmouse.c \
165 dummy/SDL_nullvideo.c
238 SRCS += dummy/SDL_dummy_main.c
  /external/qemu/distrib/sdl-1.2.12/src/audio/dummy/
SDL_dummyaudio.c 36 /* The tag name used by DUMMY audio */
37 #define DUMMYAUD_DRIVER_NAME "dummy"
95 DUMMYAUD_DRIVER_NAME, "SDL dummy audio driver",
  /external/qemu/distrib/sdl-1.2.12/src/thread/irix/
SDL_syssem.c 93 union semun dummy;
94 dummy.val = 0;
95 semctl(sem->id, 0, IPC_RMID, dummy);
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
SignatureSpiTest.java 156 Signature s = new Signature("dummy") {
391 MySignature signature = new MySignature("dummy");
409 MySignature signature = new MySignature("dummy");
428 MySignature signature = new MySignature("dummy");
463 MySignature signature = new MySignature("dummy");
498 MySignature signature = new MySignature("dummy");
  /external/qemu/distrib/sdl-1.2.12/src/video/gem/
SDL_gemevents.c 26 * inspired from the Dummy SDL driver
70 short mousex, mousey, mouseb, dummy; local
103 &dummy,&dummy,&dummy,&kstate,&kc,&dummy
  /bionic/libc/stdio/
snprintf.c 45 char dummy; local
54 str = &dummy;

Completed in 51 milliseconds

1 23 4 5 6 7 8 91011>>