HomeSort by relevance Sort by last modified time
    Searched defs:month (Results 1 - 25 of 327) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/private/
bionic_time.h 41 const char * month[12]; member in struct:strftime_locale
  /external/apache-harmony/support/src/test/java/tests/support/
Support_TimeZone.java 47 * let's assume this timezone has daylight savings from the 4th month till
48 * the 10th month of the year to ame things simple.
57 int month = cal.get(Calendar.MONTH); local
59 if (month > 4 && month < 10) {
  /external/chromium_org/third_party/icu/source/test/intltest/
calcasts.h 31 int32_t month; member in struct:CalendarCaseTest::TestCase
  /external/chromium_org/v8/test/intl/overrides/
date.js 38 [], {year: 'numeric', month: 'numeric', day: 'numeric',
51 locale, {year: 'numeric', month: 'numeric', day: 'numeric',
60 var options = {year: 'numeric', month: 'long', day: 'numeric',
  /external/icu4c/test/intltest/
calcasts.h 31 int32_t month; member in struct:CalendarCaseTest::TestCase
  /frameworks/av/media/mtp/
MtpUtils.cpp 30 representation, YYYY shall be replaced by the year, MM replaced by the month (01-12),
37 int year, month, day, hour, minute, second; local
41 &year, &month, &day, &hour, &minute, &second) != 6)
58 tm.tm_mon = month - 1; // mktime uses months in 0 - 11 range
  /external/chromium/net/ftp/
ftp_directory_listing_parser_unittest.cc 75 mock_current_time_exploded.month = 11;
114 int year, month, day_of_month, hour, minute; local
116 base::StringToInt(lines[8 * i + 4], &month);
139 EXPECT_EQ(month, time_exploded.month);
ftp_directory_listing_parser_unittest.h 25 int month; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData
55 EXPECT_EQ(test_case.month, time_exploded.month);
66 mock_current_time_exploded.month = 11;
ftp_util_unittest.cc 114 const char* month; member in struct:__anon5470::__anon5474
158 kTestCases[i].month, kTestCases[i].day,
163 UTF8ToUTF16(kTestCases[i].month), UTF8ToUTF16(kTestCases[i].day),
169 EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
  /external/chromium_org/net/ftp/
ftp_directory_listing_parser_unittest.cc 35 mock_current_time_exploded.month = 11;
75 int year, month, day_of_month, hour, minute; local
77 base::StringToInt(lines[9 * i + 4], &month);
100 EXPECT_EQ(month, time_exploded.month);
ftp_directory_listing_parser_unittest.h 24 int month; member in struct:net::FtpDirectoryListingParserTest::SingleLineTestData
54 EXPECT_EQ(test_case.month, time_exploded.month);
65 mock_current_time_exploded.month = 11;
ftp_util_unittest.cc 121 const char* month; member in struct:__anon11123::__anon11127
165 kTestCases[i].month, kTestCases[i].day,
170 UTF8ToUTF16(kTestCases[i].month), UTF8ToUTF16(kTestCases[i].day),
176 EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
217 EXPECT_EQ(kTestCases[i].expected_month, time_exploded.month);
  /external/chromium_org/v8/src/
dateparser.cc 37 // Day and month defaults to 1.
43 int month = kNone; local
50 month = comp_[1];
54 month = comp_[0];
59 month = named_month_;
79 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false;
82 output->set(MONTH, Smi::FromInt(month - 1)); // 0-based
172 // Word longer than keyword is only allowed for month names.
  /external/v8/src/
dateparser.cc 37 // Day and month defaults to 1.
43 int month = kNone; local
50 month = comp_[1];
54 month = comp_[0];
59 month = named_month_;
79 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false;
82 output->set(MONTH, Smi::FromInt(month - 1)); // 0-based
171 // Word longer than keyword is only allowed for month names.
  /external/chromium_org/components/autofill/core/browser/
validation_unittest.cc 15 const char* month; member in struct:autofill::__anon9874::ExpirationDate
20 const int month; member in struct:autofill::__anon9874::IntExpirationDate
54 { "2013", "5" }, // Valid month in current year.
55 { "2014", "1" }, // Any month in next year.
56 { "2014", " 1" }, // Whitespace in month.
60 { 2013, 5 }, // Valid month in current year.
61 { 2014, 1 }, // Any month in next year.
64 { "2013", "04" }, // Previous month in current year.
65 { "2012", "12" }, // Any month in previous year.
68 { 2013, 4 }, // Previous month in current year
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
InputTypeNames.cpp 92 const AtomicString& month() function in namespace:WebCore::InputTypeNames
94 DEFINE_STATIC_LOCAL(AtomicString, name, ("month", AtomicString::ConstructFromLiteral));
  /external/chromium_org/third_party/icu/source/i18n/
coptccal.cpp 78 int32_t eyear, month, day, era, year; local
79 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
92 internalSet(UCAL_MONTH, month);
94 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
169 CopticCalendar::copticToJD(int32_t year, int32_t month, int32_t day)
171 return CECalendar::ceToJD(year, month, day, COPTIC_JD_EPOCH_OFFSET);
  /external/chromium_org/third_party/icu/source/test/compat/
tzdate.c 32 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime);
39 int year, month, day, hour, minute; local
44 sysyear = year = month = day = 0;
52 month = atoi(argv[2]);
61 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime);
109 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) {
120 ts.tm_mon = month - OFFSET_MONTH;
  /external/chromium_org/v8/test/mjsunit/
to_number_order.js 60 var month = { valueOf: function() { x += 2; return 2; } };
68 new Date(year, month, date, hours, minutes, seconds, ms);
73 Date(year, month, date, hours, minutes, seconds, ms);
77 Date.UTC(year, month, date, hours, minutes, seconds, ms);
118 new Date().setMonth(month, date, hours, minutes, seconds, ms);
122 new Date().setUTCMonth(month, date, hours, minutes, seconds, ms);
126 new Date().setFullYear(year, month, date, hours, minutes, seconds, ms);
130 new Date().setUTCFullYear(year, month, date, hours, minutes, seconds, ms);
  /external/chromium_org/v8/test/webkit/
date-constructor.js 78 var month = { valueOf: function() { testStr += 2; return 2; } };
86 new Date(year, month, date, hours, minutes, seconds, ms);
90 Date.UTC(year, month, date, hours, minutes, seconds, ms);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/dropSiteRootFiles/
index.php 73 $month = substr($timePart, 4, 2); variable
77 $timeStamp = mktime($hour, $minute, 0, $month, $day, $year);
  /external/icu4c/i18n/
coptccal.cpp 78 int32_t eyear, month, day, era, year; local
79 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
92 internalSet(UCAL_MONTH, month);
94 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
169 CopticCalendar::copticToJD(int32_t year, int32_t month, int32_t day)
171 return CECalendar::ceToJD(year, month, day, COPTIC_JD_EPOCH_OFFSET);
  /external/icu4c/test/compat/
tzdate.c 32 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime);
39 int year, month, day, hour, minute; local
44 sysyear = year = month = day = 0;
52 month = atoi(argv[2]);
61 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime);
109 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) {
120 ts.tm_mon = month - OFFSET_MONTH;
  /external/smack/src/org/xbill/DNS/
FormattedTime.java 42 sb.append(w2.format(c.get(Calendar.MONTH)+1));
66 int month = Integer.parseInt(s.substring(4, 6)) - 1; local
71 c.set(year, month, date, hour, minute, second);
  /external/v8/test/mjsunit/
to_number_order.js 60 var month = { valueOf: function() { x += 2; return 2; } };
68 new Date(year, month, date, hours, minutes, seconds, ms);
73 Date(year, month, date, hours, minutes, seconds, ms);
77 Date.UTC(year, month, date, hours, minutes, seconds, ms);
118 new Date().setMonth(month, date, hours, minutes, seconds, ms);
122 new Date().setUTCMonth(month, date, hours, minutes, seconds, ms);
126 new Date().setFullYear(year, month, date, hours, minutes, seconds, ms);
130 new Date().setUTCFullYear(year, month, date, hours, minutes, seconds, ms);

Completed in 3100 milliseconds

1 2 3 4 5 6 7 8 91011>>