Searched refs:capture (Results 26 - 50 of 85) sorted by relevance

1234

/external/antlr/antlr-3.4/runtime/Ruby/test/functional/tree-parser/
H A Dbasic.rb28 {self.capture("\%s, \%s" \% [$ID, $INT])}
65 {capture('\%s, \%s' \% [$ID, $INT])}
103 b : ID INT {capture("\%s \%s\n" \% [$ID, $INT])}
104 | ^(ID INT) {capture("^(\%s \%s)" \% [$ID, $INT])}
142 | ^(x=ID (y=INT)+) {capture("^(#{$x} #{$y})")}
178 a : ID INT+ PERIOD {capture("alt 1")}
179 | ID INT+ SEMI {capture("alt 2")}
214 {capture($ID.to_s)}
250 {capture($ID.to_s)}
286 {self.capture(
[all...]
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Dmediaengine.h114 // Sets the default (maximum) codec/resolution and encoder option to capture
139 virtual CaptureResult SetVideoCapture(bool capture) = 0;
218 virtual CaptureResult SetVideoCapture(bool capture) { argument
219 return video_.SetCapture(capture);
324 CaptureResult SetCapture(bool capture) { return CR_SUCCESS; } argument
H A Dchannelmanager.h144 CaptureResult SetVideoCapture(bool capture);
182 CaptureResult SetVideoCapture_w(bool capture);
H A Dchannelmanager.cc126 explicit CaptureParams(bool c) : capture(c), result(CR_FAILURE) {}
128 bool capture; member in struct:cricket::CaptureParams
577 CaptureResult ChannelManager::SetVideoCapture(bool capture) { argument
579 CaptureParams capture_params(capture);
583 capturing_ = capture;
588 CaptureResult ChannelManager::SetVideoCapture_w(bool capture) { argument
591 return media_engine_->SetVideoCapture(capture);
710 p->result = SetVideoCapture_w(p->capture);
/external/libpcap/packaging/
H A Dpcap.spec4 Summary: packet capture library
15 Packet-capture library LIBPCAP 0.9.4
/external/webkit/Source/WebCore/bindings/gobject/
H A DGObjectEventListener.h63 GObjectEventListener(GObject*, EventTarget*, const char* domEventName, GCallback handler, bool capture, void* userData);
/external/webkit/Source/WebCore/rendering/
H A DRenderFileUploadControl.h72 String capture();
H A DRenderFileUploadControl.cpp126 String RenderFileUploadControl::capture() function in class:WebCore::RenderFileUploadControl
128 return static_cast<HTMLInputElement*>(node())->capture();
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java2349 * Expect any {@code Object} as a parameter to the mocked method, but capture it for later use.
2359 public static <T> T capture(Capture<T> captured) { method in class:AndroidMock
2360 return EasyMock.capture(captured);
2364 * Expect any {@code int/Integer} as a parameter to the mocked method, but capture it for later
2374 public static int capture(Capture<Integer> captured) { method in class:AndroidMock
2375 return EasyMock.capture(captured);
2379 * Expect any {@code long/Long} as a parameter to the mocked method, but capture it for later
2389 public static long capture(Capture<Long> captured) { method in class:AndroidMock
2390 return EasyMock.capture(captured);
2394 * Expect any {@code float/Float} as a parameter to the mocked method, but capture i
2404 public static float capture(Capture<Float> captured) { method in class:AndroidMock
2419 public static double capture(Capture<Double> captured) { method in class:AndroidMock
2434 public static byte capture(Capture<Byte> captured) { method in class:AndroidMock
2449 public static char capture(Capture<Character> captured) { method in class:AndroidMock
[all...]
/external/llvm/utils/lit/lit/
H A DUtil.py15 return int(capture(['sysctl', '-n', 'hw.ncpu']))
42 def capture(args, env=None): function
44 """capture(command) - Run the given command (or argv list) in a shell and
/external/easymock/src/org/easymock/internal/
H A DInvocation.java156 public void addCapture(Captures<Object> capture, Object value) { argument
157 capture.setPotentialValue(value);
158 currentCaptures.add(capture);
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrPattern.h139 PatternTerm(Type type, unsigned subpatternId, PatternDisjunction* disjunction, bool capture = false, bool invert = false)
141 , m_capture(capture)
196 bool capture() function in struct:JSC::Yarr::PatternTerm
H A DYarrInterpreter.cpp590 if (term.capture()) {
644 if (term.capture()) {
657 if (term.capture()) {
676 if (term.capture()) {
714 if (term.capture()) {
738 ASSERT(!term.capture());
764 ASSERT(!term.capture());
1436 ParenthesesStackEntry(unsigned beginTerm, unsigned savedAlternativeIndex/*, unsigned subpatternId, bool capture = false*/)
1519 void atomParenthesesOnceBegin(unsigned subpatternId, bool capture, int inputPosition, unsigned frameLocation, unsigned alternativeFrameLocation) argument
1523 m_bodyDisjunction->terms.append(ByteTerm(ByteTerm::TypeParenthesesSubpatternOnceBegin, subpatternId, capture, fals
1532 atomParenthesesTerminalBegin(unsigned subpatternId, bool capture, int inputPosition, unsigned frameLocation, unsigned alternativeFrameLocation) argument
1545 atomParenthesesSubpatternBegin(unsigned subpatternId, bool capture, int inputPosition, unsigned frameLocation, unsigned alternativeFrameLocation) argument
1678 bool capture = parenthesesBegin.capture(); local
1707 bool capture = m_bodyDisjunction->terms[beginTerm].capture(); local
1729 bool capture = m_bodyDisjunction->terms[beginTerm].capture(); local
[all...]
/external/littlemock/tests/com/google/testing/littlemock/
H A DLittleMockTest.java589 verify(mFoo).add(mCaptureString.capture());
596 doReturn("hello").when(mFoo).lookup(mCaptureString.capture());
604 doNothing().when(mFoo).add(mCaptureString.capture());
605 doNothing().when(mFoo).getResultLater(mCaptureCallback.capture());
616 // createCapture().capture() into a method expecting an int, because the capture
618 // capture method, then auto-unboxed into an int when being passed to the underlying
620 // It's not like you need to anyway - there's no point / need to capture a primitive,
625 verify(mBar).mixedArguments(mCaptureInteger.capture(), mCaptureString.capture());
[all...]
/external/clang/lib/CodeGen/
H A DCGBlocks.cpp164 /// A chunk of data that we actually have to capture in the block.
172 const BlockDecl::Capture *capture,
174 : Alignment(align), Size(size), Capture(capture), Type(type) {}
192 /// Determines if the given type is safe for constant capture in C++.
234 // invalid?), it's not clear what we should do. Maybe capture as
352 // If we have a lifetime qualifier, honor it for capture purposes.
531 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
532 if (capture.isConstant()) continue;
551 capture.getIndex());
566 capture
171 BlockLayoutChunk(CharUnits align, CharUnits size, const BlockDecl::Capture *capture, llvm::Type *type) argument
685 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
894 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable); local
1087 const CGBlockInfo::Capture &capture = blockInfo.getCapture(self); local
1099 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1139 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1240 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1353 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
[all...]
/external/chromium/chrome/browser/resources/ntp4/
H A Dtouch_handler.js337 * during the capture phase.
340 var capture = !!opt_capture;
346 capture);
349 capture);
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dtouchhandler.js337 * during the capture phase.
340 var capture = !!opt_capture;
346 capture);
349 capture);
/external/antlr/antlr-3.4/runtime/Python/tests/
H A Dt052import.py26 def capture(self, t): member in class:T.parserClass.TParser
53 def capture(self, t): member in class:T.lexerClass.TLexer
137 def capture(self, t):
138 self.gM1.capture(t)
142 a : B { self.capture("S.a") } ;
195 def capture(self, t):
196 self.gM2.capture(t)
198 a[x] returns [y] : B {self.capture("S.a"); $y="1000";} ;
208 s : label=a[3] {self.capture($label.y);} ;
230 def capture(sel
[all...]
H A Dt053hetero.py17 def capture(self, t): member in class:T.parserClass.TParser
44 def capture(self, t): member in class:T.lexerClass.TLexer
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dfunctional.rb204 def capture( *args ) method in class:ANTLR3.Test.CaptureOutput
/external/libvpx/examples/includes/
H A Dvp8_doc_tools.php52 * a capture group).
/external/qemu/audio/
H A Daudio.h62 void (*capture) (void *opaque, void *buf, int size); member in struct:audio_capture_ops
H A Dwavcapture.c120 ops.capture = wav_capture;
150 monitor_printf(mon, "Failed to add audio capture\n");
/external/webkit/Source/WebCore/html/
H A DHTMLInputElement.idl111 attribute [Reflect] DOMString capture;
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp191 OpaqueValueExpr *capture(Expr *op);
278 OpaqueValueExpr *PseudoOpBuilder::capture(Expr *e) { function in class:PseudoOpBuilder
299 // If the expression hasn't already been captured, just capture it
302 OpaqueValueExpr *cap = capture(e);
345 OpaqueValueExpr *capturedRHS = capture(RHS);
404 result = capture(result.take());
567 // If we have a base, capture it in an OVE and rebuild the syntactic
570 InstanceReceiver = capture(RefExpr->getBase());
619 /// \param captureSetValueAsResult If true, capture the actual
868 InstanceBase = capture(RefExp
[all...]

Completed in 874 milliseconds

1234