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

1 2 3 4 5

  /external/icu4c/i18n/
vzone.cpp 37 vzone_close(VZone* zone) {
38 delete (VTimeZone*)zone;
42 vzone_clone(const VZone *zone) {
43 return (VZone*) (((VTimeZone*)zone)->VTimeZone::clone());
52 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength) {
54 UBool b = ((VTimeZone*)zone)->VTimeZone::getTZURL(s);
63 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength) {
65 return ((VTimeZone*)zone)->VTimeZone::setTZURL(url);
69 vzone_getLastModified(VZone* zone, UDate& lastModified) {
70 return ((VTimeZone*)zone)->VTimeZone::getLastModified(lastModified)
    [all...]
vzone.h 36 * Creates a vzone from the given time zone ID.
37 * @param ID The time zone ID, such as America/New_York
39 * @return A vzone object initialized by the time zone ID,
65 vzone_close(VZone* zone);
69 * @param zone the original vzone
74 vzone_clone(const VZone *zone);
91 * @param zone, the vzone to use
98 vzone_getTZURL(VZone* zone, UChar* & url, int32_t & urlLength);
102 * @param zone, the vzone to use
108 vzone_setTZURL(VZone* zone, UChar* url, int32_t urlLength)
    [all...]
ucal.cpp 30 TimeZone* zone = NULL; local
38 zone = TimeZone::createTimeZone(zoneStrID);
39 if (zone == NULL) {
43 return zone;
60 TimeZone* zone = TimeZone::createDefault(); local
61 if (zone == NULL) {
65 zone->getID(id);
66 delete zone;
75 TimeZone* zone = _createTimeZone(zoneID, -1, ec); local
76 if (zone != NULL)
84 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/WebKitTools/DumpRenderTree/mac/
CheckedMalloc.cpp 40 static void* checkedMalloc(malloc_zone_t* zone, size_t size)
44 return savedMalloc(zone, size);
47 static void* checkedRealloc(malloc_zone_t* zone, void* ptr, size_t size)
51 return savedRealloc(zone, ptr, size);
56 malloc_zone_t* zone = malloc_default_zone(); local
59 vm_address_t pageStart = reinterpret_cast<vm_address_t>(zone) & static_cast<vm_size_t>(~(getpagesize() - 1));
60 vm_size_t len = reinterpret_cast<vm_address_t>(zone) - pageStart + sizeof(malloc_zone_t);
64 savedMalloc = zone->malloc;
65 savedRealloc = zone->realloc;
66 zone->malloc = checkedMalloc
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
ClippedImageView.java 45 final int zone = mZone; local
46 return !(zone != 0 && (zone > 0 && event.getX() >= zone) ||
47 (zone < 0 && event.getX() < getWidth() + zone)) && super.onTouchEvent(event);
  /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/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/base/third_party/nspr/
prtime.cc 126 // Adjust for time zone and dst. Convert from seconds to microseconds.
163 // If timegm returned -1. Since we don't pass it a time zone, the only
509 * be interpreted relative to the local time zone (PR_FALSE) or GMT (PR_TRUE).
524 TIME_TOKEN zone = TT_UNKNOWN; local
555 else if (zone == TT_UNKNOWN &&
558 zone = TT_AST;
565 if (zone == TT_UNKNOWN &&
568 zone = TT_BST;
571 if (zone == TT_UNKNOWN &&
574 zone = TT_CDT
    [all...]
  /external/freetype/src/truetype/
ttobjs.c 56 /* GLYPH ZONE FUNCTIONS */
67 /* Deallocate a glyph zone. */
70 /* zone :: A pointer to the target glyph zone. */
73 tt_glyphzone_done( TT_GlyphZone zone )
75 FT_Memory memory = zone->memory;
80 FT_FREE( zone->contours );
81 FT_FREE( zone->tags );
82 FT_FREE( zone->cur );
83 FT_FREE( zone->org )
    [all...]
ttgload.c 707 tt_prepare_zone( TT_GlyphZone zone,
712 zone->n_points = (FT_UShort)( load->outline.n_points - start_point );
713 zone->n_contours = (FT_Short) ( load->outline.n_contours -
715 zone->org = load->extra_points + start_point;
716 zone->cur = load->outline.points + start_point;
717 zone->orus = load->extra_points2 + start_point;
718 zone->tags = (FT_Byte*)load->outline.tags + start_point;
719 zone->contours = (FT_UShort*)load->outline.contours + start_contour;
720 zone->first_point = (FT_UShort)start_point;
730 /* Hint the glyph using the zone prepared by the caller. Note that *
737 TT_GlyphZone zone = &loader->zone; local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
ucal.cpp 30 TimeZone* zone = NULL; local
38 zone = TimeZone::createTimeZone(zoneStrID);
39 if (zone == NULL) {
43 return zone;
60 TimeZone* zone = TimeZone::createDefault(); local
61 if (zone == NULL) {
65 zone->getID(id);
66 delete zone;
75 TimeZone* zone = _createTimeZone(zoneID, -1, ec); local
76 if (zone != NULL)
84 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;
  /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}
282 TimeZone zone = ZoneInfoDB.getTimeZone(id); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
ZonePicker.java 42 protected void addItem(List<Map> data, String name, String zone) {
45 temp.put("zone", zone);
  /external/chromium/third_party/icu/source/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() +
585 //errln("zone 1 = " + tz1);
586 //errln("zone 2 = " + tz2)
631 SimpleTimeZone *zone = new SimpleTimeZone(0, "Z"); local
885 UnicodeString zone [4];\/\/ = new String[4]; local
908 logln(UnicodeString("") + i + ": " + d + " \/ " + zone[i]); local
1151 SimpleTimeZone* zone = NULL; local
    [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
1140 SimpleTimeZone* zone = NULL; local
    [all...]
  /external/freetype/src/psaux/
t1decode.c 359 T1_Decoder_Zone zone; local
396 decoder->zone = decoder->zones;
397 zone = decoder->zones;
416 zone->base = charstring_base;
417 limit = zone->limit = charstring_base + charstring_len;
418 ip = zone->cursor = zone->base;
    [all...]

Completed in 358 milliseconds

1 2 3 4 5