Searched defs:date (Results 1 - 25 of 283) sorted by last modified time

1234567891011>>

/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_upnp.c219 /* Write the current date/time per RFC */
225 struct tm *date; local
229 date = gmtime(&t);
230 if (date == NULL)
233 &weekday_str[date->tm_wday * 4], date->tm_mday,
234 &month_str[date->tm_mon * 4], date->tm_year + 1900,
235 date->tm_hour, date
[all...]
/external/wpa_supplicant_8/src/wps/
H A Dwps_upnp.c219 /* Write the current date/time per RFC */
225 struct tm *date; local
229 date = gmtime(&t);
230 if (date == NULL)
233 &weekday_str[date->tm_wday * 4], date->tm_mday,
234 &month_str[date->tm_mon * 4], date->tm_year + 1900,
235 date->tm_hour, date
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_upnp.c219 /* Write the current date/time per RFC */
225 struct tm *date; local
229 date = gmtime(&t);
230 if (date == NULL)
233 &weekday_str[date->tm_wday * 4], date->tm_mday,
234 &month_str[date->tm_mon * 4], date->tm_year + 1900,
235 date->tm_hour, date
[all...]
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPDateTimeImpl.java68 // extract the date and timezone from the calendar provided
69 Date date = calendar.getTime();
72 // put that date into a calendar the pretty much represents ISO8601
78 intCalendar.setTime(date);
95 * @param date a date describing an absolute point in time
96 * @param timeZone a TimeZone how to interpret the date
98 public XMPDateTimeImpl(Date date, TimeZone timeZone) argument
101 calendar.setTime(date);
/external/valgrind/main/include/vki/
H A Dvki-linux-drm.h54 vki_size_t date_len; /**< Length of date buffer */
55 char __user *date; /**< User-space buffer to hold date */ member in struct:vki_drm_version
/external/tcpdump/
H A Dsmbutil.c32 * interpret a 32 bit dos packed date/time to some parameters
35 interpret_dos_date(u_int32_t date, struct tm *tp) argument
39 p0 = date & 0xFF;
40 p1 = ((date & 0xFF00) >> 8) & 0xFF;
41 p2 = ((date & 0xFF0000) >> 16) & 0xFF;
42 p3 = ((date & 0xFF000000) >> 24) & 0xFF;
54 * create a unix date from a dos date
73 * create a unix date from a dos date
[all...]
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jar ... .String) public abstract void setExpiryDate (java.util.Date) public abstract void setDomain (java.lang.String) public ...
/external/smack/src/org/jivesoftware/smack/util/
H A DStringUtils.java119 * Parses the given date string in the <a href="http://xmpp.org/extensions/xep-0082.html">XEP-0082 - XMPP Date and Time Profiles</a>.
121 * @param dateString the date string to parse
132 * Parses the given date string in either of the three profiles of <a href="http://xmpp.org/extensions/xep-0082.html">XEP-0082 - XMPP Date and Time Profiles</a>
135 * This method uses internal date formatters and is thus threadsafe.
136 * @param dateString the date string to parse
144 * if date is in XEP-0091 format handle ambiguous dates missing the
151 Date date = handleDateWithMissingLeadingZeros(dateString, length);
153 if (date != null)
154 return date;
189 * Parses the given date strin
262 formatXEP0082Date(Date date) argument
[all...]
/external/smack/src/org/jivesoftware/smackx/packet/
H A DStreamInitiation.java172 * <li>date: The last modification time of the file. This is specified
213 private Date date; field in class:StreamInitiation.File
271 * Sets the date that the file was last modified.
273 * @param date The date that the file was last modified.
275 public void setDate(Date date) { argument
276 this.date = date;
280 * Returns the date that the file was last modified.
282 * @return Returns the date tha
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/history/
H A DAgentChatSession.java35 public AgentChatSession(Date date, long duration, String visitorsName, String visitorsEmail, String sessionID, String question) { argument
36 this.startDate = date;
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DAgentStatus.java118 private Date date; field in class:AgentStatus.ChatInfo
123 public ChatInfo(String sessionID, String userID, Date date, String email, String username, String question) { argument
126 this.date = date;
155 * Returns the date when this agent joined the chat.
157 * @return the date when this agent joined the chat.
160 return date;
200 if (date != null) {
201 buf.append(" startTime=\"").append(UTC_FORMAT.format(date)).append("\"");
252 Date date
[all...]
/external/smack/src/org/xbill/DNS/
H A DFormattedTime.java32 * @param date The Date to convert.
36 format(Date date) { argument
40 c.setTime(date);
67 int date = Integer.parseInt(s.substring(6, 8));
71 c.set(year, month, date, hour, minute, second);
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_output_stream.cc111 void FontOutputStream::WriteDateTime(int64_t date) { argument
112 WriteULong((date >> 32) & 0xffffffff);
113 WriteULong(date & 0xffffffff);
H A Dwritable_font_data.cc152 int32_t WritableFontData::WriteDateTime(int32_t index, int64_t date) { argument
153 WriteULong(index, (date >> 32) & 0xffffffff);
154 WriteULong(index + 4, date & 0xffffffff);
/external/sfntly/cpp/src/sfntly/table/core/
H A Dfont_header_table.cc173 void FontHeaderTable::Builder::SetCreated(int64_t date) { argument
174 InternalWriteData()->WriteDateTime(Offset::kCreated, date);
181 void FontHeaderTable::Builder::SetModified(int64_t date) { argument
182 InternalWriteData()->WriteDateTime(Offset::kModified, date);
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
H A Dhttpclient-4.0.3.jar ... .String) public abstract void setExpiryDate (java.util.Date) public abstract void setDomain (java.lang.String) public ...
H A Dmaps_v16.jarcom/google/android/maps/GeoPoint.class " package com.google.android.maps public com.google ...
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTime.java349 * Create an instance of this date formatting class
359 * Create an instance of this date formatting class
370 * Format the date according to the strftime-style string given in the constructor.
372 * @param date the date to format
373 * @return the formatted date
375 public String format(Date date) { argument
376 return simpleDateFormat.format(date);
467 * @param pattern The date/time pattern
/external/qemu/distrib/sdl-1.2.15/src/video/xbios/
H A DSDL_xbios_sb3.h69 unsigned char date[8]; /* Date of program build */ member in struct:__anon29623
/external/owasp/sanitizer/tools/findbugs/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dcommons-lang-2.6.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/commons/ org/apache/commons/lang/ ...
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
H A DjFormatString.jar ... final char TIME_24_HOUR static final char DATE_TIME static final char DATE static final char ISO_STANDARD_DATE void " href="/5.1.0 ...

Completed in 1751 milliseconds

1234567891011>>