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

1 2 34 5 6 7 8 91011>>

  /frameworks/compile/mclinker/lib/LD/
ELFObjectReader.cpp 71 llvm::StringRef region =
74 const char* ELF_hdr = region.begin();
100 llvm::StringRef region =
102 const char* ELF_hdr = region.begin();
137 llvm::StringRef region = pInput.memArea()->request( local
140 reinterpret_cast<const llvm::ELF::Elf32_Word*>(region.begin());
142 size_t size = region.size() / sizeof(llvm::ELF::Elf32_Word);
314 llvm::StringRef region = mem->request(offset, size); local
319 if (!m_pELFReader->readRela(pInput, **rs, region)) {
325 if (!m_pELFReader->readRel(pInput, **rs, region)) {
    [all...]
  /frameworks/compile/mclinker/lib/Target/
ELFAttribute.cpp 43 // Obtain the region containing the attribute data. Expect exactly one
56 llvm::StringRef region = region_frag.getRegion(); local
64 const char* attribute_data = region.begin();
77 const char* subsection_data = region.begin() + subsection_offset;
110 reinterpret_cast<ConstAddress>(region.begin()) + vendor_data_offset;
  /hardware/intel/common/libva/va/x11/
dri2_util.c 93 XserverRegion region; local
106 region = XFixesCreateRegion(ctx->native_dpy, &xrect, 1);
107 VA_DRI2CopyRegion(ctx->native_dpy, dri_drawable->x_drawable, region,
109 XFixesDestroyRegion(ctx->native_dpy, region);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FaceClustering.java 58 Rect region = face.getPosition(); local
59 if (mCoverRegion.width() < region.width() &&
60 mCoverRegion.height() < region.height()) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
PostalSplitter.java 37 public String region; field in class:PostalSplitter.Postal
46 region = values.getAsString(StructuredPostal.REGION);
56 values.put(StructuredPostal.REGION, region);
87 postal.region, postal.postcode, postal.country
104 final boolean hasRegion = !TextUtils.isEmpty(postal.region);
109 // Second block: [region][ ][city][ ][neighborhood]
133 builder.append(postal.region);
170 final boolean hasRegion = !TextUtils.isEmpty(postal.region);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
SetPropertyFix.java 28 import org.eclipse.jface.text.Region;
42 private Region mSelect;
94 IndexedRegion region = (IndexedRegion) attr; local
95 int offset = region.getStartOffset();
100 mSelect = new Region(offset, proposal.length());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringUtil.java 130 IndexedRegion region = (IndexedRegion) attr; local
134 text = document.get(region.getStartOffset(),
135 region.getEndOffset() - region.getStartOffset());
142 return region.getStartOffset() + index;
158 IndexedRegion region = (IndexedRegion) element; local
162 text = document.get(region.getStartOffset(),
163 region.getEndOffset() - region.getStartOffset());
169 return region.getStartOffset() + index
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadataTest.java 68 IndexedRegion region = (IndexedRegion) node; local
70 //int length = region.getLength();
71 int length = region.getEndOffset() - region.getStartOffset();
72 return document.get(region.getStartOffset(), length);
  /system/extras/ext4_utils/
allocate.h 24 struct region { struct
28 struct region *next;
29 struct region *prev;
33 struct region *first;
34 struct region *last;
35 struct region *iter;
62 struct region *chunks;
96 void region_list_append(struct region_list *list, struct region *reg);
  /toolchain/binutils/binutils-2.25/gas/
frags.h 72 unsigned int region:16; member in struct:frag
  /cts/tests/tests/view/src/android/view/cts/
SurfaceViewTest.java 24 import android.graphics.Region;
90 Region region = new Region(); local
91 region.set(left, top, right, bottom);
92 assertTrue(mMockSurfaceView.gatherTransparentRegion(region));
95 assertFalse(mMockSurfaceView.gatherTransparentRegion(region));
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 338 final RectF region = mPreviousRegion; local
339 region.set(left, top, right, bottom);
340 region.inset(-1.0f, -1.0f);
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
HyperlinksTest.java 30 import org.eclipse.jface.text.Region;
215 IHyperlink[] links = resolver.detectHyperlinks(viewer, new Region(offset, 0), true);
224 IRegion region = link.getHyperlinkRegion(); local
225 sb.append(viewer.getDocument().get(region.getOffset(), region.getLength()));
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
Sprite.java 49 /** Creates an uninitialized sprite. The sprite will need a texture region and bounds set before it can be drawn. */
54 /** Creates a sprite with width, height, and texture region equal to the size of the texture. */
59 /** Creates a sprite with width, height, and texture region equal to the specified size. The texture region's upper left corner
61 * @param srcWidth The width of the texture region. May be negative to flip the sprite when drawn.
62 * @param srcHeight The height of the texture region. May be negative to flip the sprite when drawn. */
67 /** Creates a sprite with width, height, and texture region equal to the specified size.
68 * @param srcWidth The width of the texture region. May be negative to flip the sprite when drawn.
69 * @param srcHeight The height of the texture region. May be negative to flip the sprite when drawn. */
79 // Note the region is copied.
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/maps/tiled/renderers/
OrthoCachedTiledMapRenderer.java 245 final TextureRegion region = tile.getTextureRegion(); local
246 final Texture texture = region.getTexture();
250 final float x2 = x1 + region.getRegionWidth() * unitScale;
251 final float y2 = y1 + region.getRegionHeight() * unitScale;
255 final float u1 = region.getU() + adjustX;
256 final float v1 = region.getV2() - adjustY;
257 final float u2 = region.getU2() - adjustX;
258 final float v2 = region.getV() + adjustY;
357 TextureRegion region = layer.getTextureRegion(); local
359 if (region == null)
    [all...]
  /device/google/dragon/recovery/updater/
flash_ec.c 91 struct ec_params_flash_region_info region; local
117 region.region = EC_FLASH_REGION_RO;
119 &region, sizeof(region),
254 * from the end of the RO region.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/swf/
layer2.py 26 region = None variable in class:SWFBase
39 region=self.region)
82 'region': self.region,
100 'region': self.region,
133 'region': self.region,
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.cpp 350 vk::VkBufferImageCopy region = local
358 m_vk.cmdCopyImageToBuffer(*copyCmdBuffer, object(), layout, stagingResource->object(), 1, &region);
460 vk::VkImageCopy region = { {aspect, mipLevel, arrayElement, 1}, offset, {aspect, 0, 0, 1}, zeroOffset, {(deUint32)width, (deUint32)height, (deUint32)depth} }; local
462 m_vk.cmdCopyImage(*copyCmdBuffer, object(), layout, stagingResource->object(), vk::VK_IMAGE_LAYOUT_GENERAL, 1, &region);
638 vk::VkImageCopy region = {{aspect, 0, 0, 1}, local
645 vk::VK_IMAGE_LAYOUT_GENERAL, object(), layout, 1, &region);
757 vk::VkBufferImageCopy region = { local
765 object(), layout, 1, &region);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateImageObjectUtil.cpp 350 vk::VkBufferImageCopy region = local
358 m_vk.cmdCopyImageToBuffer(*copyCmdBuffer, object(), layout, stagingResource->object(), 1, &region);
460 vk::VkImageCopy region = { {aspect, mipLevel, arrayElement, 1}, offset, {aspect, 0, 0, 1}, zeroOffset, {(deUint32)width, (deUint32)height, (deUint32)depth} }; local
462 m_vk.cmdCopyImage(*copyCmdBuffer, object(), layout, stagingResource->object(), vk::VK_IMAGE_LAYOUT_GENERAL, 1, &region);
638 vk::VkImageCopy region = {{aspect, 0, 0, 1}, local
645 vk::VK_IMAGE_LAYOUT_GENERAL, object(), layout, 1, &region);
757 vk::VkBufferImageCopy region = { local
765 object(), layout, 1, &region);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/query_pool/
vktQueryPoolImageObjectUtil.cpp 327 const vk::VkBufferImageCopy region = local
335 m_vk.cmdCopyImageToBuffer(*copyCmdBuffer, object(), layout, stagingResource->object(), 1, &region);
437 vk::VkImageCopy region = { {aspect, mipLevel, arrayElement, 1}, offset, {aspect, 0, 0, 1}, zeroOffset, {(deUint32)width, (deUint32)height, (deUint32)depth} }; local
439 m_vk.cmdCopyImage(*copyCmdBuffer, object(), layout, stagingResource->object(), vk::VK_IMAGE_LAYOUT_GENERAL, 1, &region);
615 vk::VkImageCopy region = {{aspect, 0, 0, 1}, local
622 vk::VK_IMAGE_LAYOUT_GENERAL, object(), layout, 1, &region);
734 vk::VkBufferImageCopy region = local
743 object(), layout, 1, &region);
    [all...]
  /external/drm_hwcomposer/
drmdisplaycomposition.cpp 197 for (separate_rects::RectSet<uint64_t, int> &region : separate_regions) {
198 if (region.id_set.getBits() & exclude_mask)
202 // layers from the composition region which appear *below* the dedicated
206 uint64_t dedicated_intersect = region.id_set.getBits() & dedicated_mask;
215 region.id_set.subtract(j + layer_offset);
218 if (!(region.id_set.getBits() >> layer_offset))
222 region.rect,
223 SetBitsToVector(region.id_set.getBits() >> layer_offset, comp_layers)});
232 for (const DrmCompositionRegion &region : squash_regions_) {
233 for (size_t source_layer_index : region.source_layers)
327 const SquashState::Region &region = squash->regions()[region_index]; local
    [all...]
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/google-breakpad/src/client/linux/minidump_writer/
minidump_writer_unittest.cc 433 // Test that an additional memory region can be added to the minidump.
477 // Add the memory region to the list of memory to be included.
485 // Read the minidump. Ensure that the memory region is present
491 const MinidumpMemoryRegion* region = local
493 ASSERT_TRUE(region);
495 EXPECT_EQ(kMemoryAddress, region->GetBase());
496 EXPECT_EQ(kMemorySize, region->GetSize());
499 EXPECT_EQ(0, memcmp(region->GetMemory(), memory, kMemorySize));
554 // Read the minidump. Ensure that the memory region is present
563 // region problem"
    [all...]
  /external/google-breakpad/src/client/mac/tests/
exception_handler_test.cc 162 MinidumpMemoryRegion* region = local
164 EXPECT_TRUE(region);
368 // memory list, and then ensure that there is a memory region
386 MinidumpMemoryRegion* region = local
388 EXPECT_TRUE(region);
390 EXPECT_EQ(kMemorySize, region->GetSize());
391 const uint8_t* bytes = region->GetMemory();
404 // Test that the memory region around the instruction pointer is
467 // memory list, and then ensure that there is a memory region
485 MinidumpMemoryRegion* region local
584 MinidumpMemoryRegion* region = local
    [all...]
  /external/google-breakpad/src/client/windows/unittests/
exception_handler_death_test.cc 359 // memory list, and then ensure that there is a memory region
378 MinidumpMemoryRegion* region = local
380 ASSERT_TRUE(region);
382 EXPECT_EQ(kMemorySize, region->GetSize());
383 const uint8_t* bytes = region->GetMemory();
454 // memory list, and then ensure that there is a memory region
473 MinidumpMemoryRegion* region = local
475 ASSERT_TRUE(region);
477 EXPECT_EQ(kMemorySize / 2, region->GetSize());
478 const uint8_t* bytes = region->GetMemory()
561 MinidumpMemoryRegion* region = local
    [all...]

Completed in 1363 milliseconds

1 2 34 5 6 7 8 91011>>