Home | History | Annotate | Download | only in unicode

Lines Matching full:endl

84  *     cout << "Current Time" << endl;
98 * cout << "ERA: " << calendar->get( UCAL_ERA, success ) << endl;
99 * cout << "YEAR: " << calendar->get( UCAL_YEAR, success ) << endl;
100 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl;
101 * cout << "WEEK_OF_YEAR: " << calendar->get( UCAL_WEEK_OF_YEAR, success ) << endl;
102 * cout << "WEEK_OF_MONTH: " << calendar->get( UCAL_WEEK_OF_MONTH, success ) << endl;
103 * cout << "DATE: " << calendar->get( UCAL_DATE, success ) << endl;
104 * cout << "DAY_OF_MONTH: " << calendar->get( UCAL_DAY_OF_MONTH, success ) << endl;
105 * cout << "DAY_OF_YEAR: " << calendar->get( UCAL_DAY_OF_YEAR, success ) << endl;
106 * cout << "DAY_OF_WEEK: " << calendar->get( UCAL_DAY_OF_WEEK, success ) << endl;
107 * cout << "DAY_OF_WEEK_IN_MONTH: " << calendar->get( UCAL_DAY_OF_WEEK_IN_MONTH, success ) << endl;
108 * cout << "AM_PM: " << calendar->get( UCAL_AM_PM, success ) << endl;
109 * cout << "HOUR: " << calendar->get( UCAL_HOUR, success ) << endl;
110 * cout << "HOUR_OF_DAY: " << calendar->get( UCAL_HOUR_OF_DAY, success ) << endl;
111 * cout << "MINUTE: " << calendar->get( UCAL_MINUTE, success ) << endl;
112 * cout << "SECOND: " << calendar->get( UCAL_SECOND, success ) << endl;
113 * cout << "MILLISECOND: " << calendar->get( UCAL_MILLISECOND, success ) << endl;
114 * cout << "ZONE_OFFSET: " << (calendar->get( UCAL_ZONE_OFFSET, success )/(60*60*1000)) << endl;
115 * cout << "DST_OFFSET: " << (calendar->get( UCAL_DST_OFFSET, success )/(60*60*1000)) << endl;
117 * cout << "Current Time, with hour reset to 3" << endl;
120 * cout << "ERA: " << calendar->get( UCAL_ERA, success ) << endl;
121 * cout << "YEAR: " << calendar->get( UCAL_YEAR, success ) << endl;
122 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl;
123 * cout << "WEEK_OF_YEAR: " << calendar->get( UCAL_WEEK_OF_YEAR, success ) << endl;
124 * cout << "WEEK_OF_MONTH: " << calendar->get( UCAL_WEEK_OF_MONTH, success ) << endl;
125 * cout << "DATE: " << calendar->get( UCAL_DATE, success ) << endl;
126 * cout << "DAY_OF_MONTH: " << calendar->get( UCAL_DAY_OF_MONTH, success ) << endl;
127 * cout << "DAY_OF_YEAR: " << calendar->get( UCAL_DAY_OF_YEAR, success ) << endl;
128 * cout << "DAY_OF_WEEK: " << calendar->get( UCAL_DAY_OF_WEEK, success ) << endl;
129 * cout << "DAY_OF_WEEK_IN_MONTH: " << calendar->get( UCAL_DAY_OF_WEEK_IN_MONTH, success ) << endl;
130 * cout << "AM_PM: " << calendar->get( UCAL_AM_PM, success ) << endl;
131 * cout << "HOUR: " << calendar->get( UCAL_HOUR, success ) << endl;
132 * cout << "HOUR_OF_DAY: " << calendar->get( UCAL_HOUR_OF_DAY, success ) << endl;
133 * cout << "MINUTE: " << calendar->get( UCAL_MINUTE, success ) << endl;
134 * cout << "SECOND: " << calendar->get( UCAL_SECOND, success ) << endl;
135 * cout << "MILLISECOND: " << calendar->get( UCAL_MILLISECOND, success ) << endl;
136 * cout << "ZONE_OFFSET: " << (calendar->get( UCAL_ZONE_OFFSET, success )/(60*60*1000)) << endl; // in hours
137 * cout << "DST_OFFSET: " << (calendar->get( UCAL_DST_OFFSET, success )/(60*60*1000)) << endl; // in hours
140 * cout << "An error occured. success=" << u_errorName(success) << endl;