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

1 2 3 4 5 6 7 8 91011>>

  /external/strace/xlat/
cap.h 1 /* Generated by ./xlat/gen.sh from ./xlat/cap.in; do not edit. */
5 # error static const struct xlat cap in mpers mode
10 const struct xlat cap[] = { variable in typeref:struct:xlat
  /external/opencv3/modules/videoio/perf/
perf_input.cpp 32 VideoCapture cap; local
34 TEST_CYCLE() cap.open(filename);
36 bool dummy = cap.isOpened();
  /external/v8/test/mjsunit/regress/
regress-crbug-3184.js 53 String.prototype.cap = function() {
57 String.prototype.cap = String.prototype.cap.wrap(
62 return value.cap();
81 assertEquals("Test1 test1", "test1 test1".cap());
82 assertEquals("Test2 Test2", "test2 test2".cap(true));
  /external/libcxx/test/std/utilities/function.objects/func.memfn/
member_data.fail.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
35 f(cap) = 7;
member_data.pass.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
member_function_const.pass.cpp 34 const A* cap = &a; local
35 assert(f(cap) == 'a');
50 const A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_const_volatile.pass.cpp 34 const volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 const volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_volatile.pass.cpp 34 volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
  /external/opencv3/samples/python2/
edge.py 37 cap = video.create_capture(fn) variable
39 flag, img = cap.read()
lappyr.py 47 cap = video.create_capture(fn) variable
55 ret, frame = cap.read()
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.memfn/
member_data.fail.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
35 f(cap) = 7;
member_data.pass.cpp 33 const A* cap = ap; local
34 assert(f(cap) == f(ap));
member_function_const.pass.cpp 34 const A* cap = &a; local
35 assert(f(cap) == 'a');
50 const A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_const_volatile.pass.cpp 34 const volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 const volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 const volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
member_function_volatile.pass.cpp 34 volatile A* cap = &a; local
35 assert(f(cap) == 'a');
50 volatile A* cap = &a; local
51 assert(f(cap, 2) == 'b');
66 volatile A* cap = &a; local
67 assert(f(cap, 2, 3.5) == 'c');
  /external/webrtc/talk/media/webrtc/
fakewebrtcvideocapturemodule.h 71 int32_t StartCapture(const webrtc::VideoCaptureCapability& cap) override {
73 cap_ = cap;
123 const webrtc::VideoCaptureCapability& cap() const { function in class:FakeWebRtcVideoCaptureModule
  /external/opencv3/modules/videoio/test/
test_framecount.cpp 68 Ptr<CvCapture> cap; local
74 cap.reset(cvCreateFileCapture(file_path.c_str()));
75 if (!cap)
83 //cvSetCaptureProperty(cap, CV_CAP_PROP_POS_FRAMES, 0);
88 frame = cvQueryFrame(cap);
94 int framecount = (int)cvGetCaptureProperty(cap, CAP_PROP_FRAME_COUNT);
  /external/opencv3/samples/cpp/
bgfg_segm.cpp 39 VideoCapture cap; local
43 cap.open(0);
45 cap.open(file.c_str());
49 if( !cap.isOpened() )
68 cap >> img0;
laplace.cpp 28 VideoCapture cap; local
32 cap.open(argc == 2 ? argv[1][0] - '0' : 0);
35 cap.open(argv[1]);
36 if( cap.isOpened() )
38 ": width=" << cap.get(CAP_PROP_FRAME_WIDTH) <<
39 ", height=" << cap.get(CAP_PROP_FRAME_HEIGHT) <<
40 ", nframes=" << cap.get(CAP_PROP_FRAME_COUNT) << endl;
46 cap.set(CAP_PROP_POS_FRAMES, pos);
50 if( !cap.isOpened() )
64 cap >> frame
    [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinystr.cpp 37 void TiXmlString::reserve (size_type cap)
39 if (cap > capacity())
42 tmp.init(length(), cap); local
51 size_type cap = capacity(); local
52 if (len > cap || cap > 3*(len + 8))
  /external/tinyxml/
tinystr.cpp 41 void TiXmlString::reserve (size_type cap)
43 if (cap > capacity())
46 tmp.init(length(), cap); local
55 size_type cap = capacity(); local
56 if (len > cap || cap > 3*(len + 8))
  /ndk/sources/cxx-stl/gabi++/src/
stdexcept.cc 41 std::size_t cap; member in struct:__anon35644::__libcpp_nmstr::_Rep_base
82 c->len = c->cap = len;
  /cts/tests/video/src/android/video/cts/
CodecInfo.java 66 CodecCapabilities cap = codec.getCodecInfo().getCapabilitiesForType(mimeType); local
67 if (cap.colorFormats.length == 0) {
74 for (int color : cap.colorFormats) {
82 printIntArray("supported colors", cap.colorFormats);
85 MediaUtils.setMaxEncoderFrameAndBitrates(cap.getVideoCapabilities(), format, maxFps);
  /external/compiler-rt/lib/tsan/rtl/
tsan_vector.h 107 uptr cap = cap0 * 5 / 4; // 25% growth local
108 if (cap == 0)
109 cap = 16;
110 if (cap < size)
111 cap = size;
112 T *p = (T*)internal_alloc(typ_, cap * sizeof(T));
119 last_ = begin_ + cap;
  /external/libcap/progs/old/
sucap.c 144 cap_t cap = cap_init(); local
145 capgetp(0, cap);
146 printf("Caps: %s\n", cap_to_text(cap, &x));
168 cap_t cap = cap_init(); local
169 capgetp(0, cap);
170 printf("Caps: %s\n", cap_to_text(cap, &x));

Completed in 1148 milliseconds

1 2 3 4 5 6 7 8 91011>>