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

1 2 3 4 5

  /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...]
ucal.cpp 32 TimeZone* zone = NULL; local
40 zone = TimeZone::createTimeZone(zoneStrID);
41 if (zone == NULL) {
45 return zone;
62 TimeZone* zone = TimeZone::createDefault(); local
63 if (zone == NULL) {
67 zone->getID(id);
68 delete zone;
77 TimeZone* zone = _createTimeZone(zoneID, -1, ec); local
78 if (zone != NULL)
86 TimeZone* zone = _createTimeZone(zoneID, -1, ec); local
    [all...]
windtfmt.h 80 * Sets the time zone for the calendar of this DateFormat object. The caller
90 * Sets the time zone for the calendar of this DateFormat object.
91 * @param zone the new time zone.
95 virtual void setTimeZone(const TimeZone& zone);
127 UnicodeString setTimeZoneInfo(TIME_ZONE_INFORMATION *tzi, const TimeZone &zone) const;
  /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/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/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/icu4c/samples/datefmt/answers/
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...]
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;
  /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/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...]
hydrogen.cc 78 loop_information_ = new(zone()) HLoopInformation(this);
110 HBlockEntry* entry = new(zone()) HBlockEntry();
123 HDeoptimize* instr = new(zone()) HDeoptimize(environment->length());
143 HSimulate* instr = new(zone()) HSimulate(id, pop_count);
171 AddInstruction(new(zone()) HLeaveInlined);
175 HGoto* instr = new(zone()) HGoto(block);
184 AddInstruction(new(zone()) HLeaveInlined);
188 HGoto* instr = new(zone()) HGoto(target);
496 HConstant* constant = new(zone()) HConstant(Handle<Object>(value),
584 new(zone()) HEnvironment(NULL, info->scope(), info->closure())
1276 Zone* zone() { return graph_->zone(); } function in class:v8::internal::BASE_EMBEDDED
1499 Zone* zone() { return graph_->zone(); } function in class:v8::internal::BASE_EMBEDDED
5750 Zone* zone = closure()->GetIsolate()->zone(); local
    [all...]
  /external/openssl/crypto/x509v3/
v3_sxnet.c 91 ASN1_SIMPLE(SXNETID, zone, ASN1_INTEGER),
115 tmp = i2s_ASN1_INTEGER(NULL, id->zone);
150 /* Add an id given the zone as an ASCII number */
152 int SXNET_add_id_asc(SXNET **psx, char *zone, char *user,
156 if(!(izone = s2i_ASN1_INTEGER(NULL, zone))) {
163 /* Add an id given the zone as an unsigned long */
178 /* Add an id given the zone as an ASN1_INTEGER.
183 int SXNET_add_id_INTEGER(SXNET **psx, ASN1_INTEGER *zone, char *user,
188 if(!psx || !zone || !user) {
202 if(SXNET_get_id_INTEGER(sx, zone)) {
    [all...]
  /frameworks/base/core/java/android/app/
IAlarmManager.aidl 31 void setTimeZone(String zone);
  /external/chromium/net/http/
url_security_manager_win.cc 17 // URL security zone manager. See the MSDN page "URL Security Zones" at
19 // info on the Internet Security Manager and Internet Zone Manager objects.
77 // not located in the Intranet zone". TODO(wtc): Note that it's
86 DWORD zone = 0; local
87 hr = security_manager_->MapUrlToZone(url_w.c_str(), &zone, 0);
92 return zone <= URLZONE_INTRANET;
106 // TODO(cbentzel): Could this just use the security zone as well? Apparently
  /external/chromium/base/third_party/nspr/
prtime.cc 127 // Adjust for time zone and dst. Convert from seconds to microseconds.
164 // If timegm returned -1. Since we don't pass it a time zone, the only
510 * be interpreted relative to the local time zone (PR_FALSE) or GMT (PR_TRUE).
525 TIME_TOKEN zone = TT_UNKNOWN; local
556 else if (zone == TT_UNKNOWN &&
559 zone = TT_AST;
566 if (zone == TT_UNKNOWN &&
569 zone = TT_BST;
572 if (zone == TT_UNKNOWN &&
575 zone = TT_CDT
    [all...]
  /libcore/luni/src/main/java/java/util/
TimeZone.java 25 * {@code TimeZone} represents a time zone, primarily used for configuring a {@link Calendar} or
29 * the time zone where the program is running.
88 * Returns a new time zone with the same ID, raw offset, and daylight
89 * savings time rules as this time zone.
100 * Returns the system's installed time zone IDs. Any of these IDs can be
101 * passed to {@link #getTimeZone} to lookup the corresponding time zone
111 * lookup the corresponding time zone instance.
120 * Returns the user's preferred time zone. This may have been overridden for
123 * <p>Since the user's time zone changes dynamically, avoid caching this
158 * zone with either standard or daylight time, as written in {@code locale}
285 TimeZone zone = ZoneInfoDB.getTimeZone(id); local
    [all...]
  /external/iptables/extensions/
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...]
  /external/icu4c/test/intltest/
tzregts.cpp 132 errln("Fail: Fix test to start with non-DST zone");
269 TimeZone *zone = TimeZone::createTimeZone(ZONES[i]);
271 if (zone->getID(id) != ZONES[i])
278 ostream.writeObject(zone);
285 //logln("Zone: " + zone);
287 if (!zone.equals(frankenZone)) {
288 logln("TimeZone " + zone.getID() +
571 //errln("zone 1 = " + tz1);
572 //errln("zone 2 = " + tz2)
617 SimpleTimeZone *zone = new SimpleTimeZone(0, "Z"); local
871 UnicodeString zone [4];\/\/ = new String[4]; local
894 logln(UnicodeString("") + i + ": " + d + " \/ " + zone[i]); local
1137 SimpleTimeZone* zone = NULL; local
    [all...]
  /external/freetype/src/psaux/
t1decode.c 360 T1_Decoder_Zone zone; local
388 decoder->zone = decoder->zones;
389 zone = decoder->zones;
408 zone->base = charstring_base;
409 limit = zone->limit = charstring_base + charstring_len;
410 ip = zone->cursor = zone->base;
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
SimpleTimeZoneTest.java 261 TimeZone zone = TimeZone.getTimeZone("EST"); local
263 assertFalse("Returned incorrect daylight value1", zone.inDaylightTime(gc
266 assertFalse("Returned incorrect daylight value1", zone.inDaylightTime(gc
268 gc = new GregorianCalendar(zone);
270 assertTrue("Returned incorrect daylight value3", !(zone
273 assertFalse("Returned incorrect daylight value4", zone
276 assertTrue("Returned incorrect daylight value5", !(zone
279 assertFalse("Returned incorrect daylight value6", zone
282 assertTrue("Returned incorrect daylight value7", !zone
284 assertFalse("Returned incorrect daylight value8", zone
    [all...]
  /external/freetype/src/truetype/
ttgload.c 690 tt_prepare_zone( TT_GlyphZone zone,
695 zone->n_points = (FT_UShort)( load->outline.n_points - start_point );
696 zone->n_contours = (FT_Short) ( load->outline.n_contours -
698 zone->org = load->extra_points + start_point;
699 zone->cur = load->outline.points + start_point;
700 zone->orus = load->extra_points2 + start_point;
701 zone->tags = (FT_Byte*)load->outline.tags + start_point;
702 zone->contours = (FT_UShort*)load->outline.contours + start_contour;
703 zone->first_point = (FT_UShort)start_point;
713 /* Hint the glyph using the zone prepared by the caller. Note that *
720 TT_GlyphZone zone = &loader->zone; local
    [all...]

Completed in 599 milliseconds

1 2 3 4 5