HomeSort by relevance Sort by last modified time
    Searched defs:initialized (Results 1 - 25 of 660) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython3/Tools/freeze/
flag.py 0 initialized = True
1 initialized = True variable
  /external/protobuf/objectivec/
GPBMessage.h 83 @property(nonatomic, readonly, getter=isInitialized) BOOL initialized; variable
  /bootable/recovery/boot_control/
boot_control.cpp 38 // Whether this struct was initialized with data from the bootloader message
40 bool initialized; member in struct:boot_control_private_t
211 if (module->initialized) return true;
228 module->initialized = true;
397 .initialized = false,
  /external/mesa3d/src/glx/apple/
apple_cgl.c 46 static bool initialized = false; variable
69 if (initialized)
120 initialized = true;
apple_glx.c 43 static bool initialized = false; variable
49 if (!initialized) {
109 if (initialized)
123 initialized = true;
  /external/strace/tests/
tprintf.c 70 static int initialized; local
71 if (!initialized) {
75 initialized = 1;
  /external/strace/tests-m32/
tprintf.c 70 static int initialized; local
71 if (!initialized) {
75 initialized = 1;
  /external/strace/tests-mx32/
tprintf.c 70 static int initialized; local
71 if (!initialized) {
75 initialized = 1;
  /system/core/logd/
LogAudit.h 34 bool initialized; member in class:LogAudit
  /external/dhcpcd-6.8.2/
dev.h 33 int (*initialized)(const char *); member in struct:dev
  /external/drm_hwcomposer/
worker.h 44 bool initialized() const { function in class:android::Worker
  /external/guice/core/src/com/google/inject/internal/
DelegatingInvocationHandler.java 28 private volatile boolean initialized; field in class:DelegatingInvocationHandler
36 Preconditions.checkState(initialized,
44 + " proxying is initialized to null."
62 initialized = true;
  /external/honggfuzz/libhfuzz/
persistent.c 37 static bool initialized = false; local
39 if (initialized == true) {
45 initialized = true;
  /external/libchrome/base/threading/
thread_local_storage.h 124 bool initialized() const { function in struct:base::internal::ThreadLocalStorage::StaticSlot
  /external/libese/apps/boot/card/src/com/android/verifiedboot/storage/
LockInterface.java 30 * @return 0, as short, if initialized, or a non-zero error
33 short initialized(); method in interface:LockInterface
  /external/mesa3d/src/gallium/auxiliary/util/
u_math.c 74 static boolean initialized = FALSE; local
75 if (!initialized) {
78 initialized = TRUE;
  /external/mesa3d/src/mesa/main/
remap.c 98 * The remap table needs to be initialized before calling the
104 static bool initialized = false; local
107 if (initialized)
109 initialized = true;
  /external/python/cpython3/Modules/_io/
_iomodule.h 143 int initialized; member in struct:__anon33318
  /external/python/cpython3/Modules/cjkcodecs/
_codecs_hk.c 21 static int initialized = 0; local
23 if (!initialized && IMPORT_MAP(tw, big5, &big5_encmap, &big5_decmap))
25 initialized = 1;
  /external/robolectric-shadows/sandbox/src/test/java/org/robolectric/
StaticInitializerTest.java 48 assertFalse(ShadowClassWithStaticInitializerOverride.initialized);
50 assertTrue(ShadowClassWithStaticInitializerOverride.initialized);
62 public static boolean initialized = false; field in class:StaticInitializerTest.ShadowClassWithStaticInitializerOverride
66 initialized = true;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ImageUtil.java 12 private static boolean initialized; field in class:ImageUtil
15 if (!initialized) {
19 initialized = true;
  /external/tensorflow/tensorflow/core/kernels/
mfcc.cc 38 bool initialized = mel_filterbank_.Initialize( local
41 initialized &=
43 initialized_ = initialized;
44 return initialized;
50 LOG(ERROR) << "Mfcc not initialized.";
  /external/tensorflow/tensorflow/core/platform/s3/
aws_logging.cc 101 static bool initialized = false; member in namespace:tensorflow
105 if (!initialized) {
108 initialized = true;
115 if (initialized) {
117 initialized = false;
  /external/webrtc/webrtc/modules/audio_coding/neteq/
dtmf_tone_generator.cc 192 bool DtmfToneGenerator::initialized() const { function in class:webrtc::DtmfToneGenerator
  /packages/apps/Gallery2/jni/
jni_egl_fence.cpp 35 static bool initialized = false; variable
39 if (!initialized) {
51 initialized = true;

Completed in 702 milliseconds

1 2 3 4 5 6 7 8 91011>>