Searched defs:second (Results 26 - 43 of 43) sorted by path

12

/frameworks/base/test-runner/src/android/test/
H A DViewAsserts.java122 * @param second The second view
124 static public void assertBaselineAligned(View first, View second) { argument
129 second.getLocationOnScreen(xy);
130 int secondTop = xy[1] + second.getBaseline();
140 * @param second The second view
142 static public void assertRightAligned(View first, View second) { argument
147 second.getLocationOnScreen(xy);
148 int secondRight = xy[0] + second
161 assertRightAligned(View first, View second, int margin) argument
179 assertLeftAligned(View first, View second) argument
198 assertLeftAligned(View first, View second, int margin) argument
216 assertBottomAligned(View first, View second) argument
235 assertBottomAligned(View first, View second, int margin) argument
253 assertTopAligned(View first, View second) argument
272 assertTopAligned(View first, View second, int margin) argument
[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/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/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/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/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/opt/setupwizard/tools/docs/
H A Djsilver.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/clearsilver/ org/clearsilver/DelegatedHdf.class DelegatedHdf. ...
/frameworks/opt/telephony/src/java/com/android/internal/telephony/dataconnection/
H A DDcTracker.java2881 // value to 1 once. To change it a second time you can reboot or execute
3050 generation + " vs " + pair.second);
3052 if (generation == pair.second) {
3395 ApnSetting second = null;
3398 second = mAllApnSettings.get(j);
3399 if (apnsSimilar(first, second)) {
3400 ApnSetting newApn = mergeApns(first, second);
3413 private boolean apnTypeSameAny(ApnSetting first, ApnSetting second) { argument
3421 StringBuilder apnType2 = new StringBuilder(second.apn + ": ");
3422 for(int index1 = 0; index1 < second
3446 apnsSimilar(ApnSetting first, ApnSetting second) argument
3464 xorEquals(String first, String second) argument
[all...]
/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/support/design/src/android/support/design/widget/
H A DCoordinatorLayout.java1426 * @param second second child view to test
1429 public boolean doViewsOverlap(View first, View second) { argument
1430 if (first.getVisibility() == VISIBLE && second.getVisibility() == VISIBLE) {
1434 getChildRect(second, second.getParent() != this, secondRect);
/frameworks/support/tests/java/android/support/v4/app/
H A DNotificationCompatActionWearableExtenderTest.java256 Notification second) {
259 new NotificationCompat.WearableExtender(second);
255 assertExtendersFromNotificationEqual(Notification first, Notification second) argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DBackgroundManager.java1132 private boolean sameDrawable(Drawable first, Drawable second) { argument
1133 if (first == null || second == null) {
1136 if (first == second) {
1139 if (first instanceof BitmapDrawable && second instanceof BitmapDrawable) {
1140 if (((BitmapDrawable) first).getBitmap().sameAs(((BitmapDrawable) second).getBitmap())) {
/frameworks/support/v4/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/v4/java/android/support/v4/widget/
H A DFocusStrategy.java106 public int compare(T first, T second) { argument
111 mAdapter.obtainBounds(second, secondRect);
320 * @param rect2 the second rectangle
/frameworks/support/v7/recyclerview/jvm-tests/src/android/support/v7/util/
H A DSortedListTest.java785 final int first, second; field in class:SortedListTest.Pair
789 this.second = Integer.MIN_VALUE;
792 public Pair(int first, int second) { argument
794 this.second = second;
811 if (second != pair.second) {
821 result = 31 * result + second;

Completed in 1124 milliseconds

12