Searched refs:second (Results 1 - 25 of 41) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/
H A DSumPathEffect.java23 * (e.g. first(path) + second(path))
25 public SumPathEffect(PathEffect first, PathEffect second) { argument
27 second.native_instance);
30 private static native int nativeCreate(int first, int second); argument
/frameworks/base/core/java/android/util/
H A DPair.java26 public final S second; field in class:Pair
32 * @param second the second object in the pair
34 public Pair(F first, S second) { argument
36 this.second = second;
53 return first.equals(other.first) && second.equals(other.second);
63 result = 31 * result + second.hashCode();
70 * @param b the second objec
[all...]
/frameworks/base/test-runner/src/android/test/
H A DViewAsserts.java114 * @param second The second view
116 static public void assertBaselineAligned(View first, View second) { argument
121 second.getLocationOnScreen(xy);
122 int secondTop = xy[1] + second.getBaseline();
132 * @param second The second view
134 static public void assertRightAligned(View first, View second) { argument
139 second.getLocationOnScreen(xy);
140 int secondRight = xy[0] + second
153 assertRightAligned(View first, View second, int margin) argument
171 assertLeftAligned(View first, View second) argument
190 assertLeftAligned(View first, View second, int margin) argument
208 assertBottomAligned(View first, View second) argument
227 assertBottomAligned(View first, View second, int margin) argument
245 assertTopAligned(View first, View second) argument
264 assertTopAligned(View first, View second, int margin) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DSumPathEffect_Delegate.java65 /*package*/ static int nativeCreate(int first, int second) { argument
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListItemRequestRectAboveThinFirstItemTest.java51 // having the second item call requestRectangleOnScreen with a rect above
59 final View second = mListView.getChildAt(1);
61 second.getDrawingRect(rect);
62 rect.offset(0, -2 * second.getBottom());
/frameworks/base/core/tests/coretests/src/android/view/accessibility/
H A DRecycleAccessibilityEventTest.java77 AccessibilityEvent second = AccessibilityEvent.obtain();
78 assertEquals(first, second);
/frameworks/base/core/java/com/android/internal/http/
H A DHttpDateTime.java77 this.second = s;
82 int second; field in class:HttpDateTime.TimeOfDay
119 time.set(timeOfDay.second, timeOfDay.minute, timeOfDay.hour, date,
220 int second = (timeString.charAt(i++) - '0') * 10
223 return new TimeOfDay(hour, minute, second);
/frameworks/base/core/java/android/text/format/
H A DTime.java27 * a moment in time, specified with second precision. It is modelled after
45 * True if this is an allDay event. The hour, minute, second fields are
53 public int second; field in class:Time
265 this.second = 0;
393 * <code>minute</code>, and <code>second</code> fields are set to zero;
447 * {@link #minute}, and {@link #second} fields are set to zero.
553 this.second = that.second;
569 public void set(int second, int minute, int hour, int monthDay, int month, int year) { argument
571 this.second
[all...]
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DRetryManager.java68 * <li>Infinite number of retries with the first one at 1000, the second at 2000 all
188 defaultRandomization = value.second;
195 mMaxRetryCount = value.second;
212 rr.mDelayTime = value.second;
220 rr.mRandomizationTime = value.second;
355 + retVal.first + ", " + retVal.second);
/frameworks/base/core/jni/android/graphics/
H A DPathEffect.cpp24 SkPathEffect* first, SkPathEffect* second) {
25 return new SkSumPathEffect(first, second);
23 Sum_constructor(JNIEnv* env, jobject, SkPathEffect* first, SkPathEffect* second) argument
/frameworks/base/media/libdrm/mobile1/src/jni/
H A Ddrm1_jni.c29 #define MS_PER_SECOND 1000 /* Milliseconds per second */
308 * \param second the second (0 - 59)
315 uint32_t hour, uint32_t minute, uint32_t second)
327 && second < 60);
337 SECONDS_PER_HOUR * hour + SECONDS_PER_MINUTE * minute + second));
349 * <code>time = hour * 10000 + minute * 100 + second</code>
355 int32_t year, month, day, hour, minute, second; local
362 second = time % 100;
374 if (second <
313 mkgmtime( uint32_t year, uint32_t month, uint32_t day, uint32_t hour, uint32_t minute, uint32_t second) argument
398 int32_t year, month, day, hour, minute, second; local
[all...]
/frameworks/base/core/tests/coretests/src/android/text/format/
H A DTimeTest.java37 // + ':' + t.second
368 t.hour != 9 || t.minute != 50 || t.second != 50 ||
375 t.hour != 9 || t.minute != 50 || t.second != 50 ||
382 t.hour != 9 || t.minute != 50 || t.second != 50 ||
389 t.hour != 9 || t.minute != 50 || t.second != 50 ||
396 t.hour != 9 || t.minute != 50 || t.second != 50 ||
404 t.hour != 10 || t.minute != 55 || t.second != 50 ||
412 t.hour != 10 || t.minute != 55 || t.second != 50 ||
594 assertEquals(0, time.second);
/frameworks/base/opengl/libs/ETC1/
H A Detc1.cpp168 etc1_uint32 low, bool second, bool flipped) {
171 if (second) {
248 etc1_byte* pColors, bool flipped, bool second) {
255 if (second) {
272 if (second) {
336 etc_compressed* pCompressed, bool flipped, bool second,
341 if (second) {
356 if (second) {
167 decode_subblock(etc1_byte* pOut, int r, int g, int b, const int* table, etc1_uint32 low, bool second, bool flipped) argument
247 etc_average_colors_subblock(const etc1_byte* pIn, etc1_uint32 inMask, etc1_byte* pColors, bool flipped, bool second) argument
335 etc_encode_subblock_helper(const etc1_byte* pIn, etc1_uint32 inMask, etc_compressed* pCompressed, bool flipped, bool second, const etc1_byte* pBaseColors, const int* pModifierTable) argument
/frameworks/base/core/java/android/widget/
H A DAnalogClock.java226 int second = mCalendar.second;
228 mMinutes = minute + second / 60.0f;
H A DDateTimeView.java97 t.second = 0;
115 t.second = 0;
129 t.second = 0;
/frameworks/base/telephony/java/android/telephony/
H A DSmsCbMessage.java418 int second = IccUtils.gsmBcdByteToInt(pdu[11]);
440 time.second = second;
/frameworks/base/tools/obbtool/
H A DMain.cpp171 unsigned char first, second; local
173 if (!fromHex(h2, &second)) return false;
174 *b = (first << 4) | second;
/frameworks/base/tools/localize/
H A DValuesFile.cpp204 result.insert(it->second.begin(), it->second.end());
227 const set<StringResource>& items = it->second;
H A Dlocalize_test.cpp132 const Settings& setting = it->second;
154 const Settings& setting = it->second;
H A DXMLHandler.cpp81 return it->second;
93 if (it->second == "") {
96 return it->second + ":";
108 if (it->second == "xml") {
112 if (it->second == "") {
116 attr.name += it->second;
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDeviceProfileState.java825 String second;
827 second = getStringValue(INIT_INCOMING_REJECT_TIMER);
829 second = mIncomingConnections.second;
832 mIncomingConnections = new Pair(value, second);
850 String value = mIncomingConnections.second;
860 String value = mIncomingConnections.second;
972 // Many connect only 1 profile - and they connect the second profile on
990 // might result in the connection of the A2DP profile (if the second
991 // headset is slower) and thus the A2DP profile on the second headse
[all...]
/frameworks/base/libs/camera/
H A DCameraParameters.cpp268 static int parse_pair(const char *str, int *first, int *second, char delim, argument
280 // Find the second integer, immediately after the delimeter.
284 *second = h;
/frameworks/base/core/java/android/content/
H A DSyncManager.java702 if (previousSettings == null || previousSettings.second <= 0) {
708 newDelayInMs = previousSettings.second * 2;
1109 long nextPeriodicTime = lastPeriodicTime + info.second * 1000;
1110 pw.println(" periodic period=" + info.second
1529 final Long periodInSeconds = info.periodicSyncs.get(i).second;
1572 if (nextOpAndRunTime != null && nextOpAndRunTime.second <= now) {
1628 if (nextOpAndRunTime == null || nextOpAndRunTime.second > now) {
1961 alarmTime = candidate.second;
1965 alarmTime = Math.min(earliestFuturePollElapsedTime, candidate.second);
/frameworks/base/telephony/java/com/android/internal/telephony/gsm/
H A DSmsMessage.java573 int second = IccUtils.gsmBcdByteToInt(pdu[cur++]);
595 time.second = second;
/frameworks/base/packages/DefaultContainerService/src/com/android/defcontainer/
H A DDefaultContainerService.java275 File destFile = new File(sharedLibraryDir, entry.second);
278 + entry.first.getName() + " to " + entry.second);

Completed in 1580 milliseconds

12