/external/openfst/src/script/ |
intersect.cc | 19 #include <fst/script/intersect.h> 24 void Intersect(const FstClass &ifst1, const FstClass &ifst2, 26 if (!ArcTypesMatch(ifst1, ifst2, "Intersect") || 27 !ArcTypesMatch(*ofst, ifst1, "Intersect")) return; 30 Apply<Operation<IntersectArgs1> >("Intersect", ifst1.ArcType(), &args); 33 void Intersect(const FstClass &ifst1, const FstClass &ifst2, 35 if (!ArcTypesMatch(ifst1, ifst2, "Intersect") || 36 !ArcTypesMatch(*ofst, ifst1, "Intersect")) return; 39 Apply<Operation<IntersectArgs2> >("Intersect", ifst1.ArcType(), &args); 42 REGISTER_FST_OPERATION(Intersect, StdArc, IntersectArgs1) [all...] |
Makefile.am | 8 info.cc intersect.cc invert.cc map.cc minimize.cc print.cc project.cc \
|
/external/openfst/src/include/fst/script/ |
intersect.h | 22 #include <fst/intersect.h> 32 void Intersect(IntersectArgs1 *args) { 37 Intersect(ifst1, ifst2, ofst, args->arg4); 44 void Intersect(IntersectArgs2 *args) { 49 Intersect(ifst1, ifst2, ofst, args->arg4); 52 void Intersect(const FstClass &ifst1, const FstClass &ifst2, 56 void Intersect(const FstClass &ifst, const FstClass &ifst2,
|
/sdk/lint/libs/lint_checks/tests/src/com/android/tools/lint/detector/api/ |
ScopeTest.java | 27 Scope.intersect(Scope.RESOURCE_FILE_SCOPE, Scope.RESOURCE_FILE_SCOPE)); 30 Scope.intersect( 35 Scope.intersect( 40 Scope.intersect( 45 Scope.intersect( 50 Scope.intersect( 54 assertTrue(Scope.intersect(
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
Region_OpTest.java | 27 assertEquals(Op.INTERSECT, Op.valueOf("INTERSECT")); 41 Op.INTERSECT,
|
DiscretePathEffectTest.java | 74 int intersect = 0; local 87 intersect += 1; 100 assertTrue(intersect < lineLength); 102 assertTrue(intersect >= lineLength / SEGMENT_LENGTH);
|
RegionTest.java | 43 // INTERSECT 344 assertFalse(mRegion.op(rect1, Region.Op.INTERSECT)); 384 // INTERSECT, Region with rectangle 385 // intersect the two regions 388 // intersect null rectangle 390 assertFalse(mRegion.op(rect1, Region.Op.INTERSECT)); 392 // 1. intersect rectangle inside this region 395 assertTrue(mRegion.op(rect3, Region.Op.INTERSECT)); 399 // 2. intersect rectangle overlap this region 402 assertTrue(mRegion.op(rect4, Region.Op.INTERSECT)); [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
PKIXNameConstraintValidator.java | 135 Set intersect = new HashSet(); local 144 intersect.add(dn); 156 intersect.add(dn); 160 intersect.add(subtree); 165 return intersect; 182 Set intersect = new HashSet(); local 191 intersect.add(subtree); 195 intersect.add(dn); 199 intersect.add(subtree); 200 intersect.add(dn) 210 Set intersect = new HashSet(); local 276 Set intersect = new HashSet(); local 1032 Set intersect = new HashSet(); local 1231 Set intersect = new HashSet(); local [all...] |
ReasonsMask.java | 71 * @param mask The mask to intersect with. 74 ReasonsMask intersect(ReasonsMask mask) method in class:ReasonsMask
|
/external/guava/guava-tests/test/com/google/common/collect/ |
GeneralRangeTest.java | 137 range.intersect(GeneralRange.range(ORDERING, 2, OPEN, 4, CLOSED))); 144 range.intersect(GeneralRange.range(ORDERING, null, OPEN, 5, CLOSED))); 147 range.intersect(GeneralRange.range(ORDERING, 2, OPEN, 5, CLOSED))); 150 range.intersect(GeneralRange.range(ORDERING, 1, OPEN, 4, OPEN))); 156 range.intersect(GeneralRange.range(ORDERING, 3, CLOSED, 4, CLOSED))); 162 range.intersect(GeneralRange.range(ORDERING, 3, CLOSED, 5, CLOSED))); 164 range.intersect(GeneralRange.range(ORDERING, 1, OPEN, 3, OPEN))); 169 assertTrue(range.intersect(GeneralRange.range(ORDERING, 5, CLOSED, 6, CLOSED)).isEmpty()); 170 assertTrue(range.intersect(GeneralRange.range(ORDERING, 1, OPEN, 2, OPEN)).isEmpty());
|
/external/webkit/Source/WebKit2/Platform/ |
Region.h | 47 void intersect(const Region&); 118 static inline Region intersect(const Region& a, const Region& b) function in namespace:WebKit 121 result.intersect(b);
|
/frameworks/testing/androidtestlib/src/com/android/test/runner/ |
TestRequestBuilder.java | 147 mFilter = mFilter.intersect(Filter.matchMethodDescription( 158 mFilter = mFilter.intersect(new AnnotationInclusionFilter(SmallTest.class)); 160 mFilter = mFilter.intersect(new AnnotationInclusionFilter(MediumTest.class)); 162 mFilter = mFilter.intersect(new AnnotationInclusionFilter(LargeTest.class)); 176 mFilter = mFilter.intersect(new AnnotationInclusionFilter(annotationClass)); 188 mFilter = mFilter.intersect(new AnnotationExclusionFilter(annotationClass));
|
/external/openfst/src/bin/ |
fstintersect.cc | 23 #include <fst/script/intersect.h> 83 s::Intersect(*ifst1, *ifst2, &ofst, opts);
|
/external/qemu/android/skin/ |
region.h | 53 /* performs r = (intersect r r2), returns true if the resulting region 58 /* performs r = (intersect r (region+_from_rect rect)), returns true iff
|
/external/skia/src/gpu/ |
GrRenderTarget.cpp | 71 if (!fResolveRect.intersect(0, 0, this->width(), this->height())) { 85 if (!fResolveRect.intersect(0, 0, this->width(), this->height())) {
|
/external/skia/include/core/ |
SkLineClipper.h | 34 /* Intersect the line segment against the rect. If there is a non-empty
|
SkRect.h | 206 bool intersect(const SkIRect& r) { 208 return this->intersect(r.fLeft, r.fTop, r.fRight, r.fBottom); 211 /** If rectangles a and b intersect, return true and set this rectangle to 215 bool intersect(const SkIRect& a, const SkIRect& b) { 230 /** If rectangles a and b intersect, return true and set this rectangle to 256 bool intersect(int32_t left, int32_t top, int32_t right, int32_t bottom) { 268 /** Returns true if a and b are not empty, and they intersect 491 bool intersect(const SkRect& r); 498 bool intersect(SkScalar left, SkScalar top, SkScalar right, SkScalar bottom); 502 * a rectangle are not empty, and they intersect [all...] |
/external/skia/src/core/ |
SkRect.cpp | 114 bool SkRect::intersect(SkScalar left, SkScalar top, SkScalar right, function in class:SkRect 128 bool SkRect::intersect(const SkRect& r) { function in class:SkRect 130 return this->intersect(r.fLeft, r.fTop, r.fRight, r.fBottom); 133 bool SkRect::intersect(const SkRect& a, const SkRect& b) { function in class:SkRect
|
/external/skia/tests/ |
DrawBitmapRectTest.cpp | 49 // ensure that we draw nothing if srcR does not intersect the bitmap
|
/frameworks/base/graphics/java/android/graphics/ |
Region.java | 31 INTERSECT(1), 188 * not intersect the region. Returning false is not a guarantee that they 189 * intersect, but returning true is a guarantee that they do not. 197 * not intersect the region. Returning false is not a guarantee that they 198 * intersect, but returning true is a guarantee that they do not. 204 * intersect the region. Returning false is not a guarantee that they 205 * intersect, but returning true is a guarantee that they do not.
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
Regions.java | 121 drawRgn(canvas, Color.WHITE, "Intersect", Region.Op.INTERSECT);
|
/external/compiler-rt/lib/tsan/rtl/ |
tsan_update_shadow_word_inl.h | 60 // Do the memory access intersect? 76 // The accesses do not intersect.
|
/external/junit/src/org/junit/runner/manipulation/ |
Filter.java | 36 public Filter intersect(Filter second) { 96 public Filter intersect(final Filter second) {
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/tracks/ |
QuicktimeTextTrackImpl.java | 72 throw new Error("Subtitle display times may not intersect"); 101 throw new Error("Subtitle display times may not intersect");
|
TextTrackImpl.java | 75 throw new Error("Subtitle display times may not intersect"); 104 throw new Error("Subtitle display times may not intersect");
|