/frameworks/compile/slang/tests/F_reflection3264_variable_mismatch_init/ |
D | stderr.txt.expect | 1 reflection3264_variable_mismatch_init.rs:6:7: error: global variable 'b' is initialized differently… 2 reflection3264_variable_mismatch_init.rs:10:8: error: global variable 'd' is initialized differentl… 3 reflection3264_variable_mismatch_init.rs:14:6: error: global variable 'f' is initialized differentl… 4 reflection3264_variable_mismatch_init.rs:18:6: error: global variable 'h' is initialized differentl… 5 reflection3264_variable_mismatch_init.rs:22:8: error: global variable 'j' is initialized differentl… 6 reflection3264_variable_mismatch_init.rs:30:5: error: global variable 'k' is initialized differentl… 7 reflection3264_variable_mismatch_init.rs:38:5: error: global variable 'm' is initialized differentl… 8 reflection3264_variable_mismatch_init.rs:45:6: error: global variable 'n' is initialized differentl… 9 reflection3264_variable_mismatch_init.rs:51:8: error: global variable 'jj' is initialized different… 10 reflection3264_variable_mismatch_init.rs:59:5: error: global variable 'kk' is initialized different… [all …]
|
/frameworks/wilhelm/src/ |
D | ThreadPool.cpp | 81 static void ThreadPool_deinit_internal(ThreadPool *tp, unsigned initialized, unsigned nThreads); 92 unsigned initialized = INITIALIZED_NONE; // which objects were successfully initialized in ThreadPool_init() local 102 initialized |= INITIALIZED_MUTEX; in ThreadPool_init() 107 initialized |= INITIALIZED_CONDNOTFULL; in ThreadPool_init() 112 initialized |= INITIALIZED_CONDNOTEMPTY; in ThreadPool_init() 156 tp->mInitialized = initialized; in ThreadPool_init() 163 ThreadPool_deinit_internal(tp, initialized, nThreads); in ThreadPool_init() 167 static void ThreadPool_deinit_internal(ThreadPool *tp, unsigned initialized, unsigned nThreads) in ThreadPool_deinit_internal() argument 174 assert(INITIALIZED_ALL == initialized); in ThreadPool_deinit_internal() 214 if (initialized & INITIALIZED_CONDNOTEMPTY) { in ThreadPool_deinit_internal() [all …]
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | SmsPermissionsTest.java | 61 final CountDownLatch initialized = new CountDownLatch(1); in setUp() local 72 initialized.countDown(); in setUp() 75 if (!initialized.await(30, TimeUnit.SECONDS)) { in setUp()
|
D | NewNitzStateMachineTest.java | 846 DeviceBuilder setTimeZoneSettingInitialized(boolean initialized) { in setTimeZoneSettingInitialized() argument 847 mTimeZoneSettingInitialized = initialized; in setTimeZoneSettingInitialized()
|
D | OldNitzStateMachineTest.java | 985 DeviceBuilder setTimeZoneSettingInitialized(boolean initialized) { in setTimeZoneSettingInitialized() argument 986 mTimeZoneSettingInitialized = initialized; in setTimeZoneSettingInitialized()
|
/frameworks/hardware/interfaces/displayservice/1.0/ |
D | IDisplayEventReceiver.hal | 26 * SUCCESS if callback is initialized correctly. 28 * UNKNOWN if callback cannot be initialized.
|
/frameworks/opt/gamesdk/ |
D | README | 2 In order to build using prebuild NDK versions, this project must be initialized from a custom repo …
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/Tests/ |
D | GPBMessageTests.m | 226 XCTAssertFalse(message.initialized); 228 XCTAssertFalse(message.initialized); 230 XCTAssertFalse(message.initialized); 232 XCTAssertTrue(message.initialized); 238 XCTAssertTrue(message.initialized); 241 XCTAssertFalse(message.initialized); 244 XCTAssertTrue(message.initialized); 247 XCTAssertFalse(message.initialized); 251 XCTAssertTrue(message.initialized); 257 XCTAssertTrue(message.initialized); [all …]
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/objectivec/ |
D | GPBMessage.h | 79 @property(nonatomic, readonly, getter=isInitialized) BOOL initialized;
|
D | GPBRootObject.m | 178 // will always be initialized. This is because this call flow is just to 181 // initialized and Message classes ensure their Root was also initialized.
|
/frameworks/base/core/java/com/android/internal/os/ |
D | RuntimeInit.java | 53 private static boolean initialized; field in RuntimeInit 242 initialized = true; in commonInit()
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | MultiClientInputMethodServiceDelegate.java | 71 void initialized(); in initialized() method
|
D | MultiClientInputMethodServiceDelegateImpl.java | 107 service.mServiceCallback.initialized(); in initialize()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | mp4lib_int.h | 278 int initialized; member
|
D | pvdec_api.cpp | 159 video->initialized = PV_FALSE; in PVInitVideoDecoder() 295 video->initialized = PV_TRUE; in PVInitVideoDecoder() 1227 if (video->initialized == PV_FALSE) in PVDecodeVopHeader()
|
/frameworks/native/services/inputflinger/ |
D | InputClassifier.cpp | 218 const bool initialized = init(); in callInputClassifierHal() local 219 if (!initialized) { in callInputClassifierHal()
|
/frameworks/native/vulkan/tools/ |
D | vkinfo.cpp | 310 static bool initialized = false; in Indent() local 311 if (!initialized) { in Indent() 314 initialized = true; in Indent()
|
/frameworks/base/packages/SystemUI/docs/ |
D | physics-animation-testing.md | 11 …atch.await()``` does not affect the animations’ progress. The latch is initialized with a count eq…
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_presentation_time.txt | 96 set. If <dpy> is not the name of a valid, initialized EGLDisplay, an
|
/frameworks/native/vulkan/libvulkan/ |
D | api.cpp | 1165 static bool initialized; in EnsureInitialized() local 1170 initialized = true; in EnsureInitialized() 1174 return initialized; in EnsureInitialized()
|
/frameworks/av/services/camera/libcameraservice/common/ |
D | CameraProviderManager.cpp | 643 static bool initialized = false; in isDepthPhotoLibraryPresent() local 644 if (initialized) { in isDepthPhotoLibraryPresent() 647 initialized = true; in isDepthPhotoLibraryPresent() 1502 bool initialized = false; in cameraDeviceStatusChange() local 1529 initialized = mInitialized; in cameraDeviceStatusChange() 1535 if (listener != nullptr && initialized) { in cameraDeviceStatusChange()
|
/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/ |
D | GeneratedMessageV3.java | 1722 initialized = false; 1740 if (initialized) { return this; } 1742 if (initialized) { return this; } 1794 initialized = true; 1804 private volatile boolean initialized;
|
D | GeneratedMessage.java | 2053 initialized = false; 2071 if (initialized) { return this; } 2073 if (initialized) { return this; } 2125 initialized = true; 2135 private volatile boolean initialized;
|
/frameworks/native/opengl/libagl/ |
D | egl.cpp | 124 egl_display_t() : type(0), initialized(0) { } in egl_display_t() 133 std::atomic_size_t initialized; member 1462 if (d.initialized.fetch_add(1, std::memory_order_acquire) == 0) { in eglInitialize() 1482 if (d.initialized.fetch_sub(1, std::memory_order_release) == 1) { in eglTerminate()
|
/frameworks/compile/slang/ |
D | README.rst | 253 on globals initialized from Java as it will be called before these 254 can be initialized. The function signature for init must be::
|