Home
last modified time | relevance | path

Searched +full:not +full:- +full:date (Results 1 – 25 of 1096) sorted by relevance

12345678910>>...44

/external/icu/icu4c/source/i18n/unicode/
Ddtitvfmt.h4 * Copyright (C) 2008-2016, International Business Machines Corporation and
21 * \brief C++ API: Format and parse date interval in a language-independent manner.
37 * DateIntervalFormat is a class for formatting and parsing date
38 * intervals in a language-independent manner.
39 * Only formatting is supported, parsing is not supported.
42 * Date interval means from one date to another date,
51 * For example, the date interval format from "Jan 11, 2008" to "Jan 18,. 2008"
52 * is "Jan 11-18, 2008" for English.
54 * although initially, parsing is not supported.
57 * There is no structural information in date time patterns.
[all …]
Ddatefmt.h5 * Copyright (C) 1997-2016, International Business Machines
13 * Date Name Description
56 * language-independent manner. Converting from the internal representation (milliseconds
60 * date formatting and parsing actions.
66 * To format a date for the current Locale, use one of the static factory
73 * myString = dfmt->format( myDate, myString );
86 * cout << df->format( myDateArr[i], myString ) << endl;
90 * To get specific fields of a date, you can use UFieldPosition to
97 * myString = dfmt->format( myDate, myString );
102 * To format a date for a different Locale, specify it in the call to
[all …]
Dudat.h5 * Copyright (C) 1996-2016, International Business Machines
26 * <h2> Date Format C API</h2>
28 * Date Format C API consists of functions that convert dates and
30 * language-independent manner. Converting from the internal representation (milliseconds
34 * date formatting and parsing actions.
36 * Date Format helps you to format and parse dates for any locale. Your code can
40 * To format a date for the current Locale with default time and date style,
47 * UDateFormat* dfmt = udat_open(UDAT_DEFAULT, UDAT_DEFAULT, NULL, NULL, -1, NULL, -1, &status);
66 * UDateFormat* df = udat_open(UDAT_DEFAULT, UDAT_DEFAULT, NULL, NULL, -1, NULL, 0, &status);
79 * To get specific fields of a date, you can use UFieldPosition to
[all …]
Ddtitvinf.h5 * Copyright (C) 2008-2016, International Business Machines Corporation and
21 * \brief C++ API: Date/Time interval patterns for formatting date/time interval
35 * date time interval patterns. It is used by DateIntervalFormat.
38 * For most users, ordinary use of DateIntervalFormat does not need to create
40 * DateIntervalFormat will take care of it when creating a date interval
44 * For power users, who want to create their own date interval patterns,
45 * or want to re-set date interval patterns, they could do so by
64 * For those non-digit calendar fields, the pattern letter length is
70 * in date time patterns, will be returned without honor the field pattern
76 * year, month, date, day-of-week, am-pm, hour, hour-of-day, and minute.
[all …]
/external/autotest/contrib/
Ddb_cleanup.py3 # Use of this source code is governed by a BSD-style license that can be
20 # Format Appears as: [Date] [Time] - [Msg Level] - [Message]
21 LOGGING_FORMAT = '%(asctime)s - %(levelname)s - %(message)s'
22 # This regex makes sure the input is in the format of YYYY-MM-DD (2012-02-01)
23 DATE_FORMAT_REGEX = ('^(19|20)\d\d[- /.](0[1-9]|1[012])[- /.](0[1-9]|[12][0-9]'
27 WHERE %(table)s.%(time_column)s <= "%(date)s"
33 WHERE %(related_table)s.%(time_column)s <= "%(date)s"
43 WHERE %(related_table)s.%(time_column)s <= "%(date)s"
57 # db_cleanup may delete stuff from the global database, which is generally not
96 bartext = '=' * (barlen-1) + '>'
[all …]
/external/toolchain-utils/
Dgenerate-waterfall-reports.py5 # - arguments to allow generating only the main waterfall report,
8 # - Better way of figuring out which dates/builds to generate
9 # reports for: probably an argument specifying a date or a date
13 # - Store/get the json/data files in mobiletc-prebuild's x20 area.
14 # - Update data in json file to reflect, for each testsuite, which
15 # tests are not expected to run on which boards; update this
17 # - Make sure user's prodaccess is up-to-date before trying to use
19 # - Add some nice formatting/highlighting to reports.
36 ('bvt-inline', 'HWTest'),
37 ('bvt-cq', 'HWTest'),
[all …]
/external/apache-http/src/org/apache/http/impl/cookie/
DDateUtils.java2 …* $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main…
4 * $Date: 2008-07-16 04:25:47 -0700 (Wed, 16 Jul 2008) $
12 * "License"); you may not use this file except in compliance
15 * http://www.apache.org/licenses/LICENSE-2.0
38 import java.util.Date;
47 * 3.3.1 as well as some other common non-standard formats.
53 …* Please visit <a href="http://android-developers.blogspot.com/2011/09/androids-http-clients.h…
60 * Date format pattern used to parse HTTP date headers in RFC 1123 format.
65 * Date format pattern used to parse HTTP date headers in RFC 1036 format.
67 public static final String PATTERN_RFC1036 = "EEEE, dd-MMM-yy HH:mm:ss zzz";
[all …]
/external/icu/icu4c/source/test/testdata/
Dformat.txt3 // Copyright (c) 2007-2015 International Business Machines
24 Headers { "locale", "zone", "spec", "date", "str"}
26 // zone: time zone name, or "" to not explicitly set zone
27 // spec: either 'PATTERN=y mm h' etc, or 'DATE=SHORT,TIME=LONG'
28 // date: either 'MILLIS=####' where #### is millis,
31 …// or RELATIVE_ADD:DATE=1 which means that the field "DATE" will be added by +1 relative t…
38 "DATE=SHORT,TIME=SHORT",
39 "ERA=1,YEAR=2007,MONTH=AUGUST,DATE=8,HOUR_OF_DAY=18,MINUTE=54,SECOND=0",
45 "DATE=LONG",
46 "ERA=1,YEAR=98,MONTH=0,DATE=24",
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/text/
DDateIntervalFormat.java1 /* GENERATED SOURCE. DO NOT MODIFY. */
5 * Copyright (C) 2008-2016, International Business Machines
36 * DateIntervalFormat is a class for formatting and parsing date
37 * intervals in a language-independent manner.
38 * Only formatting is supported. Parsing is not supported.
41 * Date interval means from one date to another date,
50 * For example, the date interval format from "Jan 11, 2008" to "Jan 18,. 2008"
51 * is "Jan 11-18, 2008" for English.
53 * although initially, parsing is not supported.
56 * There is no structural information in date time patterns.
[all …]
DDateFormat.java1 /* GENERATED SOURCE. DO NOT MODIFY. */
5 * Copyright (C) 1996-2016, International Business Machines
19 import java.util.Date;
39 …* DateFormat is an abstract class for date/time formatting subclasses which formats and parses dat…
40 …* language-independent manner. The date/time formatting subclass, such as SimpleDateFormat, allows…
41 …* (i.e., date -&gt; text), parsing (text -&gt; date), and normalization. The date is represented a…
47 …* methods for obtaining default date/time formatters based on the default for a given locale and a…
55 …* common pre-defined skeletons, such as {@link #MINUTE_SECOND} for something like "13:45" or {@lin…
60 * To format a date for the current Locale, use one of the static factory methods:
77 * To format a date for a different Locale, specify it in the call to getDateInstance().
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DDateIntervalFormat.java4 * Copyright (C) 2008-2016, International Business Machines
35 * DateIntervalFormat is a class for formatting and parsing date
36 * intervals in a language-independent manner.
37 * Only formatting is supported. Parsing is not supported.
40 * Date interval means from one date to another date,
49 * For example, the date interval format from "Jan 11, 2008" to "Jan 18,. 2008"
50 * is "Jan 11-18, 2008" for English.
52 * although initially, parsing is not supported.
55 * There is no structural information in date time patterns.
56 * For any punctuations and string literals inside a date time pattern,
[all …]
DDateFormat.java4 * Copyright (C) 1996-2016, International Business Machines
18 import java.util.Date;
38 …* DateFormat is an abstract class for date/time formatting subclasses which formats and parses dat…
39 …* language-independent manner. The date/time formatting subclass, such as SimpleDateFormat, allows…
40 …* (i.e., date -&gt; text), parsing (text -&gt; date), and normalization. The date is represented a…
46 …* methods for obtaining default date/time formatters based on the default for a given locale and a…
54 …* common pre-defined skeletons, such as {@link #MINUTE_SECOND} for something like "13:45" or {@lin…
59 * To format a date for the current Locale, use one of the static factory methods:
76 * To format a date for a different Locale, specify it in the call to getDateInstance().
88 …* There are many static factory methods available. Use getDateInstance to get the normal date form…
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
DCertPathReviewerMessages.properties12 # cert DN is not in the permitted tree
14 CertPathReviewer.notPermittedDN.title = Name constraint error: certificate DN is not permitted
15 CertPathReviewer.notPermittedDN.text = Name constraint error: the certificate DN {0} is not permitt…
16 CertPathReviewer.notPermittedDN.summary = Name constraint error: certificate DN is not permitted.
17 …ttedDN.details = Name constraint checking error. The certificate DN {0} is not in the permitted se…
26 # cert email is not in the permitted tree
28 CertPathReviewer.notPermittedEmail.title = Name constraint error: not permitted email address
29 CertPathReviewer.notPermittedEmail.text = Name constraint error: certificate contains the not permi…
30 CertPathReviewer.notPermittedEmail.summary = Name constraint error: not permitted email address.
31 …nt checking error. The certificate contains the email address {0} which is not in the permitted se…
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DJapaneseTest.java1 /* GENERATED SOURCE. DO NOT MODIFY. */
6 * Copyright (C) 2002-2010, International Business Machines Corporation and *
14 import java.util.Date;
38 errln("could not create JapaneseCalendar with TimeZone"); in TestCoverage()
46 errln("could not create JapaneseCalendar with ULocale"); in TestCoverage()
54 errln("could not create JapaneseCalendar with TimeZone ULocale"); in TestCoverage()
62 errln("could not create JapaneseCalendar with Locale"); in TestCoverage()
70 errln("could not create JapaneseCalendar with TimeZone Locale"); in TestCoverage()
75 // new JapaneseCalendar(Date) in TestCoverage()
76 JapaneseCalendar cal = new JapaneseCalendar(new Date()); in TestCoverage()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DJapaneseTest.java5 * Copyright (C) 2002-2010, International Business Machines Corporation and *
13 import java.util.Date;
37 errln("could not create JapaneseCalendar with TimeZone"); in TestCoverage()
45 errln("could not create JapaneseCalendar with ULocale"); in TestCoverage()
53 errln("could not create JapaneseCalendar with TimeZone ULocale"); in TestCoverage()
61 errln("could not create JapaneseCalendar with Locale"); in TestCoverage()
69 errln("could not create JapaneseCalendar with TimeZone Locale"); in TestCoverage()
74 // new JapaneseCalendar(Date) in TestCoverage()
75 JapaneseCalendar cal = new JapaneseCalendar(new Date()); in TestCoverage()
77 errln("could not create JapaneseCalendar with Date"); in TestCoverage()
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/
DSIPDateHeader.java7 * employees are not subject to copyright protection in the United States
9 * license is not needed to use the software.
14 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT
15 * AND DATA ACCURACY. NIST does not warrant or make any representations
17 * not limited to the correctness, accuracy, reliability or usefulness of
35 * Date Header.
37 *@version 1.2 $Revision: 1.6 $ $Date: 2009/07/17 18:57:37 $
50 /** date field
52 protected SIPDate date; field in SIPDateHeader
57 super(DATE); in SIPDateHeader()
[all …]
/external/icu/android_icu4j/src/main/java/android/icu/util/
DSimpleDateRule.java1 /* GENERATED SOURCE. DO NOT MODIFY. */
6 * Copyright (C) 1996-2010, International Business Machines Corporation and *
13 import java.util.Date;
26 * Construct a rule for a fixed date within a month
28 * @param month The month in which this rule occurs (0-based).
29 * @param dayOfMonth The date in that month (1-based).
51 * @param month The month in which this rule occurs (0-based).
52 * @param dayOfMonth A date within that month (1-based).
63 this.dayOfWeek = after ? dayOfWeek : -dayOfWeek; in SimpleDateRule()
68 * that is on or after the given start date.
[all …]
DDateRule.java1 /* GENERATED SOURCE. DO NOT MODIFY. */
6 * Copyright (C) 1996-2010, International Business Machines Corporation and *
13 import java.util.Date;
19 * DateRule is an interface for calculating the date of an event.
32 * that is on or after the given start date.
34 * @param start Only occurrances on or after this date are returned.
36 * @return The date on which this event occurs, or null if it
37 * does not occur on or after the start date.
42 abstract public Date firstAfter(Date start); in firstAfter()
46 * that is on or after the given start date and before the given
[all …]
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue49/
DCalendarTest.java5 * you may not use this file except in compliance with the License.
8 * http://www.apache.org/licenses/LICENSE-2.0
19 import java.util.Date;
29 * Daylight Saving Time is not taken into account
35 cal.setTime(new Date(1000000000000L)); in testDumpDstIgnored()
36 cal.setTimeZone(TimeZone.getTimeZone("GMT-8:00")); in testDumpDstIgnored()
41 assertEquals("calendar: 2001-09-08T17:46:40-8:00\nname: lunch\n", output); in testDumpDstIgnored()
49 * Daylight Saving Time is in effect on this date/time in
51 * Saving Time is not in effect on this date/time in GMT
55 "2001-09-08T18:46:40-7:00"); in testDumpDstIsNotTheSame()
[all …]
/external/openssh/
DChangeLog3 Date: Thu Jan 14 11:08:19 2016 +1100
9 Date: Thu Jan 14 11:04:04 2016 +1100
11 openssh-7.1p2
15 Date: Thu Jan 14 11:02:58 2016 +1100
21 Date: Mon Oct 5 17:11:21 2015 +0000
25 some more bzero->explicit_bzero, from Michael McConville
27 Upstream-ID: 17f19545685c33327db2efdc357c1c9225ff00d0
31 Date: Fri Sep 11 08:50:04 2015 +0000
40 Upstream-ID: 2e3337db046c3fe70c7369ee31515ac73ec00f50
44 Date: Sun Nov 8 21:59:11 2015 +0000
[all …]
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DDateFormat.java4 * Copyright (C) 1996-2012, International Business Machines
15 import java.util.Date;
28 * <p>DateFormat is an abstract class for date/time formatting subclasses which
29 * formats and parses dates or time in a language-independent manner.
30 * The date/time formatting subclass, such as SimpleDateFormat, allows for
31 * formatting (i.e., date -> text), parsing (text -> date), and
32 * normalization. The date is represented as a <code>Date</code> object or
35 * <p>DateFormat provides many class methods for obtaining default date/time
45 * <p>To format a date for the current Locale, use one of the
69 * <p>Use getDateInstance to get the normal date format for that country.
[all …]
/external/chromium-libpac/src/
Dproxy_resolver_script.h5 * 1.1 (the "License"); you may not use this file except in compliance with
31 * under the terms of either the GPL or the LGPL, and not to allow others to
34 * and other provisions required by the GPL or the LGPL. If you do not delete
49 // sed -e 's/^\s*$/""/g' |
50 // sed -e 's/"\s*[+]\s*$/"/g' |
51 // sed -e 's/"$/" \\/g' |
52 // sed -e 's/\/(ipaddr);/\/.exec(ipaddr);/g' |
53 // grep -v '^var pacUtils ='
57 " host.substring(host.length - domain.length) == domain);\n" \
61 " return host.split('.').length-1;\n" \
[all …]
/external/icu/icu4c/source/test/intltest/
Ddadrfmt.cpp5 * Copyright (c) 1997-2013 International Business Machines Corporation and
11 * Date Name Description
51 TestData *testData = driver->createTestData(index, status); in runIndexedTest()
53 name = testData->getName(); in runIndexedTest()
54 if (testData->getInfo(info, status)) { in runIndexedTest()
55 log(info->getString("Description", status)); in runIndexedTest()
59 logln("---"); in runIndexedTest()
69 dataerrln("format/DataDriven*Test data (format.res) not initialized!"); in runIndexedTest()
78 * Headers { "locale", "zone", "spec", "date", "str"}
80 // zone: time zone name, or "" to not explicitly set zone
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DDateRule.java5 * Copyright (C) 1996-2010, International Business Machines Corporation and *
12 import java.util.Date;
18 * DateRule is an interface for calculating the date of an event.
31 * that is on or after the given start date.
33 * @param start Only occurrances on or after this date are returned.
35 * @return The date on which this event occurs, or null if it
36 * does not occur on or after the start date.
42 abstract public Date firstAfter(Date start); in firstAfter()
46 * that is on or after the given start date and before the given
47 * end date.
[all …]
/external/toybox/tests/
Dtouch.test3 [ -f testing.sh ] && . testing.sh
7 testing "touch" "touch walrus && [ -e walrus ] && echo yes" "yes\n" "" ""
10 testing "-c" "touch -c walrus && [ -e walrus ] && echo yes" "yes\n" "" ""
11 testing "-c missing" "touch -c warrus && [ ! -e warrus ] && echo yes" \
14 testing "-t" \
15 "touch -t 201201231234 walrus && date -r walrus +%Y%m%d-%H%M%S.%N" \
16 "20120123-123400.000000000\n" "" ""
18 # Yes, the year could roll over while you're running this test. I do not care.
19 testing "-t MMDDhhmm" \
20 "touch -t 01231234 input && date +%Y-%m-%d:%H-%M-%S -r input" \
[all …]

12345678910>>...44