HomeSort by relevance Sort by last modified time
    Searched refs:Region (Results 226 - 250 of 336) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Launcher3/src/com/android/launcher3/
BubbleTextView.java 28 import android.graphics.Region;
420 getScrollY() + getHeight(), Region.Op.INTERSECT);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditor.java 50 import org.eclipse.jface.text.Region;
534 IRegion region = new Region(indexedRegion.getStartOffset(),
537 AdtPlugin.openFile(getInputFile(), region, true /*show*/);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 43 import org.eclipse.jface.text.Region;
277 IRegion region = null; local
281 region = new Region(start, end - start);
283 part = AdtPlugin.openFile(file, region, true /* showEditor */);
LintViewPart.java 49 import org.eclipse.jface.text.Region;
499 IRegion region = null; local
504 region = new Region(start, end - start);
506 AdtPlugin.openFile((IFile) resource, region);
  /frameworks/native/libs/ui/tests/
vec_test.cpp 22 #include <ui/Region.h>
  /frameworks/native/services/surfaceflinger/DisplayHardware/
HWC2.cpp 29 #include <ui/Region.h>
80 using android::Region;
987 Error Layer::setSurfaceDamage(const Region& damage)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/
TransitionImageView.java 26 import android.graphics.Region.Op;
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 44 /// Represent a region's offset within the top level base region.
46 /// The base region.
49 /// The bit offset within the base region. Can be negative.
73 // Base region classes.
141 /// Check if the region is a subregion of the given region.
146 /// \brief If this is a symbolic region, returns the region. Otherwise,
147 /// goes up the base chain looking for the first symbolic base region
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
DynamicTypePropagation.cpp 143 static void recordFixedType(const MemRegion *Region, const CXXMethodDecl *MD,
145 assert(Region);
152 State = setDynamicTypeInfo(State, Region, Ty, /*CanBeSubclass=*/false);
206 // Get the returned value if it's a region.
343 // Compare the current dynamic type of the region and the new type to which we
    [all...]
  /frameworks/base/core/java/android/view/
SurfaceView.java 28 import android.graphics.Region;
56 * <p> The transparent region that makes the surface visible is based on the
259 // This is needed because the transparent region is computed
314 public boolean gatherTransparentRegion(Region region) {
316 return super.gatherTransparentRegion(region);
321 // this view draws, remove it from the transparent region
322 opaque = super.gatherTransparentRegion(region);
323 } else if (region != null) {
331 region.op(l, t, l+w, t+h, Region.Op.UNION)
    [all...]
  /frameworks/base/media/java/android/media/tv/
TvView.java 28 import android.graphics.Region;
725 public boolean gatherTransparentRegion(Region region) {
727 if (region != null) {
735 region.op(left, top, left + width, top + height, Region.Op.UNION);
739 return super.gatherTransparentRegion(region);
    [all...]
  /frameworks/compile/mclinker/lib/Target/Hexagon/
HexagonLDBackend.cpp 194 case Fragment::Region: {
918 if ((frag->getKind() != mcld::Fragment::Region) &&
954 llvm::StringRef region = pInput.memArea()->request(offset, size); local
955 if (region.size() == 0) {
956 // If the input section's size is zero, we got a NULL region.
960 frag = new RegionFragment(region);
    [all...]
  /frameworks/native/libs/gui/
SurfaceComposerClient.cpp 153 const Region& transparentRegion);
337 const Region& transparentRegion) {
696 const Region& transparentRegion) {
  /cts/tests/tests/graphics/src/android/graphics/cts/
CanvasTest.java 32 import android.graphics.Region;
38 import android.graphics.Region.Op;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusgraphics.h 40 friend class Region;
827 Status ExcludeClip(const Region *region)
831 region ? region->nativeRegion : NULL,
1014 Status FillRegion(const Brush *brush, const Region *region)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
Hyperlinks.java 124 import org.eclipse.jface.text.Region;
580 private static void openPath(IPath filePath, IRegion region, int offset) {
587 AdtPlugin.openFile(file, region);
975 IRegion region = null; local
1049 IRegion region = null; local
1627 IRegion region = null; local
1805 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(offset); local
1820 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(offset); local
    [all...]
  /frameworks/base/core/java/android/service/voice/
VoiceInteractionSession.java 33 import android.graphics.Region;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreview.java 81 import org.eclipse.swt.graphics.Region;
    [all...]
  /art/runtime/entrypoints/quick/
quick_alloc_entrypoints.cc 190 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(Region, gc::kAllocatorTypeRegion)
  /external/skia/tests/
RegionTest.cpp 64 // These test SkRegion::contains(Rect) and SkRegion::contains(Region)
233 DEF_TEST(Region, reporter) {
268 static void test_write(const SkRegion& region, skiatest::Reporter* r) {
269 const size_t bytesNeeded = region.writeToMemory(nullptr);
271 const size_t bytesWritten = region.writeToMemory(storage.get());
276 // Test an empty region.
277 SkRegion region; local
278 REPORTER_ASSERT(r, region.isEmpty());
279 test_write(region, r);
281 // Test a rectangular region
    [all...]
  /frameworks/base/libs/hwui/
BakedOpRenderer.cpp 47 // subtract repaintRect from region, since it will be regenerated
50 // repaint full layer, so throw away entire region
51 offscreenBuffer->region.clear();
53 offscreenBuffer->region.subtractSelf(android::Rect(repaintRect.left, repaintRect.top,
278 LOG_ALWAYS_FATAL_IF(clip->mode != ClipMode::Region, "can't region clip without region");
279 auto&& region = reinterpret_cast<const ClipRegion*>(clip)->region; local
282 SkRegion::Cliperator it(region, clip->rect.toSkIRect())
    [all...]
  /frameworks/compile/mclinker/lib/LD/
IdenticalCodeFolding.cpp 221 case Fragment::Region: {
222 const RegionFragment& region = llvm::cast<RegionFragment>(*frag); local
223 content.append(region.getRegion().begin(), region.size());
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
NinePatchDrawableTest.java 37 import android.graphics.Region;
299 Region r = mNinePatchDrawable.getTransparentRegion();
  /external/drm_hwcomposer/
drmdisplaycompositor.cpp 62 Region &region = regions_.back(); local
63 region.rect = out_region.rect;
64 region.layer_refs = out_region.id_set.getBits();
149 const Region &region = regions_[i]; local
151 << " history=" << region.change_history << " rect";
152 region.rect.Dump(out);
156 if ((region.layer_refs &
166 if (region.squashed
    [all...]
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/texturepacker/
TexturePacker.java 45 import com.badlogic.gdx.graphics.g2d.TextureAtlas.TextureAtlasData.Region;
294 for (Region region : textureAtlasData.getRegions()) {
295 if (region.name.equals(rectName)) {
296 throw new GdxRuntimeException("A region with the name \"" + rectName + "\" has already been packed: "
418 public int width, height; // Portion of page taken by this region, including padding.

Completed in 1448 milliseconds

1 2 3 4 5 6 7 8 91011>>