HomeSort by relevance Sort by last modified time
    Searched refs:timezone_offset (Results 1 - 5 of 5) sorted by null

  /external/tcpdump/
print.h 32 uint32_t timezone_offset);
print.c 242 uint32_t timezone_offset)
245 thiszone = timezone_offset;
tcpdump.c 1100 int timezone_offset = 0; local
    [all...]
  /external/protobuf/python/google/protobuf/internal/
well_known_types.py 137 timezone_offset = value.find('Z')
138 if timezone_offset == -1:
139 timezone_offset = value.find('+')
140 if timezone_offset == -1:
141 timezone_offset = value.rfind('-')
142 if timezone_offset == -1:
145 time_value = value[0:timezone_offset]
166 if value[timezone_offset] == 'Z':
167 if len(value) != timezone_offset + 1:
171 timezone = value[timezone_offset:
    [all...]
  /external/v8/src/builtins/
builtins-date.cc 159 int timezone_offset = -date_cache->TimezoneOffset(time_ms); local
160 int timezone_hour = std::abs(timezone_offset) / 60;
161 int timezone_min = std::abs(timezone_offset) % 60;
170 (timezone_offset < 0) ? '-' : '+', timezone_hour, timezone_min,
176 min, sec, (timezone_offset < 0) ? '-' : '+', timezone_hour,
    [all...]

Completed in 124 milliseconds