/external/chromium/third_party/icu/source/test/intltest/ |
astrotst.cpp | 7 /* Test CalendarAstronomer for C++ */ 62 astro = new CalendarAstronomer(); 98 CalendarAstronomer::Equatorial result; 123 const CalendarAstronomer::Equatorial& result = astro->getMoonPosition(); 138 CalendarAstronomer::Equatorial result; 139 astro->eclipticToEquatorial(result, 139.686111 * CalendarAstronomer::PI / 180.0, 4.875278* CalendarAstronomer::PI / 180.0); 153 CalendarAstronomer *myastro = new CalendarAstronomer(then); 159 CalendarAstronomer *myastro2 = new CalendarAstronomer(laLong, laLat) [all...] |
astrotst.h | 44 CalendarAstronomer *astro;
|
/external/icu4c/test/intltest/ |
astrotst.cpp | 7 /* Test CalendarAstronomer for C++ */ 62 astro = new CalendarAstronomer(); 98 CalendarAstronomer::Equatorial result; 123 const CalendarAstronomer::Equatorial& result = astro->getMoonPosition(); 138 CalendarAstronomer::Equatorial result; 139 astro->eclipticToEquatorial(result, 139.686111 * CalendarAstronomer::PI / 180.0, 4.875278* CalendarAstronomer::PI / 180.0); 153 CalendarAstronomer *myastro = new CalendarAstronomer(then); 159 CalendarAstronomer *myastro2 = new CalendarAstronomer(laLong, laLat) [all...] |
astrotst.h | 44 CalendarAstronomer *astro;
|
/external/chromium/third_party/icu/source/i18n/ |
astro.cpp | 104 const double CalendarAstronomer::SYNODIC_MONTH = 29.530588853; 202 const double CalendarAstronomer::PI = 3.14159265358979323846; 204 #define CalendarAstronomer_PI2 (CalendarAstronomer::PI*2.0) 205 #define RAD_HOUR ( 12 / CalendarAstronomer::PI ) // radians -> hours 206 #define DEG_RAD ( CalendarAstronomer::PI / 180 ) // degrees -> radians 207 #define RAD_DEG ( 180 / CalendarAstronomer::PI ) // radians -> degrees 223 return normalize(angle, CalendarAstronomer::PI * 2.0); 230 return normalize(angle + CalendarAstronomer::PI, CalendarAstronomer::PI * 2.0) - CalendarAstronomer::PI [all...] |
astro.h | 21 * <code>CalendarAstronomer</code> is a class that can perform the calculations to 29 * at a given moment in time. Accordingly, each <code>CalendarAstronomer</code> 54 class U_I18N_API CalendarAstronomer : public UMemory { 72 * @see CalendarAstronomer.Equatorial 73 * @see CalendarAstronomer.Horizon 141 * @see CalendarAstronomer.Ecliptic 142 * @see CalendarAstronomer.Horizon 215 * @see CalendarAstronomer.Ecliptic 216 * @see CalendarAstronomer.Equatorial 288 * Construct a new <code>CalendarAstronomer</code> object that is initialized t [all...] |
chnsecal.cpp | 23 #include "astro.h" // CalendarAstronomer 52 static U_NAMESPACE_QUALIFIER CalendarAstronomer *gChineseCalendarAstro = NULL; 74 * >= 1 and < CalendarAstronomer.SYNODIC_MONTH. 397 (int) (CalendarAstronomer::SYNODIC_MONTH * (m - 0.5)); 479 gChineseCalendarAstro = new CalendarAstronomer(); 483 UDate solarLong = gChineseCalendarAstro->getSunTime(CalendarAstronomer::WINTER_SOLSTICE(), TRUE); 509 gChineseCalendarAstro = new CalendarAstronomer(); 513 UDate newMoon = gChineseCalendarAstro->getMoonTime(CalendarAstronomer::NEW_MOON(), after); 527 double roundme = ((day2 - day1) / CalendarAstronomer::SYNODIC_MONTH); 541 gChineseCalendarAstro = new CalendarAstronomer(); [all...] |
islamcal.cpp | 23 #include "astro.h" // CalendarAstronomer 56 static U_NAMESPACE_QUALIFIER CalendarAstronomer *gIslamicCalendarAstro = NULL; 235 + uprv_floor(month * CalendarAstronomer::SYNODIC_MONTH - 1) * kOneDay; 276 * calls CalendarAstronomer.moonAge, converts to degrees, 288 gIslamicCalendarAstro = new CalendarAstronomer(); 300 age = age * 180 / CalendarAstronomer::PI; 406 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH); 408 startDate = uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH - 1);
|
indiancal.cpp | 17 #include "astro.h" // CalendarAstronomer
|
islamcal.h | 266 * calls CalendarAstronomer.moonAge, converts to degrees,
|
hebrwcal.cpp | 23 #include "astro.h" // CalendarAstronomer
|
/external/icu4c/i18n/ |
astro.cpp | 104 const double CalendarAstronomer::SYNODIC_MONTH = 29.530588853; 202 const double CalendarAstronomer::PI = 3.14159265358979323846; 204 #define CalendarAstronomer_PI2 (CalendarAstronomer::PI*2.0) 205 #define RAD_HOUR ( 12 / CalendarAstronomer::PI ) // radians -> hours 206 #define DEG_RAD ( CalendarAstronomer::PI / 180 ) // degrees -> radians 207 #define RAD_DEG ( 180 / CalendarAstronomer::PI ) // radians -> degrees 223 return normalize(angle, CalendarAstronomer::PI * 2.0); 230 return normalize(angle + CalendarAstronomer::PI, CalendarAstronomer::PI * 2.0) - CalendarAstronomer::PI [all...] |
astro.h | 21 * <code>CalendarAstronomer</code> is a class that can perform the calculations to 29 * at a given moment in time. Accordingly, each <code>CalendarAstronomer</code> 54 class U_I18N_API CalendarAstronomer : public UMemory { 72 * @see CalendarAstronomer.Equatorial 73 * @see CalendarAstronomer.Horizon 141 * @see CalendarAstronomer.Ecliptic 142 * @see CalendarAstronomer.Horizon 215 * @see CalendarAstronomer.Ecliptic 216 * @see CalendarAstronomer.Equatorial 288 * Construct a new <code>CalendarAstronomer</code> object that is initialized t [all...] |
chnsecal.cpp | 23 #include "astro.h" // CalendarAstronomer 52 static U_NAMESPACE_QUALIFIER CalendarAstronomer *gChineseCalendarAstro = NULL; 74 * >= 1 and < CalendarAstronomer.SYNODIC_MONTH. 397 (int) (CalendarAstronomer::SYNODIC_MONTH * (m - 0.5)); 479 gChineseCalendarAstro = new CalendarAstronomer(); 483 UDate solarLong = gChineseCalendarAstro->getSunTime(CalendarAstronomer::WINTER_SOLSTICE(), TRUE); 509 gChineseCalendarAstro = new CalendarAstronomer(); 513 UDate newMoon = gChineseCalendarAstro->getMoonTime(CalendarAstronomer::NEW_MOON(), after); 527 double roundme = ((day2 - day1) / CalendarAstronomer::SYNODIC_MONTH); 541 gChineseCalendarAstro = new CalendarAstronomer(); [all...] |
islamcal.cpp | 23 #include "astro.h" // CalendarAstronomer 56 static U_NAMESPACE_QUALIFIER CalendarAstronomer *gIslamicCalendarAstro = NULL; 235 + uprv_floor(month * CalendarAstronomer::SYNODIC_MONTH) * kOneDay; 276 * calls CalendarAstronomer.moonAge, converts to degrees, 288 gIslamicCalendarAstro = new CalendarAstronomer(); 300 age = age * 180 / CalendarAstronomer::PI; 406 int32_t months = (int32_t)uprv_floor((double)days / CalendarAstronomer::SYNODIC_MONTH); 408 startDate = uprv_floor(months * CalendarAstronomer::SYNODIC_MONTH);
|
indiancal.cpp | 17 #include "astro.h" // CalendarAstronomer
|
islamcal.h | 266 * calls CalendarAstronomer.moonAge, converts to degrees,
|
hebrwcal.cpp | 23 #include "astro.h" // CalendarAstronomer
|
/external/icu4c/common/unicode/ |
urename.h | [all...] |
/external/webkit/JavaScriptCore/icu/unicode/ |
urename.h | [all...] |
/external/webkit/JavaScriptGlue/icu/unicode/ |
urename.h | [all...] |
/external/webkit/WebCore/icu/unicode/ |
urename.h | [all...] |
/external/webkit/WebKit/mac/icu/unicode/ |
urename.h | [all...] |
/external/chromium/third_party/icu/public/common/unicode/ |
urename.h | [all...] |