Searched refs:s1 (Results 1 – 6 of 6) sorted by relevance
/development/tools/repo_diff/service/repodiff/interactors/ |
D | strings_test.go | 10 s1 := []string{ 29 diff := DistinctValues(s1, s2) 34 var s1 []string 37 diff := DistinctValues(s1, s2) 42 s1 := []string{} 51 diff := DistinctValues(s1, s2) 56 s1 := []string{ 69 diff := SetSubtract(s1, s2) 74 s1 := []string{ 90 union := SetUnion(s1, s2)
|
D | strings.go | 72 func discardKeysFromOther(s1, s2 simpleSet) { argument 73 for k := range s1 {
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | Spinner1.java | 44 Spinner s1 = (Spinner) findViewById(R.id.spinner1); in onCreate() local 48 s1.setAdapter(adapter); in onCreate() 49 s1.setOnItemSelectedListener( in onCreate()
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
D | AnimationCloning.java | 93 AnimatorSet s1 = new AnimatorSet(); in createAnimation() local 94 s1.playSequentially(animDown, animUp); in createAnimation() 97 AnimatorSet s2 = (AnimatorSet) s1.clone(); in createAnimation() 101 animation.playTogether(anim1, anim2, s1); in createAnimation() 102 animation.playSequentially(s1, s2); in createAnimation()
|
/development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/ |
D | ShortcutListFragment.java | 176 (ShortcutInfo s1, ShortcutInfo s2) -> { 178 ret = getAppLabel(s1.getPackage()).compareTo(getAppLabel(s2.getPackage())); 181 ret = s1.getUserHandle().hashCode() - s2.getUserHandle().hashCode(); 184 ret = s1.getId().compareTo(s2.getId());
|
/development/samples/ShortcutDemo/publisher/src/com/example/android/pm/shortcutdemo/ |
D | ShortcutPublisher.java | 135 (ShortcutInfo s1, ShortcutInfo s2) -> { 137 ret = (s1.isDeclaredInManifest() ? 0 : 1) - (s2.isDeclaredInManifest() ? 0 : 1); 140 ret = (s1.isDynamic() ? 0 : 1) - (s2.isDynamic() ? 0 : 1); 143 ret = s1.getId().compareTo(s2.getId());
|