HomeSort by relevance Sort by last modified time
    Searched refs:region (Results 401 - 425 of 1206) sorted by null

<<11121314151617181920>>

  /packages/apps/Mms/src/com/android/mms/model/
MediaModelFactory.java 95 RegionModel region = layouts.findRegionById(sre.getId()); local
96 if (region != null) {
97 return getGenericMediaModel(context, tag, src, srme, part, region);
108 RegionModel region = layouts.findRegionById(rId); local
109 if (region != null) {
110 return getGenericMediaModel(context, tag, src, srme, part, region);
114 throw new IllegalArgumentException("Region not found or bad region ID.");
  /external/opencv/cv/src/
cvfloodfill.cpp 96 uchar* _newVal, CvConnectedComp* region, int flags,
154 if( region )
209 if( region )
211 region->area = area;
212 region->rect.x = XMin;
213 region->rect.y = YMin;
214 region->rect.width = XMax - XMin + 1;
215 region->rect.height = YMax - YMin + 1;
216 region->value = cvScalar(newVal[0], newVal[1], newVal[2], 0);
228 int* _newVal, CvConnectedComp* region, int flags
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 170 IndexedRegion region = (IndexedRegion) element; local
171 start = Math.min(start, region.getStartOffset());
172 end = Math.max(end, region.getEndOffset());
207 IndexedRegion region = (IndexedRegion) xmlNode; local
209 start = Math.min(start, region.getStartOffset());
210 end = Math.max(end, region.getEndOffset());
369 IStructuredDocumentRegion region = doc.getFirstStructuredDocumentRegion(); local
370 for (; region != null; region = region.getNext())
682 IndexedRegion region = getRegion(element); local
913 IndexedRegion region = getRegion(element); local
1002 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(offset); local
1057 IndexedRegion region = getRegion(attribute); local
1093 IStructuredDocumentRegion region = doc.getRegionAtCharacterOffset(start); local
1226 IndexedRegion region = getRegion(e); local
    [all...]
  /external/chromium_org/third_party/mesa/src/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...]
gen7_blorp.cpp 152 struct intel_region *region = surface->mt->region; local
172 surf->ss1.base_addr += region->bo->offset;
186 ? I915_TILING_Y : region->tiling;
189 uint32_t pitch_bytes = region->pitch * region->cpp;
211 region->bo,
212 surf->ss1.base_addr - region->bo->offset,
592 intel_region_get_aligned_offset(params->depth.mt->region,
619 params->depth.mt->region->pitch * params->depth.mt->region->cpp
    [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...]
gen7_blorp.cpp 152 struct intel_region *region = surface->mt->region; local
172 surf->ss1.base_addr += region->bo->offset;
186 ? I915_TILING_Y : region->tiling;
189 uint32_t pitch_bytes = region->pitch * region->cpp;
211 region->bo,
212 surf->ss1.base_addr - region->bo->offset,
592 intel_region_get_aligned_offset(params->depth.mt->region,
619 params->depth.mt->region->pitch * params->depth.mt->region->cpp
    [all...]
  /external/chromium_org/remoting/client/
software_video_renderer.cc 51 const webrtc::DesktopRegion& region) OVERRIDE {
52 return parent_->Invalidate(view_size, region);
90 void InvalidateRegion(const webrtc::DesktopRegion& region);
102 // Paints the invalidated region to the next available buffer and returns it
239 // Draw the invalidated region to the buffer.
276 const webrtc::DesktopRegion& region) {
280 decoder_->Invalidate(view_size_, region);
292 webrtc::DesktopRegion region; local
293 region.AddRect(webrtc::DesktopRect::MakeSize(view_size));
294 decoder_->Invalidate(view_size, region);
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
screen_capturer_mac.mm 166 // Create an image of the given region using the given |window_list|.
201 virtual void Capture(const DesktopRegion& region) OVERRIDE;
212 const DesktopRegion& region);
215 const DesktopRegion& region);
218 const DesktopRegion& region);
270 // Contains an invalid region from the previous capture.
416 DesktopRegion region;
417 helper_.TakeInvalidRegion(&region);
431 if (!CgBlitPostLion(*current_frame, region)) {
439 GlBlitFast(*current_frame, region);
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libwebp.cpp 265 const SkIRect& region, bool premultiply) {
267 if (!webp_get_config_resize(config, decodedBitmap, region.width(),
268 region.height(), premultiply)) {
273 config->options.crop_left = region.fLeft;
274 config->options.crop_top = region.fTop;
275 config->options.crop_width = region.width();
276 config->options.crop_height = region.height();
341 const SkIRect& region) {
344 if (!rect.intersect(region)) {
345 // If the requested region is entirely outsides the image, return fals
    [all...]
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 276 const SkIRect& region, bool premultiply) {
278 if (!webp_get_config_resize(config, decodedBitmap, region.width(),
279 region.height(), premultiply)) {
284 config->options.crop_left = region.fLeft;
285 config->options.crop_top = region.fTop;
286 config->options.crop_width = region.width();
287 config->options.crop_height = region.height();
352 const SkIRect& region) {
355 if (!rect.intersect(region)) {
356 // If the requested region is entirely outsides the image, return fals
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ArrayReference/
GetValuesTest.java 204 ArrayRegion region = reply.getNextValueAsArrayRegion(); local
205 //System.err.println("length="+region.length);
206 byte arrayTag = region.getTag();
209 logWriter.println("==> arrayLength = "+region.getLength());
210 Value value_0 = region.getValue(0);
220 length, region.getLength());
227 for (int i = 0; i < region.getLength(); i++) {
228 Value value = region.getValue(i);
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SValBuilder.h 163 /// Make a unique symbol for value of region.
164 DefinedOrUnknownSVal getRegionValueSymbolVal(const TypedValueRegion *region);
186 /// \brief Conjure a symbol representing heap allocated memory region.
194 SymbolRef parentSymbol, const TypedValueRegion *region);
197 const void *symbolTag, const MemRegion *region,
217 const TypedValueRegion *region) {
219 BasicVals.getLazyCompoundValData(store, region));
304 Loc makeLoc(const MemRegion* region) {
305 return loc::MemRegionVal(region);
316 /// Return a memory region for the 'this' object reference
    [all...]
Store.h 45 /// MRMgr - Manages region objects associated with this StoreManager.
105 // region extents directly.
107 const MemRegion *region,
131 /// - We don't know (base is a symbolic region and we don't have
140 /// a MemRegion* to a specific location type. 'R' is the region being
142 const MemRegion *castRegion(const MemRegion *region, QualType CastToTy);
148 const MemRegion *region) const = 0;
176 /// region/symbol.
200 /// Finds the transitive closure of symbols within the given region.
213 const MemRegion *region, SVal val) = 0
    [all...]
  /frameworks/base/libs/hwui/
DisplayListRenderer.h 96 virtual bool clipRegion(const SkRegion* region, SkRegion::Op op);
255 inline const SkRegion* refRegion(const SkRegion* region) {
256 if (!region) {
257 return region;
260 const SkRegion* regionCopy = mRegionMap.valueFor(region);
263 regionCopy = new SkRegion(*region);
265 mRegionMap.replaceValueFor(region, regionCopy);
StatefulBaseRenderer.cpp 184 SkRegion region; local
185 region.setPath(transformed, clip);
187 // region is the transformed input path, masked by the previous clip
188 mDirtyClip |= mSnapshot->clipRegionTransformed(region, op);
192 bool StatefulBaseRenderer::clipRegion(const SkRegion* region, SkRegion::Op op) {
193 mDirtyClip |= mSnapshot->clipRegionTransformed(*region, op);
  /external/deqp/modules/gles2/functional/
es2fVertexTextureTests.cpp 331 static void setPixelColors (const vector<Vec4>& quadColors, const Rect& region, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst)
340 const int ix0 = deCeilFloatToInt32(ldru.x() * (float)region.w - 0.5f);
341 const int ix1 = deCeilFloatToInt32(ldru.z() * (float)region.w - 0.5f);
342 const int iy0 = deCeilFloatToInt32(ldru.y() * (float)region.h - 0.5f);
343 const int iy1 = deCeilFloatToInt32(ldru.w() * (float)region.h - 0.5f);
348 DE_ASSERT(deInBounds32(ix + region.x, 0, dst.getWidth()));
349 DE_ASSERT(deInBounds32(iy + region.y, 0, dst.getHeight()));
351 dst.setPixel(ix + region.x, iy + region.y, toRGBA(color));
586 const Rect region; member in struct:deqp::gles2::Functional::Render
918 const Rect region; member in struct:deqp::gles2::Functional::Render
    [all...]
  /device/moto/shamu/camera/QCamera/HAL/usbcamcore/src/
QCameraMjpegDecode.cpp 88 jpeg_rectangle_t region; member in struct:__anon3883
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/stressapptest/src/
os.cc 260 logprintf(0, "Log: region number %d exceeds region count %d\n",
269 // Report which cores are associated with a given region.
270 cpu_set_t *OsLayer::FindCoreMask(int32 region) {
271 sat_assert(region >= 0);
272 region %= num_nodes_;
273 if (!cpu_sets_valid_[region]) {
274 CPU_ZERO(&cpu_sets_[region]);
276 CPU_SET(i + region * num_cpus_per_node_, &cpu_sets_[region]);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
low_level_alloc.cc 68 intptr_t size; // size of entire region, including this field. Must be
235 ~ArenaLock() { RAW_CHECK(this->left_, "haven't left Arena region"); }
246 bool left_; // whether left region
322 AllocList *region = arena->freelist.next[0]; local
323 size_t size = region->header.size;
324 arena->freelist.next[0] = region->next[0];
325 RAW_CHECK(region->header.magic ==
326 Magic(kMagicUnallocated, &region->header),
328 RAW_CHECK(region->header.arena == arena,
332 RAW_CHECK(reinterpret_cast<intptr_t>(region) % arena->pagesize == 0
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
low_level_alloc.cc 68 intptr_t size; // size of entire region, including this field. Must be
235 ~ArenaLock() { RAW_CHECK(this->left_, "haven't left Arena region"); }
246 bool left_; // whether left region
322 AllocList *region = arena->freelist.next[0]; local
323 size_t size = region->header.size;
324 arena->freelist.next[0] = region->next[0];
325 RAW_CHECK(region->header.magic ==
326 Magic(kMagicUnallocated, &region->header),
328 RAW_CHECK(region->header.arena == arena,
332 RAW_CHECK(reinterpret_cast<intptr_t>(region) % arena->pagesize == 0
    [all...]
  /external/chromium_org/skia/ext/
platform_device_win.cc 206 const SkRegion& region,
209 if (region.isEmpty()) {
210 // region can be empty, in which case everything will be clipped.
212 } else if (region.isRect()) {
214 // to the region.
215 hrgn = CreateRectRgnIndirect(&SkIRectToRECT(region.getBounds()));
219 region.getBoundaryPath(&path);
  /external/chromium_org/third_party/libaddressinput/src/cpp/src/
region_data_builder.cc 75 RegionData* region = parent_region->AddSubRegion(*key_it, name); local
82 region,
107 RegionData* region = new RegionData(region_code); local
109 // If there're sub-keys for field X, but field X is not used in this region
118 region,
124 return region;
154 // Look up the region tree in cache first before building it.
  /external/clang/lib/StaticAnalyzer/Core/
BasicValueFactory.cpp 31 const TypedValueRegion *region) {
33 ID.AddPointer(region);
128 const TypedValueRegion *region) {
130 LazyCompoundValData::Profile(ID, store, region);
138 new (D) LazyCompoundValData(store, region);
  /external/llvm/lib/Analysis/
RegionInfo.cpp 1 //===- RegionInfo.cpp - SESE region detection analysis --------------------===//
26 #define DEBUG_TYPE "region"
36 VerifyRegionInfoX("verify-region-info", cl::location(VerifyRegionInfo),
37 cl::desc("Verify region info (time consuming)"));
42 static cl::opt<enum Region::PrintStyle> printStyle("print-region-style",
46 clEnumValN(Region::PrintNone, "none", "print no details"),
47 clEnumValN(Region::PrintBB, "bb",
49 clEnumValN(Region::PrintRN, "rn",
53 /// Region Implementatio
    [all...]

Completed in 910 milliseconds

<<11121314151617181920>>