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

1234567891011>>

/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/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/effects/
H A DSkMergeImageFilter.cpp18 sk_sp<SkImageFilter> second,
21 sk_sp<SkImageFilter> inputs[2] = { first, second };
17 Make(sk_sp<SkImageFilter> first, sk_sp<SkImageFilter> second, SkBlendMode mode, const CropRect* cropRect) argument
/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/parsing/
H A Dduplicate-finder.cc97 bool DuplicateFinder::Match(void* first, void* second) { argument
104 byte* s2 = reinterpret_cast<byte*>(second);
/external/v8/src/regexp/
H A Dregexp-utils.cc162 const uint16_t second = string->Get(index + 1); local
163 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
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_linux_test.cc132 static bool Includes(std::vector<pid_t> first, std::vector<pid_t> second) { argument
134 std::sort(second.begin(), second.end());
136 second.begin(), second.end());
/external/droiddriver/src/io/appium/droiddriver/finders/
H A DBy.java175 * Returns a finder that uses the UiElement returned by first Finder as context for the second
176 * Finder. <p> typically first Finder finds the ancestor, then second Finder finds the target
179 * case, allOf(second, withAncesor(first)) may work.
181 public static ChainFinder chain(Finder first, Finder second) { argument
182 return new ChainFinder(first, second);
/external/eigen/unsupported/Eigen/CXX11/src/Tensor/
H A DTensorMeta.h23 const T2& choose(Cond<false>, const T1&, const T2& second) { argument
24 return second;
113 V second; member in struct:Eigen::Tuple
119 Tuple() : first(), second() {}
122 Tuple(const U& f, const V& s) : first(f), second(s) {}
128 second = rhs.second;
136 swap(second, rhs.second);
143 return (x.first == y.first && x.second
164 Idx second; member in struct:Eigen::IndexPair
[all...]
/external/eigen/unsupported/Eigen/src/BVH/
H A DKdBVH.h24 vector_int_pair(const VectorType &v, int i) : first(v), second(i) {}
27 int second; member in struct:Eigen::internal::vector_int_pair
124 objects[i] = tmp[objCenters[i].second];
146 if(children[idx + 1] < numBoxes) { //second index is always bigger
155 } else { //if the first child is a volume and the second is an object
187 boxes.push_back(objBoxes[objCenters[from].second].merged(objBoxes[objCenters[from + 1].second]));
197 boxes.push_back(boxes[idx1].merged(objBoxes[objCenters[mid].second]));
/external/fsck_msdos/
H A Dfat.c408 struct fatEntry *second, int fatnum)
414 if (first[cl].next != second[cl].next)
415 ret |= clustdiffer(cl, &first[cl].next, &second[cl].next, fatnum);
407 comparefat(struct bootblock *boot, struct fatEntry *first, struct fatEntry *second, int fatnum) argument

Completed in 3999 milliseconds

1234567891011>>