Searched refs:second (Results 1 - 25 of 149) sorted by path

123456

/frameworks/av/camera/
H A DCameraParameters.cpp297 static int parse_pair(const char *str, int *first, int *second, char delim, argument
309 // Find the second integer, immediately after the delimeter.
313 *second = h;
H A DCameraParameters2.cpp185 static int parse_pair(const char *str, int *first, int *second, char delim,
197 // Find the second integer, immediately after the delimeter.
201 *second = h;
/frameworks/av/media/img_utils/include/img_utils/
H A DPair.h32 S second; member in class:android::img_utils::Pair
36 Pair(const Pair& o) : first(o.first), second(o.second) {}
38 Pair(const F& f, const S& s) : first(f), second(s) {}
/frameworks/av/media/mtp/
H A DMtpUtils.cpp34 second (00-59). The ".s" is optional, and represents tenths of a second.
38 int year, month, day, hour, minute, second; local
42 &year, &month, &day, &hour, &minute, &second) != 6)
45 // skip optional tenth of second
55 tm.tm_sec = second;
/frameworks/base/core/java/android/app/
H A DActivityOptions.java505 String sharedElementName = sharedElement.second;
H A DActivityThread.java1508 onNewActivityOptions(pair.first, pair.second);
2351 // the "debug.use-second-display" system property as a substring, then show
2353 String pkgName = SystemProperties.get("debug.second-display.pkg");
H A DBackStackRecord.java613 targetNames.add(sharedElements[i].second);
H A DDownloadManager.java747 String headerString = header.first + ": " + header.second;
/frameworks/base/core/java/android/content/pm/
H A DPackageParser.java1315 return new ApkLite(codePath, packageSplit.first, packageSplit.second, versionCode,
1353 splitName = packageSplit.second;
/frameworks/base/core/java/android/database/
H A DDefaultDatabaseErrorHandler.java86 deleteDatabaseFile(p.second);
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteDatabase.java2149 Log.e(TAG, "PRAGMA integrity_check on " + p.second + " returned: " + rslt);
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DRequestThreadManager.java211 long timestamp = captureInfo.second;
375 Size outSize = outPair.second;
726 nextBurst.first.produceRequestHolders(nextBurst.second);
H A DSurfaceTextureRenderer.java625 Size surfaceSize = p.second;
725 LegacyCameraDevice.setNextTimestamp(holder.surface, captureHolder.second);
751 LegacyCameraDevice.setNextTimestamp(holder.surface, captureHolder.second);
/frameworks/base/core/java/android/hardware/camera2/marshal/impl/
H A DMarshalQueryablePair.java94 } else if (value.second == null) {
95 throw new UnsupportedOperationException("Pair#second must not be null");
99 mNestedTypeMarshalerSecond.marshal(value.second, buffer);
105 T2 second = mNestedTypeMarshalerSecond.unmarshal(buffer);
108 return mConstructor.newInstance(first, second);
140 int secondSize = mNestedTypeMarshalerSecond.calculateMarshalSize(value.second);
/frameworks/base/core/java/android/hardware/hdmi/
H A DHdmiRecordSources.java742 private static int threeFieldsToSixBytes(int first, int second, int third, byte[] data, argument
745 shortToByteArray((short) second, data, index + 2);
/frameworks/base/core/java/android/net/
H A DIpPrefix.java107 this.prefixLength = ipAndMask.second;
H A DLinkAddress.java188 init(ipAndMask.first, ipAndMask.second, flags, scope);
H A DNetworkPolicyManager.java200 cycle.hour = cycle.minute = cycle.second = 0;
207 lastMonth.hour = lastMonth.minute = lastMonth.second = 0;
230 cycle.hour = cycle.minute = cycle.second = 0;
237 nextMonth.hour = nextMonth.minute = nextMonth.second = 0;
251 * exist, it snaps to last second of current month.
257 // cycle day isn't valid this month; snap to last second of month
260 time.second = -1;
/frameworks/base/core/java/android/text/format/
H A DTime.java31 * a moment in time, specified with second precision. It is modelled after
46 * that was skipped due to a DST transition, will result in a date in 1969 (i.e. -1, or 1 second
75 * True if this is an allDay event. The hour, minute, second fields are
83 public int second; field in class:Time
303 this.second = 0;
321 * @param b second {@code Time} instance to compare
324 * hour}, {@code minute}, and {@code second} are not 0.
379 * <code>minute</code>, and <code>second</code> fields are set to zero;
464 second = n;
475 second
787 set(int second, int minute, int hour, int monthDay, int month, int year) argument
[all...]
/frameworks/base/core/java/android/util/
H A DPair.java28 public final S second; field in class:Pair
34 * @param second the second object in the pair
36 public Pair(F first, S second) { argument
38 this.second = second;
55 return Objects.equal(p.first, first) && Objects.equal(p.second, second);
65 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second
[all...]
/frameworks/base/core/java/android/view/
H A DFocusFinder.java392 * @param rect2 The second rectangle
623 public int compare(View first, View second) { argument
624 if (first == second) {
629 getRect(second, mSecondRect);
H A DViewRootImpl.java302 // Variables to track frames per second, enabled via DEBUG_FPS flag
2041 * to blank containers, and force a second request/measure/layout pass in this frame. If
2042 * more requestLayout() calls are received during that second layout pass, we post those
2047 * next frame (if it is a request during the second layout pass).</p>
2062 // Let the request proceed normally; it will be processed in a second layout pass
2066 // Don't let the request proceed during the second layout pass.
2099 // the second pass, which may result in posting those requests to the next
2108 " during layout: running second layout pass");
2119 // layout flags, since requests happening during the second pass get noop'd
2123 // Post second
6322 getCommonPredecessor(View first, View second) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAnalogClock.java242 int second = mCalendar.second;
244 mMinutes = minute + second / 60.0f;
H A DDateTimeView.java101 t.second = 0;
119 t.second = 0;
133 t.second = 0;
H A DGridLayout.java2300 values[i] = get(i).second;

Completed in 576 milliseconds

123456