HomeSort by relevance Sort by last modified time
    Searched defs:ll (Results 1 - 25 of 230) sorted by null

1 2 3 4 5 6 7 8 910

  /external/clang/test/CodeGen/
arm-vaarg-align.c 18 long long ll = __builtin_va_arg(ap, long long); local
20 return ll;
31 double ll = __builtin_va_arg(ap, double); local
33 return ll;
2002-09-18-UnionProblem.c 10 short ll; member in union:__anon7139
25 return rr.ll;
nvptx-inlineasm-ptx.c 11 long long ll; local
32 asm volatile ("mov.b64 %0, %1;" : "=l"(ll) : "l"(ll));
  /external/lz4/lib/
xxhash.h 103 typedef struct { long long ll[ 6]; } XXH32_state_t; member in struct:__anon18505
104 typedef struct { long long ll[11]; } XXH64_state_t; member in struct:__anon18506
  /external/toybox/toys/other/
free.c 31 long long ll = d*TT.units; local
34 if (toys.optflags & FLAG_h) human_readable(s, ll, 0);
35 else sprintf(s, "%llu",ll>>TT.bits);
factor.c 22 unsigned long l, ll; local
58 for (ll=3; ;ll += 2) {
59 long lll = ll*ll;
61 if (lll>l || lll<ll) {
65 while (!(l%ll)) {
66 printf(" %lu", ll);
67 l /= ll;
  /external/clang/test/Sema/
ext_vector_conversions.c 15 long long ll; local
16 // This one is OK; we don't re-interpret ll as short4, rather we splat its
18 vs4 += ll; // expected-warning {{implicit conversion loses integer precision}}
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ButtonsWithTallTextViewInBetween.java 40 LinearLayout ll = getContentChildAt(2); local
41 return (Button) ll.getChildAt(0);
ShortButtons.java 41 LinearLayout ll = getContentChildAt(3); local
42 return (Button) ll.getChildAt(index - 3);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
InternalSelectionScroll.java 50 LinearLayout ll = new LinearLayout(this); local
51 ll.setLayoutParams(svLp);
52 sv.addView(ll);
60 ll.addView(isv);
  /frameworks/base/core/tests/coretests/src/android/os/
LocaleListTest.java 27 LocaleList ll; local
28 ll = new LocaleList(Locale.forLanguageTag("fr"), null);
29 assertEquals("fr", ll.toLanguageTags());
31 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.getEmptyLocaleList());
32 assertEquals("fr", ll.toLanguageTags());
34 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.forLanguageTags("fr"));
35 assertEquals("fr", ll.toLanguageTags());
37 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.forLanguageTags("de"));
38 assertEquals("fr,de", ll.toLanguageTags());
40 ll = new LocaleList(Locale.forLanguageTag("fr"), LocaleList.forLanguageTags("de,ja"))
56 final LocaleList ll = new LocaleList(null, LocaleList.getEmptyLocaleList()); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemISVAndButton.java 45 final LinearLayout ll = new LinearLayout(context); local
46 ll.setOrientation(LinearLayout.VERTICAL);
52 ll.addView(isv);
62 ll.addView(topButton);
69 ll.addView(filler);
72 return ll;
  /ndk/tests/device/test-stlport_shared-exception/jni/
throw-1.cpp 37 int ll = 1; local
52 ll = i+j+k+l+m+n;
53 if (ll != 15)
56 printf("FAIL: sum %d != 15\n", ll);
throw-2.cpp 28 int ll = 1; local
43 ll = i+j+k+l+m+n;
44 if (ll != 15)
47 printf("FAIL: sum %d != 15\n", ll);
throw-3.cpp 28 int ll = 1; local
43 ll = i+j+k+l+m+n;
44 if (ll != 15)
47 printf("FAIL: sum %d != 15\n", ll);
throw-4.cpp 30 int ll = 1; local
45 ll = i+j+k+l+m+n;
46 if (ll != 15)
49 printf("FAIL: sum %d != 15\n", ll);
  /ndk/tests/device/test-stlport_static-exception/jni/
throw-1.cpp 37 int ll = 1; local
52 ll = i+j+k+l+m+n;
53 if (ll != 15)
56 printf("FAIL: sum %d != 15\n", ll);
throw-2.cpp 28 int ll = 1; local
43 ll = i+j+k+l+m+n;
44 if (ll != 15)
47 printf("FAIL: sum %d != 15\n", ll);
throw-3.cpp 28 int ll = 1; local
43 ll = i+j+k+l+m+n;
44 if (ll != 15)
47 printf("FAIL: sum %d != 15\n", ll);
throw-4.cpp 30 int ll = 1; local
45 ll = i+j+k+l+m+n;
46 if (ll != 15)
49 printf("FAIL: sum %d != 15\n", ll);
  /cts/tests/tests/widget/src/android/widget/cts/util/
ListItemFactory.java 48 final LinearLayout ll = new LinearLayout(context); local
49 ll.setOrientation(LinearLayout.VERTICAL);
60 ll.addView(topButton);
67 ll.addView(middleFiller);
72 ll.addView(bottomButton);
73 ll.setTag("twoButtons");
74 return ll;
87 * @param desiredHeight The height of the LL.
93 final LinearLayout ll = new LinearLayout(context); local
94 ll.setOrientation(LinearLayout.HORIZONTAL)
236 final LinearLayout ll = new LinearLayout(context); local
    [all...]
  /frameworks/base/core/java/android/content/
SyncActivityTooManyDeletes.java 84 final LinearLayout ll = new LinearLayout(this); local
85 ll.setOrientation(LinearLayout.VERTICAL);
88 ll.addView(textView, lp);
89 ll.addView(listView, lp);
99 // ll.addView(imageView, lp);
106 setContentView(ll);
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 48 final LinearLayout ll = new LinearLayout(context); local
49 ll.setOrientation(LinearLayout.VERTICAL);
60 ll.addView(topButton);
67 ll.addView(middleFiller);
72 ll.addView(bottomButton);
73 ll.setTag("twoButtons");
74 return ll;
87 * @param desiredHeight The height of the LL.
93 final LinearLayout ll = new LinearLayout(context); local
94 ll.setOrientation(LinearLayout.HORIZONTAL)
237 final LinearLayout ll = new LinearLayout(context); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
HorizontalFocusSearch.java 117 LinearLayout ll = new LinearLayout(this); local
118 ll.setOrientation(LinearLayout.VERTICAL);
119 ll.setLayoutParams(new LinearLayout.LayoutParams(
124 ll.addView(filler);
125 ll.addView(button);
126 root.addView(ll);
128 ll.addView(button);
129 ll.addView(filler);
130 root.addView(ll);
VerticalFocusSearch.java 133 LinearLayout ll = new LinearLayout(this); local
134 ll.setOrientation(LinearLayout.HORIZONTAL);
135 ll.setLayoutParams(new LinearLayout.LayoutParams(
140 ll.addView(filler);
141 ll.addView(button);
142 root.addView(ll);
144 ll.addView(button);
145 ll.addView(filler);
146 root.addView(ll);

Completed in 810 milliseconds

1 2 3 4 5 6 7 8 910