Home
last modified time | relevance | path

Searched refs:jd (Results 1 – 25 of 57) sorted by relevance

123

/external/doclava/res/assets/templates/assets/
Dstyle.css1 .jd-toptitle {
8 div#jd-content table {
12 div#jd-content td, div#jd-content th {
16 div#jd-content table.jd-linktable {
21 div#jd-content p.jd-deprecated-warning {
26 div#jd-content table.jd-linktable th {
38 div#jd-content table.jd-linktable td {
42 div#jd-content table.jd-linktable td p {
48 div#jd-content table.jd-linktable .jd-linkcol {
59 div#jd-content table.jd-linktable .jd-descrcol {
[all …]
Ddoclava-developer-docs.css239 #jd-header {
244 #jd-header h1 {
249 #jd-header .crumb {
255 #jd-header .crumb a,
256 #jd-header .crumb a:visited {
261 #jd-header .crumb a:hover {
265 #jd-header table {
270 #jd-header td {
276 #jd-header.guide-header {
282 #jd-descr {
[all …]
Ddoclava-developer-core.css130 #jd-content dd table,
131 #jd-content dd img {
362 #jd-content .green {
508 #search_filtered .jd-selected {
512 #search_filtered .jd-selected,
513 #search_filtered .jd-selected a {
521 .jd-autocomplete {
/external/libcxx/test/algorithms/alg.modifying.operations/alg.reverse/
Dreverse_copy.pass.cpp53 int jd[sd] = {-1}; in test() local
54 r = std::reverse_copy(InIter(id), InIter(id+sd), OutIter(jd)); in test()
55 assert(base(r) == jd+sd); in test()
56 assert(jd[0] == 3); in test()
57 assert(jd[1] == 2); in test()
58 assert(jd[2] == 1); in test()
59 assert(jd[3] == 0); in test()
/external/chromium_org/third_party/icu/source/i18n/
Dindiancal.cpp161 static int32_t* jdToGregorian(double jd, int32_t gregorianDate[3]) { in jdToGregorian() argument
164 wjd = uprv_floor(jd - 0.5) + 0.5; in jdToGregorian()
198 double start, jd; in IndianToJD() local
213 jd = start + (date - 1); in IndianToJD()
215 jd = start + leapMonth; in IndianToJD()
223 jd += m * 31; in IndianToJD()
227 jd += m * 30; in IndianToJD()
229 jd += date - 1; in IndianToJD()
232 return jd; in IndianToJD()
256 double jd = IndianToJD(eyear ,imonth, 1); in handleComputeMonthStart() local
[all …]
Dgregocal.cpp475 int32_t jd = Calendar::handleComputeJulianDay(bestField); in handleComputeJulianDay() local
479 jd >= fCutoverJulianDay) { in handleComputeJulianDay()
488 if ((fIsGregorian==TRUE) != (jd >= fCutoverJulianDay)) { /* cutoverJulianDay)) { */ in handleComputeJulianDay()
491 __FILE__, __LINE__, jd); in handleComputeJulianDay()
494 jd = Calendar::handleComputeJulianDay(bestField); in handleComputeJulianDay()
499 jd); in handleComputeJulianDay()
504 __FILE__, __LINE__, jd, fIsGregorian?"T":"F", fInvertGregorian?"T":"F", bestField); in handleComputeJulianDay()
513 __FILE__, __LINE__, fFields[bestField],jd, gregShift); in handleComputeJulianDay()
515 jd -= gregShift; in handleComputeJulianDay()
520 __FILE__, __LINE__, jd, weekShift); in handleComputeJulianDay()
[all …]
Dchnsecal.cpp802 int32_t jd = newMoon + kEpochStartAsJulianDay - 1 + dom; in offsetMonth() local
807 set(UCAL_JULIAN_DAY, jd-1); in offsetMonth()
816 set(UCAL_JULIAN_DAY, jd); in offsetMonth()
819 set(UCAL_JULIAN_DAY, jd); in offsetMonth()
/external/icu/icu4c/source/i18n/
Dindiancal.cpp161 static int32_t* jdToGregorian(double jd, int32_t gregorianDate[3]) { in jdToGregorian() argument
164 wjd = uprv_floor(jd - 0.5) + 0.5; in jdToGregorian()
198 double start, jd; in IndianToJD() local
213 jd = start + (date - 1); in IndianToJD()
215 jd = start + leapMonth; in IndianToJD()
223 jd += m * 31; in IndianToJD()
227 jd += m * 30; in IndianToJD()
229 jd += date - 1; in IndianToJD()
232 return jd; in IndianToJD()
256 double jd = IndianToJD(eyear ,imonth, 1); in handleComputeMonthStart() local
[all …]
Dgregocal.cpp475 int32_t jd = Calendar::handleComputeJulianDay(bestField); in handleComputeJulianDay() local
479 jd >= fCutoverJulianDay) { in handleComputeJulianDay()
488 if ((fIsGregorian==TRUE) != (jd >= fCutoverJulianDay)) { /* cutoverJulianDay)) { */ in handleComputeJulianDay()
491 __FILE__, __LINE__, jd); in handleComputeJulianDay()
494 jd = Calendar::handleComputeJulianDay(bestField); in handleComputeJulianDay()
499 jd); in handleComputeJulianDay()
504 __FILE__, __LINE__, jd, fIsGregorian?"T":"F", fInvertGregorian?"T":"F", bestField); in handleComputeJulianDay()
513 __FILE__, __LINE__, fFields[bestField],jd, gregShift); in handleComputeJulianDay()
515 jd -= gregShift; in handleComputeJulianDay()
520 __FILE__, __LINE__, jd, weekShift); in handleComputeJulianDay()
[all …]
/external/libcxx/test/algorithms/alg.modifying.operations/alg.unique/
Dunique_copy.pass.cpp53 int jd[sd] = {-1}; in test() local
54 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd)); in test()
55 assert(base(r) == jd + 2); in test()
56 assert(jd[0] == 0); in test()
57 assert(jd[1] == 1); in test()
Dunique_copy_pred.pass.cpp70 int jd[sd] = {-1}; in test() local
72 r = std::unique_copy(InIter(id), InIter(id+sd), OutIter(jd), count_equal()); in test()
73 assert(base(r) == jd + 2); in test()
74 assert(jd[0] == 0); in test()
75 assert(jd[1] == 1); in test()
/external/doclava/res/assets/templates/
Dhierarchy.cs4 .jd-hierarchy-spacer {
7 .jd-hierarchy-data {
61 </div><!-- end jd-content -->
Dpackages.cs32 </div><!-- end jd-content -->
Dkeywords.cs31 </div><!-- end jd-content -->
Dsample.cs27 </div><!-- end jd-content -->
Dclasses.cs35 </div><!-- end jd-content -->
Dsampleindex.cs42 </div><!-- end jd-content -->
/external/openssl/crypto/
Do_time.c236 static void julian_to_date(long jd, int *y, int *m, int *d);
309 static void julian_to_date(long jd, int *y, int *m, int *d) in julian_to_date() argument
311 long L = jd + 68569; in julian_to_date()
/external/chromium_org/third_party/boringssl/src/crypto/
Dtime_support.c84 static void julian_to_date(long jd, int *y, int *m, int *d) { in julian_to_date() argument
85 long L = jd + 68569; in julian_to_date()
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
DJPEGImageDecoder.cpp126 void init_source(j_decompress_ptr jd);
127 boolean fill_input_buffer(j_decompress_ptr jd);
128 void skip_input_data(j_decompress_ptr jd, long num_bytes);
129 void term_source(j_decompress_ptr jd);
663 void skip_input_data(j_decompress_ptr jd, long num_bytes) in skip_input_data() argument
665 decoder_source_mgr *src = (decoder_source_mgr *)jd->src; in skip_input_data()
677 void term_source(j_decompress_ptr jd) in term_source() argument
679 decoder_source_mgr *src = (decoder_source_mgr *)jd->src; in term_source()
/external/doclava/res/assets/customizations/assets/
Dcustomizations.css5 #search_filtered .jd-selected {
/external/clang/test/CodeGenObjC/
Dencode-test-5.m9 // RUN: grep jd.00 %t | count 1
/external/jdiff/src/jdiff/
DJDiff.java31 JDiff jd = new JDiff(); in start() local
32 return jd.startGeneration(root); in start()
/external/chromium_org/third_party/icu/source/test/intltest/
Dastrotst.cpp406 double jd = astro->getJulianDay() - 2447891.5; in TestBasics() local
408 if (jd == exp) { in TestBasics()
410 logln(d3->format(cal3->getTime(status),s) + " => " + jd); in TestBasics()
413 errln("FAIL: " + d3->format(cal3->getTime(status), s) + " => " + jd + in TestBasics()
/external/icu/icu4c/source/test/intltest/
Dastrotst.cpp404 double jd = astro->getJulianDay() - 2447891.5; in TestBasics() local
406 if (jd == exp) { in TestBasics()
408 logln(d3->format(cal3->getTime(status),s) + " => " + jd); in TestBasics()
411 errln("FAIL: " + d3->format(cal3->getTime(status), s) + " => " + jd + in TestBasics()

123