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

  /external/webkit/Source/WebCore/html/
DateInputType.h 50 virtual bool parseToDateComponentsInternal(const UChar*, unsigned length, DateComponents*) const;
51 virtual bool setMillisecondToDateComponents(double, DateComponents*) const;
DateTimeInputType.h 51 virtual bool parseToDateComponentsInternal(const UChar*, unsigned length, DateComponents*) const;
52 virtual bool setMillisecondToDateComponents(double, DateComponents*) const;
DateTimeLocalInputType.h 52 virtual bool parseToDateComponentsInternal(const UChar*, unsigned length, DateComponents*) const;
53 virtual bool setMillisecondToDateComponents(double, DateComponents*) const;
TimeInputType.h 51 virtual bool parseToDateComponentsInternal(const UChar*, unsigned length, DateComponents*) const;
52 virtual bool setMillisecondToDateComponents(double, DateComponents*) const;
WeekInputType.h 51 virtual bool parseToDateComponentsInternal(const UChar*, unsigned length, DateComponents*) const;
52 virtual bool setMillisecondToDateComponents(double, DateComponents*) const;
MonthInputType.cpp 34 #include "DateComponents.h"
61 DateComponents date;
63 return DateComponents::invalidMilliseconds();
71 DateComponents date;
87 DateComponents date;
96 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumMonth());
101 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumMonth());
121 DateComponents date;
129 bool MonthInputType::parseToDateComponentsInternal(const UChar* characters, unsigned length, DateComponents* out) const
136 bool MonthInputType::setMillisecondToDateComponents(double value, DateComponents* date) cons
    [all...]
BaseDateAndTimeInputType.h 44 virtual bool parseToDateComponents(const String&, DateComponents*) const;
47 virtual bool parseToDateComponentsInternal(const UChar*, unsigned length, DateComponents*) const = 0;
48 virtual bool setMillisecondToDateComponents(double, DateComponents*) const = 0;
DateInputType.cpp 34 #include "DateComponents.h"
58 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDate());
63 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDate());
81 bool DateInputType::parseToDateComponentsInternal(const UChar* characters, unsigned length, DateComponents* out) const
88 bool DateInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
DateTimeInputType.cpp 34 #include "DateComponents.h"
64 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDateTime());
69 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDateTime());
87 bool DateTimeInputType::parseToDateComponentsInternal(const UChar* characters, unsigned length, DateComponents* out) const
94 bool DateTimeInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
WeekInputType.cpp 34 #include "DateComponents.h"
59 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumWeek());
64 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumWeek());
87 bool WeekInputType::parseToDateComponentsInternal(const UChar* characters, unsigned length, DateComponents* out) const
94 bool WeekInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
MonthInputType.h 54 virtual bool parseToDateComponentsInternal(const UChar*, unsigned length, DateComponents*) const;
55 virtual bool setMillisecondToDateComponents(double, DateComponents*) const;
DateTimeLocalInputType.cpp 34 #include "DateComponents.h"
59 return DateComponents::invalidMilliseconds();
70 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumDateTime());
75 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumDateTime());
93 bool DateTimeLocalInputType::parseToDateComponentsInternal(const UChar* characters, unsigned length, DateComponents* out) const
100 bool DateTimeLocalInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
TimeInputType.cpp 34 #include "DateComponents.h"
67 DateComponents date;
76 return parseToDouble(element()->fastGetAttribute(minAttr), DateComponents::minimumTime());
81 return parseToDouble(element()->fastGetAttribute(maxAttr), DateComponents::maximumTime());
99 bool TimeInputType::parseToDateComponentsInternal(const UChar* characters, unsigned length, DateComponents* out) const
106 bool TimeInputType::setMillisecondToDateComponents(double value, DateComponents* date) const
BaseDateAndTimeInputType.cpp 34 #include "DateComponents.h"
55 return parseToDouble(element()->value(), DateComponents::invalidMilliseconds());
142 DateComponents date;
150 bool BaseDateAndTimeInputType::parseToDateComponents(const String& source, DateComponents* out) const
154 DateComponents ignoredResult;
164 DateComponents date;
171 return date.toString(DateComponents::None);
173 return date.toString(DateComponents::Second);
174 return date.toString(DateComponents::Millisecond);
DateComponents.cpp 32 #include "DateComponents.h"
95 int DateComponents::maxWeekNumberInYear() const
133 bool DateComponents::parseYear(const UChar* src, unsigned length, unsigned start, unsigned& end)
185 bool DateComponents::addDay(int dayDiff)
238 bool DateComponents::addMinute(int minute)
288 bool DateComponents::parseTimeZone(const UChar* src, unsigned length, unsigned start, unsigned& end)
333 bool DateComponents::parseMonth(const UChar* src, unsigned length, unsigned start, unsigned& end)
355 bool DateComponents::parseDate(const UChar* src, unsigned length, unsigned start, unsigned& end)
379 bool DateComponents::parseWeek(const UChar* src, unsigned length, unsigned start, unsigned& end)
407 bool DateComponents::parseTime(const UChar* src, unsigned length, unsigned start, unsigned& end
    [all...]
DateComponents.h 40 // A DateComponents instance represents one of the following date and time combinations:
46 class DateComponents {
48 DateComponents()
81 // DateComponents instance. If these functions return false, the instance
109 // DateComponents type. The functions return true if it succeeds, and
130 // For a DateComponents initialized with parseDateTimeLocal(),
152 // Returns the maximum week number in this DateComponents's year.
InputType.h 44 class DateComponents;
233 // is successfully parsed. An instance pointed by the DateComponents*
235 // fails. The DateComponents* parameter may be 0.
236 virtual bool parseToDateComponents(const String&, DateComponents*) const;
InputType.cpp 34 #include "DateComponents.h"
169 return DateComponents::invalidMilliseconds();
384 bool InputType::parseToDateComponents(const String&, DateComponents*) const
  /external/webkit/Source/WebCore/
Android.mk 319 html/DateComponents.cpp \
    [all...]
  /external/webkit/Source/WebCore/dom/
Document.cpp 48 #include "DateComponents.h"
    [all...]

Completed in 451 milliseconds