OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:tzInfo
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/icu/source/common/
putil.c
846
static UBool compareBinaryFiles(const char* defaultTZFileName, const char* TZFileName, DefaultTZInfo*
tzInfo
) {
855
if (
tzInfo
->defaultTZFilePtr == NULL) {
856
tzInfo
->defaultTZFilePtr = fopen(defaultTZFileName, "r");
860
tzInfo
->defaultTZPosition = 0; /* reset position to begin search */
862
if (file != NULL &&
tzInfo
->defaultTZFilePtr != NULL) {
864
if (
tzInfo
->defaultTZFileSize == 0) {
865
fseek(
tzInfo
->defaultTZFilePtr, 0, SEEK_END);
866
tzInfo
->defaultTZFileSize = ftell(
tzInfo
->defaultTZFilePtr);
872
if (sizeFile !=
tzInfo
->defaultTZFileSize)
[
all
...]
/external/icu4c/common/
putil.cpp
867
static UBool compareBinaryFiles(const char* defaultTZFileName, const char* TZFileName, DefaultTZInfo*
tzInfo
) {
876
if (
tzInfo
->defaultTZFilePtr == NULL) {
877
tzInfo
->defaultTZFilePtr = fopen(defaultTZFileName, "r");
881
tzInfo
->defaultTZPosition = 0; /* reset position to begin search */
883
if (file != NULL &&
tzInfo
->defaultTZFilePtr != NULL) {
885
if (
tzInfo
->defaultTZFileSize == 0) {
886
fseek(
tzInfo
->defaultTZFilePtr, 0, SEEK_END);
887
tzInfo
->defaultTZFileSize = ftell(
tzInfo
->defaultTZFilePtr);
893
if (sizeFile !=
tzInfo
->defaultTZFileSize)
[
all
...]
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneData.java
147
TimeZoneInfo
tzInfo
= new TimeZoneInfo(tz, null);
149
if (getIdenticalTimeZoneInTheCountry(
tzInfo
) == -1) {
151
Log.e(TAG, "# Adding time zone from getAvailId: " +
tzInfo
.toString());
153
mTimeZones.add(
tzInfo
);
157
"# Dropping identical time zone from getAvailId: " +
tzInfo
.toString());
163
// checkForNameDups(tz,
tzInfo
.mCountry, false /* dls */,
165
// checkForNameDups(tz,
tzInfo
.mCountry, false /* dls */,
168
// checkForNameDups(tz,
tzInfo
.mCountry, true /* dls */,
171
// checkForNameDups(tz,
tzInfo
.mCountry, true /* dls */,
Completed in 41 milliseconds