Home
last modified time | relevance | path

Searched refs:region (Results 1 – 25 of 475) sorted by relevance

12345678910>>...19

/external/libxslt/libxslt/
Dxsltlocale.c84 const char *region = NULL; in xsltNewLocale() local
134 region = (char *)xsltDefaultRegion((xmlChar *)localeName); in xsltNewLocale()
135 if (region == NULL) in xsltNewLocale()
139 *q++ = region[0]; in xsltNewLocale()
140 *q++ = region[1]; in xsltNewLocale()
154 const xmlChar *region = NULL; in xsltNewLocale() local
178 region = xsltDefaultRegion(localeName); in xsltNewLocale()
179 if (region == NULL) goto end; in xsltNewLocale()
181 strcpy(localeName + llen + 1, region); in xsltNewLocale()
197 const char *region = NULL; in xsltDefaultRegion() local
[all …]
/external/openfst/src/lib/
Dmapped-file.cc30 MappedFile::MappedFile(const MemoryRegion &region) : region_(region) { } in MappedFile() argument
46 MemoryRegion region; in Allocate() local
47 region.data = size == 0 ? NULL : operator new(size); in Allocate()
48 region.mmap = NULL; in Allocate()
49 region.size = size; in Allocate()
50 return new MappedFile(region); in Allocate()
54 MemoryRegion region; in Borrow() local
55 region.data = data; in Borrow()
56 region.mmap = data; in Borrow()
57 region.size = 0; in Borrow()
[all …]
/external/e2fsprogs/e2fsck/
Dregion.c36 region_t region; in region_create() local
38 region = malloc(sizeof(struct region_struct)); in region_create()
39 if (!region) in region_create()
41 memset(region, 0, sizeof(struct region_struct)); in region_create()
42 region->min = min; in region_create()
43 region->max = max; in region_create()
44 return region; in region_create()
47 void region_free(region_t region) in region_free() argument
51 for (r = region->allocated; r; r = next) { in region_free()
55 memset(region, 0, sizeof(struct region_struct)); in region_free()
[all …]
/external/webkit/Source/WebKit/android/nav/
DDrawExtra.cpp61 SkRegion* region = m_highlightRegions.get(layerId); in addHighlightRegion() local
62 if (!region) { in addHighlightRegion()
63 region = new SkRegion(); in addHighlightRegion()
64 m_highlightRegions.set(layerId, region); in addHighlightRegion()
76 region->op(r.x(), r.y(), r.maxX(), r.maxY(), SkRegion::kUnion_Op); in addHighlightRegion()
82 SkRegion* region = getHighlightRegionsForLayer(layer); in draw() local
83 if (!region || region->isEmpty()) in draw()
85 SkRegion::Iterator rgnIter(*region); in draw()
97 SkRegion* region = getHighlightRegionsForLayer(layer); in drawGL() local
98 if (!region || region->isEmpty()) in drawGL()
[all …]
/external/icu4c/stubdata/
Dicu-data-default.txt551 region/res_index.res
552 region/pool.res
553 region/root.res
554 region/af.res
555 region/am.res
556 region/ar.res
557 region/be.res
558 region/bg.res
559 region/bn.res
560 region/bn_IN.res
[all …]
/external/kernel-headers/original/asm-mips/sn/sn0/
Dhubmd.h449 #define MD_MEMORY_CONFIG_DIR_TYPE_GET(region) (\ argument
450 (REMOTE_HUB_L(region, MD_MEMORY_CONFIG) & MMC_DIR_PREMIUM_MASK) >> \
459 #define MD_MIG_DIFF_THRESH_GET(region) ( \ argument
460 REMOTE_HUB_L((region), MD_MIG_DIFF_THRESH) & \
463 #define MD_MIG_DIFF_THRESH_SET(region, value) ( \ argument
464 REMOTE_HUB_S((region), MD_MIG_DIFF_THRESH, \
467 #define MD_MIG_DIFF_THRESH_DISABLE(region) ( \ argument
468 REMOTE_HUB_S((region), MD_MIG_DIFF_THRESH, \
469 REMOTE_HUB_L((region), MD_MIG_DIFF_THRESH) \
472 #define MD_MIG_DIFF_THRESH_ENABLE(region) ( \ argument
[all …]
/external/icu4c/tools/tzcode/
Dtzselect.ksh78 region=
204 select region in $regions
206 case $region in
211 case $region in
215 region=$regions
221 -v region="$region" \
271 case $country+$region in
272 ?*+?*) echo >&2 " $country$newline $region";;
/external/zlib/src/contrib/dotzlib/DotZLib/
DDotZLib.cs17 #region Internal types
27 #region ZStream structure
57 #region Public enums
82 #region Exception classes
109 #region Interfaces
212 #region Classes
218 #region DLL imports
226 #region Private stuff
DGZipStream.cs19 #region Dll Imports
40 #region Private data
46 #region Constructors
76 #region Access properties
112 #region Destructor & IDispose stuff
141 #region Basic reading and writing
237 #region Position & length stuff
DChecksumImpl.cs15 #region ChecksumGeneratorBase
100 #region CRC32
106 #region DLL imports
151 #region Adler
157 #region DLL imports
/external/clang/docs/analyzer/
DRegionStore.txt7 region + offset" key. (This allows `*p` and `p[0]` to map to the same location,
11 the same base region". This allows certain operations to be more efficient,
15 keys store both the original region, and the "concrete offset region" -- the
16 last region whose offset is entirely concrete. (For example, in the expression
17 `foo.bar[1][i].baz`, the concrete offset region is the array `foo.bar[1]`,
32 because `foo[i]` may have overwritten it! Thus, *binding to a region with a
33 symbolic offset invalidates the entire concrete offset region.* We know
43 because `foo[0]` may have overwritten it! *Binding to a region R with a
45 region is a super-region **or** sub-region of R.* All we know about `foo[i]` is
47 change `foo[i]`, and changing *all* of `foo` (or its base region) will
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_allocator.h332 RegionInfo *region = GetRegionInfo(class_id); in AllocateBatch() local
333 Batch *b = region->free_list.Pop(); in AllocateBatch()
335 b = PopulateFreeList(stat, c, class_id, region); in AllocateBatch()
336 region->n_allocated += b->count; in AllocateBatch()
341 RegionInfo *region = GetRegionInfo(class_id); in DeallocateBatch() local
343 region->free_list.Push(b); in DeallocateBatch()
344 region->n_freed += b->count; in DeallocateBatch()
364 RegionInfo *region = GetRegionInfo(class_id); in GetBlockBegin() local
365 if (region->mapped_user >= next_beg) in GetBlockBegin()
402 RegionInfo *region = GetRegionInfo(class_id); in PrintStats() local
[all …]
/external/chromium/chrome/browser/chromeos/frame/
Dbubble_window.cc21 void SetRegionUnionWithPoint(int i, int j, GdkRegion* region) { in SetRegionUnionWithPoint() argument
23 gdk_region_union_with_rect(region, &rect); in SetRegionUnionWithPoint()
67 GdkRegion* region = gdk_region_rectangle(&rect0); in TrimMargins() local
68 gdk_region_union_with_rect(region, &rect1); in TrimMargins()
75 SetRegionUnionWithPoint(i, j, region); in TrimMargins()
84 SetRegionUnionWithPoint(i, j, region); in TrimMargins()
93 SetRegionUnionWithPoint(i, j, region); in TrimMargins()
102 SetRegionUnionWithPoint(i, j, region); in TrimMargins()
107 gdk_window_shape_combine_region(window_contents()->window, region, in TrimMargins()
109 gdk_region_destroy(region); in TrimMargins()
/external/clang/test/Lexer/
Dpragma-region.c11 #pragma region
15 #pragma region long name
22 __pragma(region) // no sense, but ignored
27 #pragma region one
28 #pragma region inner
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
DMappingFileProvider.java154 String getFileName(int countryCallingCode, String language, String script, String region) { in getFileName() argument
164 String languageCode = findBestMatchingLanguageCode(setOfLangs, language, script, region); in getFileName()
175 Set<String> setOfLangs, String language, String script, String region) { in findBestMatchingLanguageCode() argument
176 StringBuilder fullLocale = constructFullLocale(language, script, region); in findBestMatchingLanguageCode()
188 if (onlyOneOfScriptOrRegionIsEmpty(script, region)) { in findBestMatchingLanguageCode()
192 } else if (script.length() > 0 && region.length() > 0) { in findBestMatchingLanguageCode()
199 StringBuilder langWithRegion = new StringBuilder(language).append('_').append(region); in findBestMatchingLanguageCode()
212 private boolean onlyOneOfScriptOrRegionIsEmpty(String script, String region) { in onlyOneOfScriptOrRegionIsEmpty() argument
213 return (script.length() == 0 && region.length() > 0) || in onlyOneOfScriptOrRegionIsEmpty()
214 (region.length() == 0 && script.length() > 0); in onlyOneOfScriptOrRegionIsEmpty()
[all …]
/external/icu4c/common/
Dloclikely.cpp156 const char* region, in createTagStringWithAlternates() argument
277 region, in createTagStringWithAlternates()
409 const char* region, in createTagString() argument
422 region, in createTagString()
467 char* region, in parseTagString() argument
480 region == NULL || in parseTagString()
538 subtagLength = ulocimp_getCountry(position, region, *regionLength, &position); in parseTagString()
539 u_terminateChars(region, *regionLength, subtagLength, err); in parseTagString()
548 if (uprv_strnicmp(region, unknownRegion, *regionLength) == 0) { in parseTagString()
582 const char* region, in createLikelySubtagsString() argument
[all …]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
DHashList.cs53 #region Helper classes
70 #region Constructors
92 #region IDictionaryEnumerator Members
132 #region IEnumerator Members
188 #region Constructors
245 #region ICollection Members
269 #region IEnumerable Members
283 #region Constructors
316 #region ICollection Members
340 #region IEnumerable Members
[all …]
/external/chromium/chrome/browser/ui/views/
Ddropdown_bar_host.cc229 ScopedPlatformRegion region(path.CreateNativeRegion()); in UpdateWindowEdges() local
249 region.Set(Path::IntersectRegions(animation_region.Get(), region.Get())); in UpdateWindowEdges()
264 region.Set(Path::CombineRegions(r.Get(), region.Get())); in UpdateWindowEdges()
268 region.Set(Path::CombineRegions(r.Get(), region.Get())); in UpdateWindowEdges()
302 region.Set(Path::SubtractRegion(region.Get(), exclude_region.Get())); in UpdateWindowEdges()
306 host()->SetShape(region.release()); in UpdateWindowEdges()
/external/webkit/Source/WebCore/css/
DCSSPrimitiveValue.cpp200 m_value.region = r.releaseRef(); in init()
237 if (m_value.region) in cleanup()
238 m_value.region->deref(); in cleanup()
790 … for (DashboardRegion* region = getDashboardRegionValue(); region; region = region->m_next.get()) { in cssText() local
794 text += region->m_label; in cssText()
795 if (region->m_isCircle) in cssText()
797 else if (region->m_isRectangle) in cssText()
801 … if (region->top()->m_type == CSS_IDENT && region->top()->getIdent() == CSSValueInvalid) { in cssText()
802 ASSERT(region->right()->m_type == CSS_IDENT); in cssText()
803 ASSERT(region->bottom()->m_type == CSS_IDENT); in cssText()
[all …]
/external/chromium/base/win/
Di18n.cc87 bool GetUserDefaultUILanguage(std::wstring* language, std::wstring* region) { in GetUserDefaultUILanguage() argument
101 region->clear(); in GetUserDefaultUILanguage()
108 region->assign(&result_buffer[0], result_length - 1); in GetUserDefaultUILanguage()
124 std::wstring region; in GetPreferredUILanguageList() local
134 } else if (GetUserDefaultUILanguage(&language, &region)) { in GetPreferredUILanguageList()
137 if (!region.empty()) in GetPreferredUILanguageList()
140 .append(region)); in GetPreferredUILanguageList()
/external/clang/lib/StaticAnalyzer/Checkers/
DArrayBoundCheckerV2.cpp69 const MemRegion *region) { in computeExtentBegin() argument
71 switch (region->getKind()) { in computeExtentBegin()
79 region = cast<SubRegion>(region)->getSuperRegion(); in computeExtentBegin()
270 const MemRegion *region = location.getAsRegion(); in computeOffset() local
273 while (region) { in computeOffset()
274 switch (region->getKind()) { in computeOffset()
276 if (const SubRegion *subReg = dyn_cast<SubRegion>(region)) { in computeOffset()
284 const ElementRegion *elemReg = cast<ElementRegion>(region); in computeOffset()
306 region = elemReg->getSuperRegion(); in computeOffset()
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
DSubList.cs30 #region IList Members
113 #region ICollection Members
158 #region IEnumerable Members
191 #region IEnumerable Members
200 #region ICollection Members
253 #region IList Members
330 #region IEnumerable<T> Members
339 #region ICollection<T> Members
380 #region IList<T> Members
/external/opencv/cv/src/
Dcvfloodfill.cpp96 uchar* _newVal, CvConnectedComp* region, int flags, in icvFloodFill_8u_CnIR() argument
154 if( region ) in icvFloodFill_8u_CnIR()
209 if( region ) in icvFloodFill_8u_CnIR()
211 region->area = area; in icvFloodFill_8u_CnIR()
212 region->rect.x = XMin; in icvFloodFill_8u_CnIR()
213 region->rect.y = YMin; in icvFloodFill_8u_CnIR()
214 region->rect.width = XMax - XMin + 1; in icvFloodFill_8u_CnIR()
215 region->rect.height = YMax - YMin + 1; in icvFloodFill_8u_CnIR()
216 region->value = cvScalar(newVal[0], newVal[1], newVal[2], 0); in icvFloodFill_8u_CnIR()
228 int* _newVal, CvConnectedComp* region, int flags, in icvFloodFill_32f_CnIR() argument
[all …]
/external/qemu/android/skin/
Dcomposer.c29 skin_region_reset(p->any.region); in skin_plate_ensure_region()
37 skin_region_union( p->any.region, r ); in skin_plate_ensure_region()
46 skin_plate_get_region( SkinPlate* p, SkinRegion* region ) in skin_plate_get_region() argument
51 skin_region_init_copy( region, p->any.region ); in skin_plate_get_region()
84 skin_region_init_copy(pregion, p->any.region); in skin_plate_get_opaque_region()
183 SkinRegion* region, in skin_plate_surface() argument
198 skin_region_init_copy( p->any.region, region ); in skin_plate_surface()
254 skin_region_reset( p->any.region ); in skin_plate_free()
262 skin_plate_invalidate( SkinPlate* plate, SkinRegion* region ) in skin_plate_invalidate() argument
265 skin_region_init_copy( r, region ); in skin_plate_invalidate()
[all …]
/external/icu4c/i18n/
Dzonemeta.cpp398 const UChar *region = TimeZone::getRegion(tzid); in getCanonicalCountry() local
399 if (region != NULL && u_strcmp(gWorld, region) != 0) { in getCanonicalCountry()
400 canonicalCountry.setTo(region, -1); in getCanonicalCountry()
410 const UChar *region = TimeZone::getRegion(tzid); in getSingleCountry() local
411 if (region == NULL || u_strcmp(gWorld, region) == 0) { in getSingleCountry()
459 multiZones = cached = gMultiZonesCountries->contains((void*)region); in getSingleCountry()
461 cached = gSingleZoneCountries->contains((void*)region); in getSingleCountry()
470 U_ASSERT(u_strlen(region) == 2); in getSingleCountry()
473 u_UCharsToChars(region, buf, 2); in getSingleCountry()
492 if (!gMultiZonesCountries->contains((void*)region)) { in getSingleCountry()
[all …]

12345678910>>...19