HomeSort by relevance Sort by last modified time
    Searched refs:Reporter (Results 101 - 125 of 401) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-2629532/tools/scan-view/
Makefile 19 $(ShareDir)/scan-view/Reporter.py \
  /prebuilts/clang/host/darwin-x86/clang-2658975/tools/scan-view/
Makefile 19 $(ShareDir)/scan-view/Reporter.py \
  /prebuilts/clang/host/darwin-x86/clang-2690385/tools/scan-view/
Makefile 19 $(ShareDir)/scan-view/Reporter.py \
  /prebuilts/clang/host/linux-x86/clang-2629532/tools/scan-view/
Makefile 19 $(ShareDir)/scan-view/Reporter.py \
  /prebuilts/clang/host/linux-x86/clang-2658975/tools/scan-view/
Makefile 19 $(ShareDir)/scan-view/Reporter.py \
  /prebuilts/clang/host/linux-x86/clang-2690385/tools/scan-view/
Makefile 19 $(ShareDir)/scan-view/Reporter.py \
  /external/icu/tools/srcgen/src/main/java/com/android/icu4j/srcgen/
ReplaceIcuTags.java 18 import com.google.currysrc.api.process.Reporter;
35 protected boolean visitTagElement(Reporter reporter, ASTRewrite rewrite, TagElement tag) {
  /external/mockito/src/org/mockito/
MockitoAnnotations.java 10 import org.mockito.exceptions.Reporter;
139 new Reporter().moreThanOneAnnotationNotAllowed(field.getName());
  /external/mockito/src/org/mockito/internal/configuration/injection/
ConstructorInjection.java 8 import org.mockito.exceptions.Reporter;
58 new Reporter().fieldInitialisationThrewException(field, realCause);
PropertyAndSetterInjection.java 8 import org.mockito.exceptions.Reporter;
93 new Reporter().fieldInitialisationThrewException(field, realCause);
95 new Reporter().cannotInitializeForInjectMocksAnnotation(field.getName(), e);
  /external/skia/tests/
BlitMaskClip.cpp 15 TestBlitter(SkIRect bounds, skiatest::Reporter* reporter)
17 , fReporter(reporter) { }
29 skiatest::Reporter* fReporter;
34 DEF_TEST(BlitAndClip, reporter) {
51 TestBlitter tb(mask.fBounds, reporter);
ImageIsOpaqueTest.cpp 19 static void test_flatten(skiatest::Reporter* reporter, const SkImageInfo& info) {
33 REPORTER_ASSERT(reporter, rb.offset() == wb.bytesWritten());
34 REPORTER_ASSERT(reporter, info == info2);
37 DEF_TEST(ImageInfo_flattening, reporter) {
45 test_flatten(reporter, info);
51 static void check_isopaque(skiatest::Reporter* reporter, SkSurface* surface, bool expectedOpaque) {
53 REPORTER_ASSERT(reporter, image->isOpaque() == expectedOpaque);
56 DEF_TEST(ImageIsOpaqueTest, reporter) {
    [all...]
PictureBBHTest.cpp 30 void run(skiatest::Reporter* reporter) {
32 this->run(nullptr, reporter);
36 this->run(&RTreeFactory, reporter);
40 void run(SkBBHFactory* factory, skiatest::Reporter* reporter) {
50 REPORTER_ASSERT(reporter, SK_ColorGREEN == fResultBitmap.getColor(0, 0));
88 DEF_TEST(PictureBBH, reporter) {
91 emptyPictureTest.run(reporter);
94 emptyClipPictureTest.run(reporter);
    [all...]
QuickRejectTest.cpp 54 static void test_drawBitmap(skiatest::Reporter* reporter) {
67 REPORTER_ASSERT(reporter, 0 == *dst.getAddr32(5, 5));
71 REPORTER_ASSERT(reporter, 0xFFFFFFFF == *dst.getAddr32(5, 5));
75 REPORTER_ASSERT(reporter, 0 == *dst.getAddr32(5, 5));
79 REPORTER_ASSERT(reporter, 0 == *dst.getAddr32(5, 5));
87 REPORTER_ASSERT(reporter, 0xFFFFFFFF == *dst.getAddr32(5, 5));
90 static void test_layers(skiatest::Reporter* reporter) {
94 REPORTER_ASSERT(reporter, false == canvas.quickReject(r))
    [all...]
RectTest.cpp 25 static void test_stroke_width_clipping(skiatest::Reporter* reporter) {
41 REPORTER_ASSERT(reporter, !has_green_pixels(bm));
46 REPORTER_ASSERT(reporter, has_green_pixels(bm));
49 static void test_skbug4406(skiatest::Reporter* reporter) {
70 REPORTER_ASSERT(reporter, !has_green_pixels(bm));
84 REPORTER_ASSERT(reporter, has_green_pixels(bm));
87 DEF_TEST(Rect, reporter) {
88 test_stroke_width_clipping(reporter);
    [all...]
RefCntTest.cpp 22 static void test_refCnt(skiatest::Reporter* reporter) {
34 REPORTER_ASSERT(reporter, ref->unique());
55 static void test_weakRefCnt(skiatest::Reporter* reporter) {
73 REPORTER_ASSERT(reporter, ref->unique());
74 REPORTER_ASSERT(reporter, ref->getWeakCnt() == 1);
78 DEF_TEST(RefCnt, reporter) {
79 test_refCnt(reporter);
80 test_weakRefCnt(reporter);
    [all...]
CanvasTest.cpp 21 * skiatest::Reporter* reporter,
26 * REPORTER_ASSERT_MESSAGE(reporter, (...), \
203 static void test_clipVisitor(skiatest::Reporter* reporter, SkCanvas* canvas) {
213 REPORTER_ASSERT(reporter, equal_clips(c, *canvas));
216 static void test_clipstack(skiatest::Reporter* reporter) {
224 REPORTER_ASSERT(reporter, cs->unique());
262 virtual void draw(SkCanvas*, const TestData&, skiatest::Reporter*) = 0
    [all...]
MathTest.cpp 18 static void test_clz(skiatest::Reporter* reporter) {
19 REPORTER_ASSERT(reporter, 32 == SkCLZ(0));
20 REPORTER_ASSERT(reporter, 31 == SkCLZ(1));
21 REPORTER_ASSERT(reporter, 1 == SkCLZ(1 << 30));
22 REPORTER_ASSERT(reporter, 0 == SkCLZ(~0U));
32 REPORTER_ASSERT(reporter, intri == porta);
52 static void test_floor_value(skiatest::Reporter* reporter, float value) {
56 ERRORF(reporter, "fast_floor(%.9g) == %.9g != %.9g == std_floor(%.9g)"
    [all...]
RegionTest.cpp 17 #define TEST_NO_INTERSECT(rgn, rect) REPORTER_ASSERT(reporter, !rgn.intersects(rect))
18 #define TEST_INTERSECT(rgn, rect) REPORTER_ASSERT(reporter, rgn.intersects(rect))
19 #define TEST_NO_CONTAINS(rgn, rect) REPORTER_ASSERT(reporter, !rgn.contains(rect))
23 static void test_fromchrome(skiatest::Reporter* reporter) {
80 static void test_empties(skiatest::Reporter* reporter) {
84 REPORTER_ASSERT(reporter, empty.isEmpty());
85 REPORTER_ASSERT(reporter, !valid.isEmpty());
88 REPORTER_ASSERT(reporter, !empty.intersects(empty2))
    [all...]
BitmapTest.cpp 12 static void test_peekpixels(skiatest::Reporter* reporter) {
19 REPORTER_ASSERT(reporter, !bm.peekPixels(nullptr));
20 REPORTER_ASSERT(reporter, !bm.peekPixels(&pmap));
24 REPORTER_ASSERT(reporter, !bm.peekPixels(nullptr));
25 REPORTER_ASSERT(reporter, !bm.peekPixels(&pmap));
29 REPORTER_ASSERT(reporter, bm.peekPixels(nullptr));
30 REPORTER_ASSERT(reporter, bm.peekPixels(&pmap));
31 REPORTER_ASSERT(reporter, pmap.info() == bm.info());
32 REPORTER_ASSERT(reporter, pmap.addr() == bm.getPixels())
    [all...]
Point3Test.cpp 13 static void test_eq_ops(skiatest::Reporter* reporter) {
18 REPORTER_ASSERT(reporter, p0 != p1);
19 REPORTER_ASSERT(reporter, p1 == p2);
22 static void test_ops(skiatest::Reporter* reporter) {
25 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(v.length(), SK_Scalar1));
29 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(p.length(), 3.0f));
32 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(p.length(), SK_Scalar1));
39 REPORTER_ASSERT(reporter, SkScalarNearlyEqual(p.x(), 0.0f))
    [all...]
RectangleTextureTest.cpp 16 static void test_read_pixels(skiatest::Reporter* reporter, GrContext* context,
25 ERRORF(reporter, "Error reading rectangle texture.");
29 ERRORF(reporter, "Error, rectangle texture pixel value %d should be 0x%08x,"
36 static void test_write_pixels(skiatest::Reporter* reporter, GrContext* context,
49 ERRORF(reporter, "Error writing to rectangle texture.");
51 test_read_pixels(reporter, context, rectangleTexture, pixels.get());
54 static void test_copy_surface_src(skiatest::Reporter* reporter, GrContext* context
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
message_differencer.h 71 // are found, the Compare method will return false, and any differencer reporter
216 class LIBPROTOBUF_EXPORT Reporter {
218 Reporter();
219 virtual ~Reporter();
273 // these fields at all. It is up to the Reporter to decide whether
283 // path has a null field. This could break existing Reporter.
289 GOOGLE_DISALLOW_EVIL_CONSTRUCTORS(Reporter);
339 // To add a Reporter, construct default here, then use ReportDifferencesTo or
481 // ReportIgnored is called on the reporter, if one is specified.
543 // two messages will be reported if a Reporter was specified vi
    [all...]
  /external/chromium-trace/catapult/third_party/Paste/paste/exceptions/
reporter.py 14 class Reporter(object):
37 class EmailReporter(Reporter):
102 class LogReporter(Reporter):
120 class FileReporter(Reporter):
134 class WSGIAppReporter(Reporter):
  /external/google-breakpad/src/common/
dwarf_cfi_to_module.cc 269 void DwarfCFIToModule::Reporter::UnnamedRegister(size_t offset, int reg) {
276 void DwarfCFIToModule::Reporter::UndefinedNotSupported(size_t offset,
285 void DwarfCFIToModule::Reporter::ExpressionsNotSupported(size_t offset,

Completed in 257 milliseconds

1 2 3 45 6 7 8 91011>>