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

1 2 3 4 5 6 7 8 91011>>

  /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:__anon15745
25 return rr.ll;
iamcu-abi.c 8 void fooll(long long *ll);
22 long long ll = 2; local
23 fooll(&ll);
nvptx-inlineasm-ptx.c 11 long long ll; local
32 asm volatile ("mov.b64 %0, %1;" : "=l"(ll) : "l"(ll));
  /external/libffi/testsuite/libffi.call/
return_ll.c 9 static long long return_ll(long long ll)
11 return ll;
20 long long ll; local
23 values[0] = ≪
29 for (ll = 0LL; ll < 100LL; ll++)
32 CHECK(rlonglong == ll);
    [all...]
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
return_ll.c 9 static long long return_ll(long long ll)
11 return ll;
20 long long ll; local
23 values[0] = &ll;
29 for (ll = 0LL; ll < 100LL; ll++)
32 CHECK(rlonglong == ll);
    [all...]
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
return_ll.c 9 static long long return_ll(long long ll)
11 return ll;
20 long long ll; local
23 values[0] = &ll;
29 for (ll = 0LL; ll < 100LL; ll++)
32 CHECK(rlonglong == ll);
    [all...]
  /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 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(" %llu", 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);
  /frameworks/support/compat/src/androidTest/java/androidx/core/os/
LocaleListCompatTest.java 47 LocaleListCompat ll = LocaleListCompat.create(); local
48 assertNotNull(ll);
49 assertTrue(ll.isEmpty());
50 assertEquals(0, ll.size());
51 assertNull(ll.get(0));
52 assertNull(ll.get(1));
53 assertNull(ll.get(10));
55 ll = LocaleListCompat.create(new Locale[0]);
56 assertNotNull(ll);
57 assertTrue(ll.isEmpty())
66 final LocaleListCompat ll = LocaleListCompat.create(Locale.US); local
78 final LocaleListCompat ll = LocaleListCompat.create(la); local
143 LocaleListCompat ll = LocaleListCompat.create(); local
158 LocaleListCompat ll = LocaleListCompat.create(); local
196 final LocaleListCompat ll = LocaleListCompat.getDefault(); local
206 final LocaleListCompat ll = LocaleListCompat.getDefault(); local
    [all...]
  /art/test/980-redefine-object/src/
Main.java 389 LinkedList<Object> ll = new LinkedList<>(); local
391 ll.add(new Object());
392 ll.add(new Object());
393 ll.add(o2);
394 ll.add(o);
395 ll.add(t);
396 ll.add(t2);
397 ll.add(new Transform());
  /art/tools/amm/AmmTest/src/com/android/amm/test/
MainActivity.java 38 LinearLayout ll = new LinearLayout(this); local
39 mTextureViewUse = new TextureViewUse(this, ll, 200, 500);
40 mSurfaceViewUse = new SurfaceViewUse(this, ll, 240, 250);
41 setContentView(ll);
  /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);
  /development/tools/bugreport/src/com/android/bugreport/logcat/
LogcatParser.java 61 final LogLine ll = new LogLine(); local
63 ll.lineno = lineno++;
64 ll.rawText = text;
65 ll.bufferBegin = m.group(1);
67 result.lines.add(ll);
70 final LogLine ll = new LogLine(); local
72 ll.lineno = lineno++;
73 ll.rawText = text;
74 ll.header = m.group(1);
75 ll.time = Utils.parseCalendar(m, 2, true)
    [all...]
  /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;
AdjacentListsWithAdjacentISVsInside.java 90 final LinearLayout ll = new LinearLayout(views[0].getContext()); local
91 ll.setOrientation(LinearLayout.HORIZONTAL);
96 ll.addView(view, lp);
98 return 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 690 milliseconds

1 2 3 4 5 6 7 8 91011>>