Searched defs:second (Results 76 - 100 of 340) sorted by relevance

1234567891011>>

/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DJapaneseCalendar.java189 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
192 int minute, int second)
194 super(year, month, date, hour, minute, second);
191 JapaneseCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DPersianCalendar.java245 * @param second the value used to set the {@link #SECOND SECOND} time field
254 int minute, int second)
262 this.set(Calendar.SECOND, second);
253 PersianCalendar(int year, int month, int date, int hour, int minute, int second) argument
/external/icu/icu4c/source/common/
H A Dfilterednormalizer2.cpp90 const UnicodeString &second,
92 return normalizeSecondAndAppend(first, second, TRUE, errorCode);
97 const UnicodeString &second,
99 return normalizeSecondAndAppend(first, second, FALSE, errorCode);
104 const UnicodeString &second,
108 uprv_checkCanGetBuffer(second, errorCode);
112 if(&first==&second) {
118 return normalize(second, first, errorCode);
120 return first=second;
123 // merge the in-filter suffix of the first string with the in-filter prefix of the second
89 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
96 append(UnicodeString &first, const UnicodeString &second, UErrorCode &errorCode) const argument
103 normalizeSecondAndAppend(UnicodeString &first, const UnicodeString &second, UBool doNormalize, UErrorCode &errorCode) const argument
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DFilteredNormalizer2.java73 StringBuilder first, CharSequence second) {
74 return normalizeSecondAndAppend(first, second, true);
81 public StringBuilder append(StringBuilder first, CharSequence second) { argument
82 return normalizeSecondAndAppend(first, second, false);
257 private StringBuilder normalizeSecondAndAppend(StringBuilder first, CharSequence second, argument
259 if(first==second) {
264 return normalize(second, first);
266 return first.append(second);
269 // merge the in-filter suffix of the first string with the in-filter prefix of the second
270 int prefixLimit=set.span(second,
72 normalizeSecondAndAppend( StringBuilder first, CharSequence second) argument
[all...]
H A DNormalizer2.java258 * Appends the normalized form of the second string to the first string
261 * The first and second strings must be different objects.
263 * @param second string, will be normalized
268 StringBuilder first, CharSequence second);
271 * Appends the second string to the first string
274 * The first and second strings must be different objects.
276 * @param second string, should be normalized
280 public abstract StringBuilder append(StringBuilder first, CharSequence second); argument
267 normalizeSecondAndAppend( StringBuilder first, CharSequence second) argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DCECalendar.java155 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
158 int minute, int second)
161 this.set(year, month, date, hour, minute, second);
157 CECalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DCopticCalendar.java228 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
232 int minute, int second) {
233 super(year, month, date, hour, minute, second);
231 CopticCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DJapaneseCalendar.java198 * @param second The value used to set the calendar's {@link #SECOND SECOND} time field.
202 int minute, int second)
204 super(year, month, date, hour, minute, second);
201 JapaneseCalendar(int year, int month, int date, int hour, int minute, int second) argument
H A DPersianCalendar.java243 * @param second the value used to set the {@link #SECOND SECOND} time field
252 int minute, int second)
260 this.set(Calendar.SECOND, second);
251 PersianCalendar(int year, int month, int date, int hour, int minute, int second) argument
/external/libchrome/base/time/
H A Dtime_mac.cc116 // Core Foundation uses a double second count since 2001-01-01 00:00:00 UTC.
184 exploded.day_of_month, exploded.hour, exploded.minute, exploded.second,
228 int second, day_of_week; local
235 &exploded->minute, &second, &day_of_week);
237 exploded->second = floor(second);
/external/ltp/testcases/realtime/func/sched_jitter/
H A Dsched_jitter.c86 unsigned long long first, second; local
89 second = (unsigned long long)b.tv_sec * NSEC_PER_SEC + b.tv_nsec;
90 return first - second;
/external/pdfium/third_party/libtiff/
H A Dtif_aux.c37 _TIFFMultiply32(TIFF* tif, uint32 first, uint32 second, const char* where) argument
39 uint32 bytes = first * second;
41 if (second && bytes / second != first) {
50 _TIFFMultiply64(TIFF* tif, uint64 first, uint64 second, const char* where) argument
52 uint64 bytes = first * second;
54 if (second && bytes / second != first) {
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUnknownFieldSetLite.java74 * {@code second}.
76 static UnknownFieldSetLite mutableCopyOf(UnknownFieldSetLite first, UnknownFieldSetLite second) { argument
77 int count = first.count + second.count;
79 System.arraycopy(second.tags, 0, tags, first.count, second.count);
81 System.arraycopy(second.objects, 0, objects, first.count, second.count);
/external/python/cpython2/Modules/_ctypes/libffi/src/x86/
H A Dwin64.S40 jmp second
44 second: label
73 mov rdx, rsp ; stack is second parameter
296 mov %rsp, %rdx # stack is second parameter
/external/python/cpython2/Python/
H A Ddynload_win.c33 int first, second; local
37 second = tolower(*string2);
40 } while (first && first == second);
42 return (first - second);
98 (in the second table entry). Based on the header type, we
124 /* We have at least 2 tables - the import table is the second
/external/skia/src/core/
H A DSkPathEffect.cpp66 str->appendf(" second: ");
153 (e.g. first(path) + second(path))
154 The reference counts for first and second are both incremented in the constructor,
157 static sk_sp<SkPathEffect> Make(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second) { argument
159 return second;
161 if (!second) {
164 return sk_sp<SkPathEffect>(new SkSumPathEffect(first, second));
183 SkSumPathEffect(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second) argument
184 : INHERITED(first, second) {}
211 sk_sp<SkPathEffect> SkPathEffect::MakeSum(sk_sp<SkPathEffect> first, sk_sp<SkPathEffect> second) { argument
[all...]
H A DSkRecordPattern.h108 // - first, second, third, ... return the data stored by their respective matchers in the pattern.
142 template <typename T> T* second() { return fRest.template first<T>(); } function in class:SkRecords::Pattern
143 template <typename T> T* third() { return fRest.template second<T>(); }
/external/skia/src/pathops/
H A DSkPathOpsQuad.h17 const SkDQuad& second() const { return (const SkDQuad&) pts[2]; } function in struct:SkDQuadPair
/external/skia/tools/viewer/sk_app/
H A DCommandSet.cpp87 bool CommandSet::compareCommandKey(const Command& first, const Command& second) { argument
88 return SK_strcasecmp(first.fKeyName.c_str(), second.fKeyName.c_str()) < 0;
91 bool CommandSet::compareCommandGroup(const Command& first, const Command& second) { argument
92 return SK_strcasecmp(first.fGroup.c_str(), second.fGroup.c_str()) < 0;
/external/v8/src/regexp/
H A Dregexp-utils.cc163 const uint16_t second = string->Get(index + 1); local
164 if (second >= 0xDC00 && second <= 0xDFFF) {
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPDateTime.java27 * <li> nanoSecond - The nano seconds within a second. <em>Note:</em> if the XMPDateTime is
67 /** @return Returns the second in the range 0..59. */
70 /** @param second Sets the second in the range 0..59. */
71 void setSecond(int second); argument
75 * Nanoseconds within a second, often left as zero?
92 * @return Returns a <code>Calendar</code> (only with milli second precision). <br>
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPDateTimeImpl.java25 * seconds. The <code>nanoSeconds</code> convers only the resolution beyond a milli second.
42 private int second = 0; field in class:XMPDateTimeImpl
85 this.second = intCalendar.get(Calendar.SECOND);
107 this.second = calendar.get(Calendar.SECOND);
242 return second;
249 public void setSecond(int second) argument
251 this.second = Math.min(Math.abs(second), 59);
324 calendar.set(Calendar.SECOND, second);
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DDateTest.java100 int minute, int second) {
101 aCal.set(year, month, date, hour, minute, second);
99 getTime(int year, int month, int date, int hour, int minute, int second) argument
/external/clang/test/CodeGenCXX/
H A Dconstructor-init.cpp185 X second[4]; member in struct:PR10720::pair2
231 int second[4]; member in struct:PR10720::pair
H A Dthunks.cpp149 X second; member in struct:Test6::P

Completed in 573 milliseconds

1234567891011>>