HomeSort by relevance Sort by last modified time
    Searched full:inited (Results 1 - 25 of 107) sorted by null

1 2 3 4 5

  /external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
DummyInput.java 46 protected boolean inited = false; field in class:DummyInput
49 if (inited)
52 inited = true;
56 if (!inited)
61 if (!inited)
64 inited = false;
68 return inited;
DummyKeyInput.java 46 if (!inited)
DummyMouseInput.java 46 if (!inited)
  /external/valgrind/main/memcheck/tests/
inits.c 4 /* Static and global vars are inited to zero, non-static local vars aren't. */
  /external/qemu/
module.c 31 static int inited; local
34 if (inited) {
42 inited = 1;
  /external/compiler-rt/lib/lsan/
lsan.cc 40 static bool inited; local
41 if (inited)
43 inited = true;
  /external/chromium_org/chrome/test/pyautolib/
asan_stub.c 39 static int inited = 0; local
40 if (inited) return;
41 inited = 1;
69 static int inited = 0; local
70 if (inited) return;
71 inited = 1;
  /ndk/sources/host-tools/make-3.81/
remote-cstms.c 67 static int inited = 0;
71 if (!inited)
77 inited = -1;
89 inited = Customs_Ping () == RPC_SUCCESS ? 1 : -1;
96 inited = -1;
107 inited = -1;
111 if (inited < 0)
66 static int inited = 0; local
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
lbximage.h 40 int inited; member in struct:_LbxBitmapCompMethod
78 int inited; member in struct:_LbxPixmapCompMethod
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbximage.h 40 int inited; member in struct:_LbxBitmapCompMethod
78 int inited; member in struct:_LbxPixmapCompMethod
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
lbximage.h 40 int inited; member in struct:_LbxBitmapCompMethod
78 int inited; member in struct:_LbxPixmapCompMethod
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
JInputJoyInput.java 19 private boolean inited = false; field in class:JInputJoyInput
113 inited = true;
179 inited = false;
183 return inited;
  /external/jmonkeyengine/engine/src/niftygui/com/jme3/niftygui/
NiftyJmeDisplay.java 55 protected boolean inited = false; field in class:NiftyJmeDisplay
116 inited = true;
159 return inited;
177 inited = false;
  /sdk/emulator/opengl/host/renderer/
main.cpp 116 bool inited = FrameBuffer::initialize(winWidth, winHeight); local
117 if (!inited) {
122 inited = FrameBuffer::setupSubWindow(windowId,
124 if (!inited) {
  /sdk/emulator/opengl/tests/emulator_test_renderer/
main.cpp 95 bool inited = initOpenGLRenderer(winWidth, winHeight, portNum); local
96 if (!inited) {
102 inited = createOpenGLSubwindow(windowId, 0, 0,
104 if (!inited) {
  /external/compiler-rt/lib/msan/
msan_allocator.cc 39 static int inited = 0; member in namespace:__msan
42 if (inited) return;
44 inited = true; // this must happen before any threads are created.
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
PinyinDecoderService.java 100 private static boolean inited = false; field in class:PinyinDecoderService
141 inited = nativeImOpenDecoderFd(afd.getFileDescriptor(), afd
168 inited = false;
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_fog.c 52 static GLfloat inited = 0; variable
83 inited = 1;
249 if (!inited)
  /external/chromium_org/ui/views/corewm/
compound_event_filter.cc 31 static bool inited = false; local
33 if (!inited) {
61 inited = true;
  /external/mesa3d/src/mesa/tnl/
t_vb_fog.c 52 static GLfloat inited = 0; variable
83 inited = 1;
249 if (!inited)
  /external/chromium_org/third_party/libjingle/source/talk/base/
crc32.cc 43 return; // already inited
  /external/smack/asmack-master/static-src/custom/org/jivesoftware/smackx/
InitStaticCode.java 21 * filesystem, the static blocks of some classes have to be inited manually.
  /external/smack/src/org/jivesoftware/smackx/
InitStaticCode.java 21 * filesystem, the static blocks of some classes have to be inited manually.
  /external/bison/lib/glthread/
lock.c 594 if (!once_control->inited)
603 if (!once_control->inited)
605 once_control->inited = 1;
618 if (!once_control->inited)
621 once_control->inited = ~ 0;
1021 if (once_control->inited <= 0)
1028 once_control->inited = 0;
1030 once_control->inited = 1;
1040 while (once_control->inited < 0)
1042 if (once_control->inited <= 0
    [all...]
  /external/chromium_org/chrome/browser/sessions/
session_backend.h 57 bool inited() const { return inited_; } function in class:SessionBackend
131 // Whether we've inited. Remember, the constructor is run on the

Completed in 1118 milliseconds

1 2 3 4 5