OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:capture_
(Results
1 - 3
of
3
) sorted by null
/external/v8/testing/
gmock-support.h
41
explicit CaptureEqMatcher(Capture<T>* capture) :
capture_
(capture) {}
44
*os << "captured by " << static_cast<const void*>(
capture_
);
45
if (
capture_
->has_value()) *os << " which has value " <<
capture_
->value();
49
if (!
capture_
->has_value()) {
50
capture_
->SetValue(value);
53
if (value !=
capture_
->value()) {
54
*listener << "which is not equal to " <<
capture_
->value();
61
Capture<T>*
capture_
;
member in class:testing::internal::CaptureEqMatcher
/external/v8/src/regexp/
regexp-ast.h
465
explicit RegExpBackReference(RegExpCapture* capture) :
capture_
(capture) {}
474
int index() { return
capture_
->index(); }
475
RegExpCapture* capture() { return
capture_
; }
478
RegExpCapture*
capture_
;
member in class:v8::internal::final
/external/webrtc/talk/media/base/
fakemediaengine.h
783
FakeVideoEngine() :
capture_
(false) {
829
capture_
= capture;
837
bool
capture_
;
member in class:cricket::FakeVideoEngine
873
bool capture() const { return video_.
capture_
; }
Completed in 3784 milliseconds