OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:isopened
(Results
1 - 25
of
165
) sorted by null
1
2
3
4
5
6
7
/external/opencv3/modules/videoio/misc/java/test/
VideoCaptureTest.java
14
private boolean
isOpened
;
24
isOpened
= false;
35
assertFalse(capture.
isOpened
());
41
assertFalse(capture.
isOpened
());
/cts/tests/tests/widget/src/android/widget/cts/
SlidingDrawerTest.java
102
assertFalse(drawer.
isOpened
());
106
assertTrue(drawer.
isOpened
());
110
assertFalse(drawer.
isOpened
());
118
assertFalse(drawer.
isOpened
());
162
assertFalse(drawer.
isOpened
());
206
return drawer.
isOpened
() == opened;
215
assertFalse(drawer.
isOpened
());
219
assertTrue(drawer.
isOpened
());
223
assertFalse(drawer.
isOpened
());
232
assertFalse(drawer.
isOpened
());
[
all
...]
/art/runtime/base/unix_file/
fd_file_test.cc
46
EXPECT_FALSE(file.
IsOpened
());
55
EXPECT_TRUE(file.
IsOpened
());
59
EXPECT_FALSE(file.
IsOpened
());
62
EXPECT_TRUE(file.
IsOpened
());
74
EXPECT_TRUE(file.
IsOpened
());
90
EXPECT_TRUE(file.
IsOpened
());
119
EXPECT_TRUE(file.
IsOpened
());
146
ASSERT_TRUE(src.
IsOpened
());
157
ASSERT_TRUE(dest.
IsOpened
());
/development/host/windows/usb/api/
adb_object_handle.cpp
71
ATLASSERT(!
IsOpened
());
73
if (!
IsOpened
()) {
108
ATLASSERT(
IsOpened
());
110
if (
IsOpened
()) {
145
ATLASSERT(!
IsOpened
());
adb_interface.cpp
69
if (!
IsOpened
()) {
86
if (!
IsOpened
()) {
104
if (!
IsOpened
()) {
adb_interface_enum.cpp
61
if (!
IsOpened
()) {
95
if (!
IsOpened
()) {
adb_io_completion.cpp
44
if (!
IsOpened
()) {
/external/opencv3/modules/videoio/src/
cap_dshow.hpp
35
virtual bool
isOpened
() const;
cap.cpp
560
if (capture && capture->
isOpened
())
598
if (capture && capture->
isOpened
())
636
if (
isOpened
()) release();
642
return
isOpened
();
647
if (
isOpened
()) release();
652
return
isOpened
();
655
bool VideoCapture::
isOpened
() const
773
if (
isOpened
()) release();
778
return
isOpened
();
781
bool VideoWriter::
isOpened
() cons
[
all
...]
/external/opencv3/samples/cpp/example_cmake/
example.cpp
18
if(capture.
isOpened
())
/external/opencv3/modules/video/test/ocl/
test_bgfg_mog2.cpp
46
ASSERT_TRUE(cap.
isOpened
());
94
ASSERT_TRUE(cap.
isOpened
());
/frameworks/compile/mclinker/lib/Support/
FileHandle.cpp
38
if (
isOpened
())
79
if (
isOpened
() || Unknown == pMode) {
107
if (
isOpened
()) {
125
if (!
isOpened
()) {
145
if (!
isOpened
() || !isWritable()) {
160
if (!
isOpened
() || !isReadable()) {
182
if (!
isOpened
() || !isWritable()) {
209
bool FileHandle::
isOpened
() const {
/frameworks/compile/mclinker/unittests/
FileHandleTest.cpp
45
ASSERT_TRUE(m_pTestee->
isOpened
());
52
ASSERT_FALSE(m_pTestee->
isOpened
());
65
ASSERT_TRUE(m_pTestee->
isOpened
());
72
ASSERT_FALSE(m_pTestee->
isOpened
());
87
ASSERT_TRUE(m_pTestee->
isOpened
());
96
ASSERT_FALSE(m_pTestee->
isOpened
());
/external/opencv3/modules/cudacodec/perf/
perf_video.cpp
89
ASSERT_TRUE( reader.
isOpened
() );
116
ASSERT_TRUE( reader.
isOpened
() );
150
if (!writer.
isOpened
())
/external/opencv3/modules/video/perf/opencl/
perf_bgfg_mog2.cpp
67
ASSERT_TRUE(cap.
isOpened
());
97
ASSERT_TRUE(cap.
isOpened
());
/external/opencv3/samples/cpp/
laplace.cpp
36
if( cap.
isOpened
() )
50
if( !cap.
isOpened
() )
starter_video.cpp
81
if (!capture.
isOpened
()) //if this fails, try to open as a video camera, through the use of an integer param
83
if (!capture.
isOpened
()) {
fback.cpp
37
if( !cap.
isOpened
() )
image_sequence.cpp
30
if (!sequence.
isOpened
())
/external/opencv3/modules/java/src/
videoio+VideoCapture.java
89
// C++: bool
isOpened
()
92
//javadoc: VideoCapture::
isOpened
()
93
public boolean
isOpened
()
231
// C++: bool
isOpened
()
/external/opencv3/modules/videoio/perf/
perf_input.cpp
36
bool dummy = cap.
isOpened
();
perf_output.cpp
36
bool dummy = writer.
isOpened
();
/external/opencv3/modules/videoio/test/
test_basic_props.cpp
71
if (!cap.
isOpened
())
95
if (!cap.
isOpened
())
122
if (!cap.
isOpened
())
145
if (!cap.
isOpened
())
/frameworks/opt/net/voip/src/java/android/net/sip/
ISipService.aidl
33
boolean
isOpened
(String localProfileUri, String opPackageName);
/external/opencv3/modules/imgcodecs/src/
bitstrm.cpp
58
bool RBaseStream::
isOpened
()
167
assert(
isOpened
() && pos >= 0 );
184
assert(
isOpened
() );
352
bool WBaseStream::
isOpened
()
372
assert(
isOpened
() );
443
assert(
isOpened
() );
Completed in 463 milliseconds
1
2
3
4
5
6
7