Searched defs:second (Results 1 - 25 of 54) sorted by last modified time

123

/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dgson-1.7.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gson/ com/google/gson/annotations/ ...
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBackgroundManager.java972 boolean sameDrawable(Drawable first, Drawable second) { argument
973 if (first == null || second == null) {
976 if (first == second) {
979 if (first instanceof BitmapDrawable && second instanceof BitmapDrawable) {
980 if (((BitmapDrawable) first).getBitmap().sameAs(((BitmapDrawable) second).getBitmap())) {
984 if (first instanceof ColorDrawable && second instanceof ColorDrawable) {
985 if (((ColorDrawable) first).getColor() == ((ColorDrawable) second).getColor()) {
H A DPlaybackFragment.java622 * if first animator is still running, reverse it; otherwise start second animator.
624 static void reverseFirstOrStartSecond(ValueAnimator first, ValueAnimator second, argument
632 second.start();
634 second.end();
640 * End first or second animator if they are still running.
642 static void endAll(ValueAnimator first, ValueAnimator second) { argument
645 } else if (second.isStarted()) {
646 second.end();
H A DPlaybackSupportFragment.java625 * if first animator is still running, reverse it; otherwise start second animator.
627 static void reverseFirstOrStartSecond(ValueAnimator first, ValueAnimator second, argument
635 second.start();
637 second.end();
643 * End first or second animator if they are still running.
645 static void endAll(ValueAnimator first, ValueAnimator second) { argument
648 } else if (second.isStarted()) {
649 second.end();
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
H A DSortedListTest.java784 final int first, second; field in class:SortedListTest.Pair
788 this.second = Integer.MIN_VALUE;
791 public Pair(int first, int second) { argument
793 this.second = second;
810 if (second != pair.second) {
820 result = 31 * result + second;
/frameworks/support/compat/java/android/support/v4/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 objectsEqual(p.first, first) && objectsEqual(p.second, second);
67 return (first == null ? 0 : first.hashCode()) ^ (second == null ? 0 : second
[all...]
/frameworks/support/core-ui/java/android/support/v4/widget/
H A DFocusStrategy.java107 public int compare(T first, T second) { argument
112 mAdapter.obtainBounds(second, secondRect);
321 * @param rect2 the second rectangle
/frameworks/support/design/src/android/support/design/widget/
H A DCollapsingTextHelper.java545 private boolean areTypefacesDifferent(Typeface first, Typeface second) { argument
546 return (first != null && !first.equals(second)) || (first == null && second != null);
H A DCoordinatorLayout.java1656 * @param second second child view to test
1659 public boolean doViewsOverlap(View first, View second) { argument
1660 if (first.getVisibility() == VISIBLE && second.getVisibility() == VISIBLE) {
1664 getChildRect(second, second.getParent() != this, secondRect);
/frameworks/rs/
H A DrsMap.h13 Pair(T1 f1, T2 f2) : first(f1), second(f2) {}
16 T2 second; member in class:android::renderscript::Pair
20 Pair<T1, T2> make_pair(T1 first, T2 second) { argument
21 return Pair<T1, T2>(first, second);
62 return node->entry.second;
76 return node->entry.second;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java2975 // value to 1 once. To change it a second time you can reboot or execute
3163 generation + " vs " + pair.second);
3165 if (generation == pair.second) {
3462 ApnSetting second = null;
3465 second = mAllApnSettings.get(j);
3466 if (apnsSimilar(first, second)) {
3467 ApnSetting newApn = mergeApns(first, second);
3480 private boolean apnTypeSameAny(ApnSetting first, ApnSetting second) { argument
3488 StringBuilder apnType2 = new StringBuilder(second.apn + ": ");
3489 for(int index1 = 0; index1 < second
3513 apnsSimilar(ApnSetting first, ApnSetting second) argument
3533 xorEquals(String first, String second) argument
[all...]
/frameworks/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/native/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/ex/common/java/com/android/common/
H A DLegacyHttpDateTime.java77 this.second = s;
82 int second; field in class:LegacyHttpDateTime.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/minikin/libs/minikin/
H A DFontLanguage.cpp67 uint8_t second = (in >> 5) & 0x1f; local
71 out[0] = second + twoLetterBase;
76 out[1] = second + threeLetterBase;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/store/
H A DSetterStore.java930 // Boxing/unboxing is second best
1014 HashMap<K, HashMap<V, D>> second) {
1015 for (K key : second.keySet()) {
1017 HashMap<V, D> secondVals = second.get(key);
1013 merge(HashMap<K, HashMap<V, D>> first, HashMap<K, HashMap<V, D>> second) argument
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/compile/mclinker/include/mcld/ADT/
H A Dilist_sort.h36 iterator second = xs.begin(); local
37 ++second;
38 if (is_less_than(*second, *first)) {
39 xs.splice(first, xs, second);
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp1223 for (SymMapType::iterator it = ret.first; it != ret.second;) {
1225 *(pSymtab.localDynBegin() + hashedidx - 1) = it->second.first;
1226 uint32_t djbhash = it->second.second;
1232 if (++it == ret.second) {
1908 const LDSection* second = *((*seg)->begin() + 1); local
1909 assert(second != NULL);
1910 (*seg)->setVaddr(second->addr() - second->offset());
2268 (*it).second
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DSumPathEffect_Delegate.java65 /*package*/ static long nativeCreate(long first, long second) { argument
/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/packages/SystemUI/src/com/android/systemui/statusbar/notification/
H A DMediaNotificationProcessor.java204 Palette.Swatch second) {
206 boolean secondValid = hasEnoughPopulation(second);
209 float secondSaturation = second.getHsl()[1];
210 float populationFraction = first.getPopulation() / (float) second.getPopulation();
214 return second;
219 return second;
224 private Palette.Swatch selectVibrantCandidate(Palette.Swatch first, Palette.Swatch second) { argument
226 boolean secondValid = hasEnoughPopulation(second);
229 int secondPopulation = second.getPopulation();
232 return second;
203 selectMutedCandidate(Palette.Swatch first, Palette.Swatch second) argument
[all...]
/frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
H A DSocketConnect.java41 public static void connect(Socket first, Socket second) { argument
43 SocketConnect sc1 = new SocketConnect(first, second);
44 SocketConnect sc2 = new SocketConnect(second, first);
/frameworks/base/services/accessibility/java/com/android/server/accessibility/
H A DGestureUtils.java26 private static boolean eventsWithinTimeAndDistanceSlop(MotionEvent first, MotionEvent second, argument
28 if (isTimedOut(first, second, timeout)) {
31 final double deltaMove = computeDistance(first, second, actionIndex);
38 public static double computeDistance(MotionEvent first, MotionEvent second, int pointerIndex) { argument
40 second.getX(pointerIndex), second.getY(pointerIndex));
48 public static boolean isSamePointerContext(MotionEvent first, MotionEvent second) { argument
49 return (first.getPointerIdBits() == second.getPointerIdBits()
51 == second.getPointerId(second
[all...]

Completed in 7004 milliseconds

123