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

1 2

  /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)
  /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/chromium_org/chrome/test/pyautolib/
asan_stub.c 39 static int inited = 0; local
40 if (inited) return;
41 inited = 1;
  /external/compiler-rt/lib/lsan/
lsan.cc 40 static bool inited; local
41 if (inited)
43 inited = true;
  /external/qemu/
module.c 31 static int inited; local
34 if (inited) {
42 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
  /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) {
  /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/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.
  /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
  /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;
  /sdk/emulator/opengl/host/libs/libOpenglRender/
render_api.cpp 94 bool inited = FrameBuffer::initialize(width, height); local
95 if (!inited) {
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetypes.py 14 inited -- flag set when init() has been called
52 inited = False variable
65 if not inited:
350 global inited, _db
351 inited = True # so that MimeTypes.__init__() doesn't call us again
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetypes.py 14 inited -- flag set when init() has been called
52 inited = False variable
65 if not inited:
350 global inited, _db
351 inited = True # so that MimeTypes.__init__() doesn't call us again
  /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 29 static bool inited = false; local
31 if (!inited) {
59 inited = true;
  /external/mesa3d/src/mesa/tnl/
t_vb_fog.c 52 static GLfloat inited = 0; variable
83 inited = 1;
249 if (!inited)
  /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/llvm/unittests/IR/
PassManagerTest.cpp 226 static int inited; member in struct:llvm::__anon24217::BPass
231 EXPECT_EQ(inited, N);
235 inited = 0;
244 inited++;
263 int BPass::inited=0; member in class:llvm::__anon24217::BPass

Completed in 529 milliseconds

1 2