HomeSort by relevance Sort by last modified time
    Searched defs:region (Results 151 - 175 of 681) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
TextureAtlas.java 29 import com.badlogic.gdx.graphics.g2d.TextureAtlas.TextureAtlasData.Region;
81 public static class Region {
100 final Array<Region> regions = new Array();
151 Region region = new Region(); local
152 region.page = pageImage;
153 region.left = left;
154 region.top = top;
155 region.width = width;
278 AtlasRegion region = new AtlasRegion(texture, x, y, width, height); local
312 AtlasRegion region = regions.get(i); local
325 AtlasRegion region = regions.get(i); local
357 AtlasRegion region = regions.get(i); local
372 AtlasRegion region = regions.get(i); local
397 AtlasRegion region = regions.get(i); local
546 final AtlasRegion region; field in class:TextureAtlas.AtlasSprite
    [all...]
  /frameworks/base/core/java/android/view/animation/
Animation.java 1053 final RectF region = mPreviousRegion; local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
NinePatchTest.java 31 import android.graphics.Region;
166 Region region = mNinePatch.getTransparentRegion(location); local
167 assertNull(region);
176 region = mNinePatch.getTransparentRegion(location);
177 assertNotNull(region);
178 Rect regionBounds = region.getBounds();
182 region = mNinePatch.getTransparentRegion(location);
183 assertNotNull(region);
184 regionBounds = region.getBounds()
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/usbcamcore/src/
QCameraMjpegDecode.cpp 88 jpeg_rectangle_t region; member in struct:__anon5507
348 dest.region = p_args->region;
350 // if region is defined, re-assign the output width/height
354 if (p_args->region.right || p_args->region.bottom)
359 (uint32_t)(dest.region.right - dest.region.left + 1));
361 (uint32_t)(dest.region.bottom - dest.region.top + 1))
    [all...]
  /external/ImageMagick/MagickCore/
cache-private.h 110 region; member in struct:_NexusInfo
distribute-cache.c 553 region;
570 length=sizeof(region.width)+sizeof(region.height)+sizeof(region.x)+
571 sizeof(region.y)+sizeof(length);
576 (void) memcpy(&region.width,q,sizeof(region.width));
577 q+=sizeof(region.width);
578 (void) memcpy(&region.height,q,sizeof(region.height))
548 region; local
605 region; local
667 region; local
725 region; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
LocaleData.java 282 String region = fullLoc.getCountry(); local
291 measDataBundle = measurementData.get(region);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
LocaleData.java 299 String region = fullLoc.getCountry(); local
308 measDataBundle = measurementData.get(region);
  /external/libchrome/base/debug/
stack_trace_posix.cc 552 const MappedMemoryRegion& region = *it; local
553 if (region.start <= pc && pc < region.end) {
554 start_address = region.start;
566 base_address = (is_first ? 0U : start_address) - region.offset;
568 strncpy(file_path, region.path.c_str(), file_path_size);
572 return instance->GetFileDescriptor(region.path.c_str());
609 const MappedMemoryRegion& region = *it; local
611 if ((region.permissions & MappedMemoryRegion::READ) ==
613 (region.permissions & MappedMemoryRegion::WRITE) == 0 &
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
Skin.java 106 AtlasRegion region = regions.get(i); local
107 String name = region.name;
108 if (region.index != -1) {
109 name += "_" + region.index;
111 add(name, region, TextureRegion.class);
189 /** Returns a registered texture region. If no region is found but a texture exists with the name, a region is created from the
192 TextureRegion region = optional(name, TextureRegion.class); local
193 if (region != null) return region;
206 TextureRegion region = optional(regionName + "_" + (i++), TextureRegion.class); local
237 TextureRegion region = getRegion(name); local
264 AtlasRegion region = (AtlasRegion)textureRegion; local
286 AtlasRegion region = (AtlasRegion)textureRegion; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_blorp.cpp 60 intel_region_get_tile_masks(params->depth.mt->region,
62 intel_region_get_tile_masks(params->depth.mt->hiz_mt->region,
426 struct intel_region *region = surface->mt->region; local
440 region->bo->offset);
448 : brw_get_surface_tiling_bits(region->tiling);
449 uint32_t pitch_bytes = region->pitch * region->cpp;
471 region->bo,
472 surf[1] - region->bo->offset
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_fbo.c 68 return irb->mt->stencil_mt->region;
70 return irb->mt->region;
315 image->region);
320 rb->Width = image->region->width;
321 rb->Height = image->region->height;
555 /* compute offset of the particular 2D image within the texture region */
581 struct intel_region *region = irb->mt->region; local
584 intel_region_get_tile_masks(region, &mask_x, &mask_y, false);
588 return intel_region_get_aligned_offset(region, irb->draw_x & ~mask_x
    [all...]
  /external/opencv/cvaux/src/
cvsegment.cpp 88 CvConnectedComp * region,
182 region->area = area;
183 region->rect.x = XMin;
184 region->rect.y = YMin;
185 region->rect.width = XMax - XMin + 1;
186 region->rect.height = YMax - YMin + 1;
187 region->value = cvScalarAll(0);
532 CvConnectedComp region; local
539 &region, stack );
554 region.rect, storage )
    [all...]
  /external/skia/src/core/
SkPicturePlayback.cpp 134 SkRegion region; local
135 reader->readRegion(&region);
140 canvas->clipRegion(region, regionOp);
  /external/v8/test/cctest/
types-fuzz.h 38 template<class Type, class TypeHandle, class Region>
41 Types(Region* region, Isolate* isolate, v8::base::RandomNumberGenerator* rng)
42 : region_(region), isolate_(isolate), rng_(rng) {
44 name = Type::name(region); \
49 SignedSmall = Type::SignedSmall(region);
50 UnsignedSmall = Type::UnsignedSmall(region);
59 ObjectClass = Type::Class(object_map, region);
60 ArrayClass = Type::Class(array_map, region);
61 NumberClass = Type::Class(number_map, region);
334 Region* region() { return region_; } function in class:v8::internal::Types
    [all...]
  /frameworks/base/core/java/android/text/
SpannableStringInternal.java 414 private static String region(int start, int end) { method in class:SpannableStringInternal
421 region(start, end) +
429 region(start, end) +
435 region(start, end) +
  /frameworks/compile/mclinker/include/mcld/Script/
OutputSectDesc.h 109 const std::string& region() const { function in struct:mcld::OutputSectDesc::Epilog
  /hardware/qcom/camera/usbcamcore/src/
QCameraMjpegDecode.cpp 88 jpeg_rectangle_t region; member in struct:__anon33195
348 dest.region = p_args->region;
350 // if region is defined, re-assign the output width/height
354 if (p_args->region.right || p_args->region.bottom)
359 (uint32_t)(dest.region.right - dest.region.left + 1));
361 (uint32_t)(dest.region.bottom - dest.region.top + 1))
    [all...]
  /hardware/qcom/display/msm8960/libhwcomposer/
hwc_copybit.cpp 37 region_iterator(hwc_region_t region) {
38 mRegion = region;
39 r.end = region.numRects;
253 //Clear the visible region on the render buffer
437 //create one clip region
458 // Copybit region
459 hwc_region_t region = layer->visibleRegionScreen; local
460 region_iterator copybitRegion(region);
  /hardware/qcom/display/msm8996/sdm/libs/hwc/
blit_engine_c2d.cpp 516 // Copybit region is the destRect
523 LayerRectArray region; local
524 region.count = 1;
525 region.rect = &region_rect;
526 RegionIterator copybitRegion(region);
  /libcore/ojluni/src/main/java/java/util/regex/
Matcher.java 57 * <i>region</i>. By default, the region contains all of the matcher's input.
58 * The region can be modified via the{@link #region region} method and queried
60 * methods. The way that the region boundaries interact with some pattern
132 * Holds the start of the region, or 0 if the matching should start at the
138 * Holds the end of the region, or input.length() if the matching should
160 * Reflects whether the bounds of the region are anchoring.
165 * Reflects whether the bounds of the region are transparent
772 public Matcher region(int start, int end) { method in class:Matcher
    [all...]
  /packages/apps/Camera2/src/com/android/camera/ui/
ZoomView.java 97 // to find out the partial region in the full res image that we need
104 // Now the visible region we have is rotated, we need to reverse the
105 // rotation to find out the region in the original image
111 // Decode region
112 Rect region = new Rect(); local
113 visibleInImage.round(region);
115 // Make sure region to decode is inside the image.
116 region.intersect(0, 0, imageSize.x - 1, imageSize.y - 1);
118 if (region.width() == 0 || region.height() == 0)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
SourceRevealer.java 143 IRegion region = AdtUtils.getRegionOfLine(file, lineNumber - 1); local
150 || region != null
151 && region.getOffset() >= sourceRange.getOffset()
152 && region.getOffset() < sourceRange.getOffset()
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 31 import org.eclipse.jface.text.Region;
539 IRegion region = findRange((IFile) f2, line, message); local
540 if (region != null) {
541 startOffset = region.getOffset();
542 endOffset = startOffset + region.getLength();
649 IRegion region = findRange(file, line, '<' + elementName, null); local
650 if (region != null && region.getLength() > 1) {
652 region = new Region(region.getOffset() + 1, region.getLength() - 1)
671 IRegion region = null; local
    [all...]
AaptQuickFix.java 40 import org.eclipse.jface.text.Region;
320 IRegion region = local
321 new Region(indexedRegion.getStartOffset(), indexedRegion.getLength());
322 AdtPlugin.openFile(mFile, region);
372 IRegion region = location.getSecond(); local
374 AdtPlugin.openFile(file, region);

Completed in 1107 milliseconds

1 2 3 4 5 67 8 91011>>