Searched defs:handle_ (Results 26 - 30 of 30) sorted by relevance

12

/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc1376 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1377 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1381 HANDLE Get() const { return handle_; }
1384 if (handle != handle_) {
1385 if (handle_ != INVALID_HANDLE_VALUE)
1386 ::CloseHandle(handle_);
1387 handle_ = handle;
1392 HANDLE handle_; member in class:testing::internal::AutoHandle
/external/opencv3/modules/ts/src/
H A Dts_gtest.cpp1386 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1387 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1391 HANDLE Get() const { return handle_; }
1394 if (handle != handle_) {
1395 if (handle_ != INVALID_HANDLE_VALUE)
1396 ::CloseHandle(handle_);
1397 handle_ = handle;
1402 HANDLE handle_; member in class:testing::internal::AutoHandle
/external/protobuf/gtest/fused-src/gtest/
H A Dgtest-all.cc1380 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1381 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1385 HANDLE Get() const { return handle_; }
1388 if (handle != handle_) {
1389 if (handle_ != INVALID_HANDLE_VALUE)
1390 ::CloseHandle(handle_);
1391 handle_ = handle;
1396 HANDLE handle_; member in class:testing::internal::AutoHandle
/external/v8/include/
H A Dv8.h461 : isolate_(isolate), parameter_(parameter), handle_(handle) {}
465 V8_INLINE Local<T> GetValue() const { return handle_; }
470 Local<T> handle_; member in class:v8::WeakCallbackData
/external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
H A Dgtest-all.cc1376 AutoHandle() : handle_(INVALID_HANDLE_VALUE) {}
1377 explicit AutoHandle(HANDLE handle) : handle_(handle) {}
1381 HANDLE Get() const { return handle_; }
1384 if (handle != handle_) {
1385 if (handle_ != INVALID_HANDLE_VALUE)
1386 ::CloseHandle(handle_);
1387 handle_ = handle;
1392 HANDLE handle_; member in class:testing::internal::AutoHandle

Completed in 614 milliseconds

12