HomeSort by relevance Sort by last modified time
    Searched full:zone (Results 151 - 175 of 780) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/freetype/src/cff/
cffgload.h 109 /* execution context charstring zone */
129 CFF_Decoder_Zone* zone; member in struct:CFF_Decoder_
  /external/quake/quake/src/QW/client/
zone.h 38 Z_??? Zone memory functions used for small, dynamic allocations like text
78 Zone block
  /external/quake/quake/src/WinQuake/
zone.h 38 Z_??? Zone memory functions used for small, dynamic allocations like text
78 Zone block
  /external/webkit/Source/JavaScriptCore/wtf/
ThreadingPrimitives.h 144 // The absoluteTime is in seconds, starting on January 1, 1970. The time is assumed to use the same time zone as WTF::currentTime().
154 // The absoluteTime is in seconds, starting on January 1, 1970. The time is assumed to use the same time zone as WTF::currentTime().
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/
DateTimeParser.java 84 private int zone; field in class:DateTimeParser.Time
86 public Time(int hour, int minute, int second, int zone) {
90 this.zone = zone;
96 public int getZone() { return zone; }
165 t.getZone());} // time zone offset
297 z = zone();
323 final public int zone() throws ParseException { method in class:DateTimeParser
  /external/chromium/base/test/
test_file_util.h 41 // the one that set the zone identifier. I.e. don't use it in UI/automation
  /external/chromium/third_party/libjingle/source/talk/base/
httpcommon.cc 362 char month[4], zone[6]; local
364 memset(zone, 0, sizeof(zone));
368 &tval.tm_hour, &tval.tm_min, &tval.tm_sec, zone)) {
385 if ((zone[0] == '+') || (zone[0] == '-')) {
386 if (!isdigit(zone[1]) || !isdigit(zone[2])
387 || !isdigit(zone[3]) || !isdigit(zone[4]))
    [all...]
  /external/clang/test/Analysis/
pr_2542_rdar_6793404.m 15 - (id)copyWithZone:(NSZone *)zone;
NoReturn.m 20 @end @protocol NSCopying - (id)copyWithZone:(NSZone *)zone;
21 @end @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone; @end
24 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
PR3991.m 12 @end @protocol NSCopying - (id)copyWithZone:(NSZone *)zone;
13 @end @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone;
17 @end extern id <NSObject> NSAllocateObject(Class aClass, unsigned extraBytes, NSZone *zone);
blocks.m 24 @protocol NSCopying - (id)copyWithZone:(NSZone *)zone; @end
25 @protocol NSMutableCopying - (id)mutableCopyWithZone:(NSZone *)zone; @end
30 extern id NSAllocateObject(Class aClass, NSUInteger extraBytes, NSZone *zone);
  /external/clang/test/SemaObjC/
typedef-class.m 9 @protocol NSCopying - (id) copyWithZone:(NSZone *) zone; @end
  /external/icu4c/i18n/unicode/
tzrule.h 12 * \brief C++ API: Time zone rule classes
26 * <code>TimeZoneRule</code> is a class representing a rule for time zone.
27 * <code>TimeZoneRule</code> has a set of time zone attributes, such as zone name,
67 * Fills in "name" with the name of this time zone.
68 * @param name Receives the name of this time zone.
164 * @param name The time zone name.
193 * <code>InitialTimeZoneRule</code> represents a time zone rule
194 * representing a time zone effective from the beginning and
203 * @param name The time zone name
    [all...]
  /external/icu4c/i18n/
ztrans.cpp 10 * \brief C API: Time zone transition classes
  /external/icu4c/test/intltest/
tztest.h 61 * Test short zone IDs for compliance
  /external/kernel-headers/original/linux/
mm.h 254 * protected by zone->lru_lock !
392 * The zone field is never updated after free_area_init_core()
407 * No sparsemem: | NODE | ZONE | ... | FLAGS |
408 * with space for node: | SECTION | NODE | ZONE | ... | FLAGS |
409 * no space for node: | SECTION | ZONE | ... | FLAGS |
425 /* Page flags: | [SECTION] | [NODE] | ZONE | ... | FLAGS | */
449 /* NODE:ZONE or SECTION:ZONE is used to lookup the zone from a page. */
471 struct zone;
    [all...]
swap.h 90 struct zone;
184 extern unsigned long try_to_free_pages(struct zone **, gfp_t);
193 extern int zone_reclaim(struct zone *, gfp_t, unsigned int);
196 static inline int zone_reclaim(struct zone *z, gfp_t mask, unsigned int order)
  /external/quake/
Android.mk 91 zone.cpp
  /external/quake/quake/src/QW/server/
makefile 29 zone.o \
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/
date-001.js 8 convenient, human-readable form in the current time zone.
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
DateUtils.java 33 * where T is the separator between the date and the time and the time zone
  /libcore/luni/src/test/java/libcore/java/util/
DateTest.java 28 // Ensure that no matter where this is run, we know what time zone
  /libcore/luni/src/test/java/tests/org/w3c/dom/
SetAttributeNS.java 175 "newprefix:zone", "newValue");
177 "http://www.nist.gov", "zone");
179 "http://www.nist.gov", "zone");
184 assertEquals("lname", "zone", resultLocalName);
  /bionic/libc/tzcode/
tzfile.h 29 ** Information about time zone files.
33 #define TZDIR "/system/usr/share/zoneinfo" /* Time zone object file directory */
71 ** tzh_charcnt (char)s '\0'-terminated zone abbreviations
  /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...]

Completed in 7501 milliseconds

1 2 3 4 5 67 8 91011>>