HomeSort by relevance Sort by last modified time
    Searched refs:region (Results 1 - 25 of 705) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Lexer/
pragma-region.c 1 /* Test pragma region directive from
6 // #pragma region optional name
11 #pragma region
15 #pragma region long name
22 __pragma(region) // no sense, but ignored
23 _Pragma("region")// ditto
27 #pragma region one
28 #pragma region inner
33 // {{unclosed pragma region}} - region mismatches is not detected ye
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/geofencing/
CircularGeofencingRegion.cpp 17 WebCircularGeofencingRegion region; local
18 DictionaryHelper::get(dictionary, "latitude", region.latitude);
19 DictionaryHelper::get(dictionary, "longitude", region.longitude);
20 DictionaryHelper::get(dictionary, "radius", region.radius);
21 return new CircularGeofencingRegion(id, region);
24 CircularGeofencingRegion* CircularGeofencingRegion::create(const WebString& id, const WebCircularGeofencingRegion& region)
26 return new CircularGeofencingRegion(id, region);
29 CircularGeofencingRegion::CircularGeofencingRegion(const String& id, const WebCircularGeofencingRegion& region)
31 , m_webRegion(region)
CircularGeofencingRegion.h 39 DEFINE_TYPE_CASTS(CircularGeofencingRegion, GeofencingRegion, region, region->isCircularGeofencingRegion(), region.isCircularGeofencingRegion());
  /external/chromium_org/ui/gfx/
scoped_sk_region.h 16 explicit ScopedSkRegion(SkRegion* region) : region_(region) {}
22 void Set(SkRegion* region) {
24 region_ = region;
32 SkRegion* region = region_; local
34 return region;
  /external/chromium_org/third_party/libxslt/libxslt/
xsltlocale.c 84 const char *region = NULL; local
134 region = (char *)xsltDefaultRegion((xmlChar *)localeName);
135 if (region == NULL)
139 *q++ = region[0];
140 *q++ = region[1];
154 const xmlChar *region = NULL; local
178 region = xsltDefaultRegion(localeName);
179 if (region == NULL) goto end;
181 strcpy(localeName + llen + 1, region);
196 /* region should be xmlChar, but gcc warns on all string assignments *
197 const char *region = NULL; local
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/cpp/test/
region_data_test.cc 28 RegionData region(kEmpty);
29 EXPECT_FALSE(region.has_parent());
34 RegionData region(kEmpty);
35 EXPECT_TRUE(region.sub_regions().empty());
40 RegionData region(kEmpty);
41 region.AddSubRegion(kEmpty, kEmpty);
42 ASSERT_EQ(1U, region.sub_regions().size());
43 ASSERT_TRUE(region.sub_regions()[0] != NULL);
44 EXPECT_EQ(&region, &region.sub_regions()[0]->parent())
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
intel_regions.c 112 intel_region_map(struct intel_context *intel, struct intel_region *region,
115 /* We have the region->map_refcount controlling mapping of the BO because
127 if (drm_intel_bo_busy(region->bo)) {
132 _DBG("%s %p\n", __FUNCTION__, region);
133 if (!region->map_refcount) {
136 if (region->tiling != I915_TILING_NONE)
137 drm_intel_gem_bo_map_gtt(region->bo);
139 drm_intel_bo_map(region->bo, true);
141 region->map = region->bo->virtual
173 struct intel_region *region; local
201 struct intel_region *region; local
244 struct intel_region *region, *dummy; local
306 struct intel_region *region = *region_handle; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/intel/
intel_regions.c 112 intel_region_map(struct intel_context *intel, struct intel_region *region,
115 /* We have the region->map_refcount controlling mapping of the BO because
127 if (drm_intel_bo_busy(region->bo)) {
132 _DBG("%s %p\n", __FUNCTION__, region);
133 if (!region->map_refcount) {
136 if (region->tiling != I915_TILING_NONE)
137 drm_intel_gem_bo_map_gtt(region->bo);
139 drm_intel_bo_map(region->bo, true);
141 region->map = region->bo->virtual
173 struct intel_region *region; local
201 struct intel_region *region; local
244 struct intel_region *region, *dummy; local
306 struct intel_region *region = *region_handle; local
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/
WebGeofencingRegistration.h 15 WebCircularGeofencingRegion region; member in struct:blink::WebGeofencingRegistration
  /external/chromium_org/third_party/android_crazy_linker/src/src/
crazy_linker_ashmem_unittest.cpp 14 AshmemRegion region; local
15 EXPECT_EQ(-1, region.fd());
19 AshmemRegion region; local
21 EXPECT_TRUE(region.Allocate(kSize, __FUNCTION__));
26 region.fd(),
31 TEST_TEXT << "Checking region[" << n << "]";
  /external/chromium_org/third_party/tcmalloc/vendor/src/
memory_region_map.cc 188 // Make sure we don't overflow the memory in region stacks:
297 const MemoryRegionMap::Region*
301 Region sample;
303 RegionSet::iterator region = regions_->lower_bound(sample); local
304 if (region != regions_->end()) {
305 RAW_CHECK(addr <= region->end_addr, "");
306 if (region->start_addr <= addr && addr < region->end_addr) {
307 return &(*region);
314 bool MemoryRegionMap::FindRegion(uintptr_t addr, Region* result)
316 const Region* region = DoFindRegionLocked(addr); local
325 const Region* region = DoFindRegionLocked(stack_top); local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/desktop_capture/
screen_capturer_helper_unittest.cc 24 DesktopRegion region(DesktopRect::MakeXYWH(1, 2, 3, 4));
25 capturer_helper_.InvalidateRegion(region);
27 capturer_helper_.TakeInvalidRegion(&region);
28 EXPECT_TRUE(region.is_empty());
32 DesktopRegion region; local
33 capturer_helper_.TakeInvalidRegion(&region);
34 EXPECT_TRUE(region.is_empty());
36 region.SetRect(DesktopRect::MakeXYWH(1, 2, 3, 4));
37 capturer_helper_.InvalidateRegion(region);
38 capturer_helper_.TakeInvalidRegion(&region);
50 DesktopRegion region; local
66 DesktopRegion region; local
158 DesktopRegion region; local
    [all...]
  /external/openfst/src/lib/
mapped-file.cc 30 MappedFile::MappedFile(const MemoryRegion &region) : region_(region) { }
37 LOG(ERROR) << "failed to unmap region: "<< strerror(errno);
46 MemoryRegion region; local
47 region.data = size == 0 ? NULL : operator new(size);
48 region.mmap = NULL;
49 region.size = size;
50 return new MappedFile(region);
54 MemoryRegion region; local
55 region.data = data
75 MemoryRegion region; local
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.cc 196 // Make sure we don't overflow the memory in region stacks:
334 const MemoryRegionMap::Region*
338 Region sample;
340 RegionSet::iterator region = regions_->lower_bound(sample); local
341 if (region != regions_->end()) {
342 RAW_CHECK(addr <= region->end_addr, "");
343 if (region->start_addr <= addr && addr < region->end_addr) {
344 return &(*region);
351 bool MemoryRegionMap::FindRegion(uintptr_t addr, Region* result)
353 const Region* region = DoFindRegionLocked(addr); local
362 const Region* region = DoFindRegionLocked(stack_top); local
    [all...]
  /external/chromium_org/cc/base/
region.cc 5 #include "cc/base/region.h"
13 Region::Region() {
16 Region::Region(const Region& region)
17 : skregion_(region.skregion_) {
20 Region::Region(const gfx::Rect& rect
    [all...]
  /external/chromium_org/cc/test/
test_occlusion_tracker.h 47 void set_occlusion_from_outside_target(const SimpleEnclosedRegion& region) {
49 region;
51 void set_occlusion_from_inside_target(const SimpleEnclosedRegion& region) {
53 region;
57 const SimpleEnclosedRegion& region) {
61 .occlusion_from_outside_target = region;
64 const SimpleEnclosedRegion& region) {
68 .occlusion_from_inside_target = region;
  /external/clang/tools/clang-format/
clang-format-sublime.py 36 for region in self.view.sel():
37 regions.append(region)
38 region_offset = min(region.a, region.b)
39 region_length = abs(region.b - region.a)
44 buf = self.view.substr(sublime.Region(0, self.view.size()))
51 edit, sublime.Region(0, self.view.size()),
54 for region in regions:
55 self.view.sel().add(region)
    [all...]
  /external/chromium_org/courgette/
difference_estimator.cc 30 bool RegionsEqual(const Region& a, const Region& b) {
40 explicit Base(const Region& region) : region_(region) { }
51 const Region& region() const { return region_; } function in class:courgette::DifferenceEstimator::Base
54 Region region_;
63 explicit Subject(const Region& region) : region_(region) {
65 const Region& region() const { return region_; } function in class:courgette::DifferenceEstimator::Subject
    [all...]
  /external/e2fsprogs/e2fsck/
region.c 2 * region.c --- code which manages allocations within a region.
36 region_t region; local
38 region = malloc(sizeof(struct region_struct));
39 if (!region)
41 memset(region, 0, sizeof(struct region_struct));
42 region->min = min;
43 region->max = max;
44 return region;
47 void region_free(region_t region)
    [all...]
  /cts/apps/CameraITS/tests/inprog/
test_crop_region.py 39 print "Capturing img0 with the full sensor region"
42 for i,region in enumerate(regions):
45 "left": int(region[0] * w),
46 "top": int(region[1] * h),
47 "right": int((region[0]+region[2])*w),
48 "bottom": int((region[1]+region[3])*h)}
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen7_misc_state.c 71 intel_region_get_tile_masks(depth_mt->region,
76 intel_region_get_tile_masks(hiz_mt->region,
156 struct intel_region *region = depth_mt->region; local
182 offset = intel_region_get_aligned_offset(region,
187 assert(region->tiling == I915_TILING_Y);
192 OUT_BATCH(((region->pitch * region->cpp) - 1) |
198 OUT_RELOC(region->bo,
217 intel_region_get_aligned_offset(hiz_mt->region,
    [all...]
  /external/chromium_org/tools/deep_memory_profiler/subcommands/
expand.py 111 for _, region in dump.iter_map:
112 if region[0] != 'hooked':
114 component_match, bucket = policy.find_mmap(region, bucket_set)
117 region[1]['committed'], sizes)
119 for addr, region in dump.iter_map:
120 if region[0] != 'unhooked':
122 component_match = policy.find_unhooked(region)
127 precedence += ' %s' % region[1]['vma']['readable']
128 precedence += '%s' % region[1]['vma']['writable']
129 precedence += '%s' % region[1]['vma']['executable'
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen7_misc_state.c 71 intel_region_get_tile_masks(depth_mt->region,
76 intel_region_get_tile_masks(hiz_mt->region,
156 struct intel_region *region = depth_mt->region; local
182 offset = intel_region_get_aligned_offset(region,
187 assert(region->tiling == I915_TILING_Y);
192 OUT_BATCH(((region->pitch * region->cpp) - 1) |
198 OUT_RELOC(region->bo,
217 intel_region_get_aligned_offset(hiz_mt->region,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTRegionList.cpp 61 void VTTRegionList::add(PassRefPtrWillBeRawPtr<VTTRegion> region)
63 m_list.append(region);
66 bool VTTRegionList::remove(VTTRegion* region)
68 size_t index = m_list.find(region);
  /external/chromium_org/third_party/skia/include/effects/
SkAlphaThresholdFilter.h 17 * Creates an image filter that samples a region. If the sample is inside the
18 * region the alpha of the image is boosted up to a threshold value. If it is
19 * outside the region then the alpha is decreased to the threshold value.
20 * The 0,0 point of the region corresponds to the upper left corner of the
23 static SkImageFilter* Create(const SkRegion& region, SkScalar innerThreshold,

Completed in 758 milliseconds

1 2 3 4 5 6 7 8 91011>>