Searched defs:captured (Results 1 - 7 of 7) sorted by relevance

/external/easymock/src/org/easymock/internal/matchers/
H A DCaptures.java32 public Captures(Capture<T> captured) { argument
33 this.capture = captured;
/external/freetype/src/cff/
H A Dcf2blues.c448 * Check whether `stemHint' is captured by one of the blue zones.
451 * captured. For compatibility with CoolType, search top and bottom
452 * zones in the same pass (see `BlueLock'). If a hint is captured,
455 * 1) If `BlueScale' suppresses overshoot, position the captured edge
458 * overshoot, position the captured edge a minimum of 1 device pixel
460 * 3) If overshoot is not suppressed or required, position the captured
472 /* new position of captured edge */
478 FT_Bool captured = FALSE; local
497 /* bottom edge captured by bottom zone */
513 /* simply round captured edg
[all...]
/external/pdfium/third_party/freetype/src/cff/
H A Dcf2blues.c448 * Check whether `stemHint' is captured by one of the blue zones.
451 * captured. For compatibility with CoolType, search top and bottom
452 * zones in the same pass (see `BlueLock'). If a hint is captured,
455 * 1) If `BlueScale' suppresses overshoot, position the captured edge
458 * overshoot, position the captured edge a minimum of 1 device pixel
460 * 3) If overshoot is not suppressed or required, position the captured
472 /* new position of captured edge */
478 FT_Bool captured = FALSE; local
497 /* bottom edge captured by bottom zone */
513 /* simply round captured edg
[all...]
/external/easymock/src/org/easymock/
H A DEasyMock.java1456 * @param <T> Type of the captured object
1457 * @param captured Where the parameter is captured
1460 public static <T> T capture(Capture<T> captured) { argument
1461 reportMatcher(new Captures<T>(captured));
1473 * @param captured Where the parameter is captured
1476 // public static int capture(Capture<Integer> captured) {
1477 // reportMatcher(new Captures<Integer>(captured));
1484 * @param captured Wher
[all...]
/external/android-mock/src/com/google/android/testing/mocking/
H A DAndroidMock.java2352 * {@link org.easymock.Capture#getValue()} to retrieve the captured value.
2354 * @param <T> Type of the captured object
2355 * @param captured a container to hold the captured value, retrieved by
2359 public static <T> T capture(Capture<T> captured) { argument
2360 return EasyMock.capture(captured);
/external/pcre/dist/
H A Dpcrecpp_unittest.cc578 string captured("");
580 RE(regex,options).FullMatch(str, &captured);
582 RE(regex,options).PartialMatch(str, &captured);
583 CHECK_EQ(captured, expected);
708 string captured; local
714 CHECK(re.Extract("\\1", str , &captured));
715 CHECK_EQ(captured, "world");
720 re.Extract("\\1",str, &captured );
721 CHECK_EQ(captured, "world");
/external/clang/lib/Sema/
H A DSemaPseudoObject.cpp346 OpaqueValueExpr *captured = local
352 addSemanticExpr(captured);
353 return captured;
358 /// already be captured.
360 /// \returns the captured expression, which will be the
361 /// same as the input if the input was already captured
365 // If the expression hasn't already been captured, just capture it
378 "captured expression not found in semantics!");

Completed in 1413 milliseconds