/external/clang/test/CodeGenCXX/ |
block-in-ctor-dtor.cpp | 7 class Zone { 9 Zone(); 10 ~Zone(); 13 Zone::Zone() { 18 Zone::~Zone() { 23 class X : public virtual Zone {
|
/external/icu4c/tools/tzcode/ |
icuzones | 6 # tzdata time zone files, for consistent parsing by the tools that 14 # Zone NAME GMTOFF RULES FORMAT 15 Zone Etc/Unknown 0 - Unknown 20 # Zone NAME GMTOFF RULES/SAVE FORMAT [UNTIL] 21 Zone SystemV/AST4ADT -4:00 SystemV A%sT 22 Zone SystemV/EST5EDT -5:00 SystemV E%sT 23 Zone SystemV/CST6CDT -6:00 SystemV C%sT 24 Zone SystemV/MST7MDT -7:00 SystemV M%sT 25 Zone SystemV/PST8PDT -8:00 SystemV P%sT 26 Zone SystemV/YST9YDT -9:00 SystemV Y%s [all...] |
tz.alias | 15 # For example, ICU has always defined the zone name "PST" to indicate 16 # the zone America/Los_Angeles. Unless we continue to have a zone with 19 # This list is read by tz2icu to incorporate legacy ICU zone aliases 20 # into the ICU system zone data. 24 #### Aliases that conflict with Olson compatibility Zone definition 39 # EET Europe/Istanbul # EET is a standard UNIX zone 45 # MET Asia/Tehran # MET is a standard UNIX zone
|
/external/icu4c/i18n/ |
vzone.cpp | 39 vzone_close(VZone* zone) { 40 delete (VTimeZone*)zone; 44 vzone_clone(const VZone *zone) { 45 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone()); 54 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) { 56 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s); 65 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) { 67 return ((VTimeZone*)zone)->VTimeZone::setTZURL(url); 71 vzone_getLastModified(VZone* zone, UDate& lastModified) { 72 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified) [all...] |
vzone.h | 39 * Creates a vzone from the given time zone ID. 40 * @param ID The time zone ID, such as America/New_York 42 * @return A vzone object initialized by the time zone ID, 68 vzone_close(VZone* zone); 72 * @param zone the original vzone 77 vzone_clone(const VZone *zone); 94 * @param zone, the vzone to use 101 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength); 105 * @param zone, the vzone to use 111 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) [all...] |
/external/freetype/src/pshinter/ |
pshglob.c | 157 PSH_Blue_Zone zones, zone; local 161 /* read blue zone entry, and select target top/bottom zone */ 183 zone = zones; 184 for ( ; count > 0; count--, zone++ ) 186 if ( reference < zone->org_ref ) 189 if ( reference == zone->org_ref ) 191 FT_Int delta0 = zone->org_delta; 199 zone->org_delta = delta; 204 zone->org_delta = delta 274 PSH_Blue_Zone zone = top_table->zones; local 297 PSH_Blue_Zone zone = bot_table->zones; local 320 PSH_Blue_Zone zone; local 431 PSH_Blue_Zone zone; local 534 PSH_Blue_Zone zone; local [all...] |
/external/icu4c/samples/datefmt/answers/ |
main_0.cpp | 17 * TimeZone::createTimeZone() will return a GMT zone object. In order 18 * to detect this error, we check the ID of the returned zone against 23 TimeZone* zone = TimeZone::createTimeZone(id); local 24 if (zone->getID(str) != id) { 25 delete zone; 28 printf(") returned zone with ID "); 33 return zone;
|
main_1.cpp | 16 * TimeZone::createTimeZone() will return a GMT zone object. In order 17 * to detect this error, we check the ID of the returned zone against 22 TimeZone* zone = TimeZone::createTimeZone(id); local 23 if (zone->getID(str) != id) { 24 delete zone; 27 printf(") returned zone with ID "); 32 return zone;
|
main_2.cpp | 16 * TimeZone::createTimeZone() will return a GMT zone object. In order 17 * to detect this error, we check the ID of the returned zone against 22 TimeZone* zone = TimeZone::createTimeZone(id); local 23 if (zone->getID(str) != id) { 24 delete zone; 27 printf(") returned zone with ID "); 32 return zone; 38 TimeZone *zone; local 62 zone = createZone("GMT"); // Create a GMT zone [all...] |
main_3.cpp | 16 * TimeZone::createTimeZone() will return a GMT zone object. In order 17 * to detect this error, we check the ID of the returned zone against 22 TimeZone* zone = TimeZone::createTimeZone(id); local 23 if (zone->getID(str) != id) { 24 delete zone; 27 printf(") returned zone with ID "); 32 return zone; 38 TimeZone *zone; local 62 zone = createZone("GMT"); // Create a GMT zone [all...] |
/external/iptables/include/linux/netfilter/ |
xt_CT.h | 8 __u16 zone; member in struct:xt_ct_target_info
|
/external/v8/src/ |
zone-inl.h | 32 #include "zone.h" 50 inline void* Zone::New(int size) { 68 T* Zone::NewArray(int length) { 73 bool Zone::excess_allocation() { 78 void Zone::adjust_segment_bytes_allocated(int delta) { 87 // in the destructor. For a zone-allocated tree, nodes will be 88 // freed by the Zone. 94 // operator that takes the zone in which the object should be 97 return ZONE->New(static_cast<int>(size)); 100 void* ZoneObject::operator new(size_t size, Zone* zone) [all...] |
zone.h | 35 // Zone scopes are in one of two modes. Either they delete the zone 44 // The Zone supports very fast allocation of small chunks of 46 // the Zone supports deallocating all chunks in one fast 47 // operation. The Zone is used to hold temporary data structures like 50 // Note: There is no need to initialize the Zone; the first time an 57 class Zone { 59 // Allocate 'size' bytes of memory in the Zone; expands the Zone by 66 // Delete all objects and free all memory allocated in the Zone [all...] |
/external/valgrind/main/memcheck/tests/ |
describe-block.c | 6 VALGRIND_CREATE_BLOCK(magic_foople_zone, 0x1000, "magic foople zone");
|
/external/icu4c/samples/datefmt/ |
main.cpp | 16 * TimeZone::createTimeZone() will return a GMT zone object. In order 17 * to detect this error, we check the ID of the returned zone against 22 TimeZone* zone = TimeZone::createTimeZone(id); local 23 if (zone->getID(str) != id) { 24 delete zone; 27 printf(") returned zone with ID "); 32 return zone; 38 TimeZone *zone; local 62 zone = createZone("GMT"); // Create a GMT zone [all...] |
/external/icu4c/stubdata/ |
icudt46l-default.txt | 509 zone/res_index.res 510 zone/pool.res 511 zone/root.res 512 zone/ar.res 513 zone/bg.res 514 zone/ca.res 515 zone/cs.res 516 zone/da.res 517 zone/de.res 518 zone/el.re [all...] |
/external/icu4c/i18n/unicode/ |
timezone.h | 49 * <code>TimeZone</code> represents a time zone offset, and also figures out daylight 54 * which creates a <code>TimeZone</code> based on the time zone where the program 60 * with a time zone ID. For instance, the time zone ID for the US Pacific 61 * Time zone is "America/Los_Angeles". So, you can get a Pacific Time <code>TimeZone</code> object 69 * all the supported time zone IDs. You can then choose a 71 * If the time zone you want is not represented by one of the 72 * supported IDs, then you can create a custom time zone ID with 82 * time zone ID. The <code>TimeZone</code> that is returned 83 * when you specify a custom time zone ID does not includ [all...] |
basictz.h | 30 * This class provides some additional methods to access time zone transitions and rules. 43 * Gets the first time zone transition after the base time. 53 * Gets the most recent time zone transition before the base time. 63 * Checks if the time zone has equivalent transitions in the time range. 65 * offsets and DST savings used by this time zone match the other in the 78 * @return true if the other time zone has the equivalent transitions in the 87 * for this time zone, that is, all <code>TimeZoneRule</code>s for this time zone except 97 * which represent time transitions for this time zone. On successful return, 101 * rule instance held by this time zone instance. Therefore, after this time zon [all...] |
/external/kernel-headers/original/linux/ |
mmzone.h | 35 * zone->lock and zone->lru_lock are two of the hottest locks in the kernel. 37 * cachelines. There are very few zone structures in the machine, so space 64 NUMA_INTERLEAVE_HIT, /* interleaver preferred this zone */ 103 * allocator in the gfp_mask, in the zone modifier bits. These bits 106 * the gfp_mask should be considered as zone modifiers. Each valid 107 * combination of the zone modifier bits has a corresponding list 108 * of zones (in node_zonelists). Thus for two zone modifiers there 111 * combinations of zone modifiers in "zone modifier space" 139 struct zone { struct [all...] |
/external/clang/test/Driver/ |
redzone.c | 1 // RUN: %clang -ccc-host-triple i386-unknown-unknown -mno-red-zone %s -S -emit-llvm -o %t.log 3 // RUN: %clang -ccc-host-triple i386-unknown-unknown -mred-zone %s -S -emit-llvm -o %t.log
|
/external/clang/test/SemaObjC/ |
interface-layout.m | 12 - (id) copyWithZone:(NSZone *) zone; 18 extern id NSAllocateObject (Class aClass, NSUInteger extraBytes, NSZone * zone);
|
/external/webkit/Tools/DumpRenderTree/mac/ |
CheckedMalloc.cpp | 42 static void* checkedMalloc(malloc_zone_t* zone, size_t size) 46 return savedMalloc(zone, size); 49 static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size) 53 return savedRealloc(zone, ptr, size); 71 malloc_zone_t* zone = malloc_default_zone(); local 74 mach_vm_address_t pageStart = reinterpret_cast<vm_address_t>(zone) & static_cast<vm_size_t>(~(getpagesize() - 1)); 77 vm_size_t len = reinterpret_cast<vm_address_t>(zone) - pageStart + sizeof(malloc_zone_t); 82 savedMalloc = zone->malloc; 83 savedRealloc = zone->realloc; 84 zone->malloc = checkedMalloc [all...] |
/external/icu4c/common/ |
ureslocs.h | 20 #define U_ICUDATA_ZONE U_ICUDATA_NAME U_TREE_SEPARATOR_STRING "zone"
|
/external/iptables/extensions/ |
libxt_CT.man | 23 \fB\-\-zone\fP \fIid\fP 24 Assign this packet to zone \fIid\fP and only have lookups done in that zone. 25 By default, packets have zone 0.
|
libxt_CT.c | 15 " --zone ID Assign/Lookup connection in zone ID\n" 34 {.name = "zone", .id = O_ZONE, .type = XTTYPE_UINT16, 35 .flags = XTOPT_PUT, XTOPT_POINTER(s, zone)}, 133 if (info->zone) 134 printf("zone %u ", info->zone); 152 if (info->zone) 153 printf(" --zone %u", info->zone); [all...] |