/development/ndk/platforms/android-9/arch-mips/include/asm/ |
D | local.h | 34 #define local_read(l) atomic_long_read(&(l)->a) argument 35 #define local_set(l, i) atomic_long_set(&(l)->a, (i)) argument 36 #define local_add(i, l) atomic_long_add((i), (&(l)->a)) argument 37 #define local_sub(i, l) atomic_long_sub((i), (&(l)->a)) argument 39 #define local_inc(l) atomic_long_inc(&(l)->a) argument 40 #define local_dec(l) atomic_long_dec(&(l)->a) argument 41 #define local_cmpxchg(l, o, n) ((long)cmpxchg_local(&((l)->a.counter), (o), (n))) argument 42 #define local_xchg(l, n) (xchg_local(&((l)->a.counter), (n))) argument 44 #define local_add_unless(l, a, u) ({ long c, old; c = local_read(l); while (c != (u) && (old… argument 45 #define local_inc_not_zero(l) local_add_unless((l), 1, 0) argument [all …]
|
/development/ndk/platforms/android-9/arch-x86/include/asm/ |
D | local_32.h | 31 #define local_read(l) atomic_long_read(&(l)->a) argument 32 #define local_set(l,i) atomic_long_set(&(l)->a, (i)) argument 34 #define local_inc_return(l) (local_add_return(1,l)) argument 35 #define local_dec_return(l) (local_sub_return(1,l)) argument 36 #define local_cmpxchg(l, o, n) (cmpxchg_local(&((l)->a.counter), (o), (n))) argument 37 #define local_xchg(l, n) (xchg(&((l)->a.counter), (n))) argument 39 …ocal_add_unless(l, a, u) ({ long c, old; c = local_read(l); for (;;) { if (unlikely(c == … argument 40 #define local_inc_not_zero(l) local_add_unless((l), 1, 0) argument 41 #define __local_inc(l) local_inc(l) argument 42 #define __local_dec(l) local_dec(l) argument [all …]
|
/development/ndk/platforms/android-9/include/asm-generic/ |
D | local.h | 27 #define local_read(l) atomic_long_read(&(l)->a) argument 28 #define local_set(l,i) atomic_long_set((&(l)->a),(i)) argument 29 #define local_inc(l) atomic_long_inc(&(l)->a) argument 30 #define local_dec(l) atomic_long_dec(&(l)->a) argument 31 #define local_add(i,l) atomic_long_add((i),(&(l)->a)) argument 32 #define local_sub(i,l) atomic_long_sub((i),(&(l)->a)) argument 34 #define __local_inc(l) local_set((l), local_read(l) + 1) argument 35 #define __local_dec(l) local_set((l), local_read(l) - 1) argument 36 #define __local_add(i,l) local_set((l), local_read(l) + (i)) argument 37 #define __local_sub(i,l) local_set((l), local_read(l) - (i)) argument
|
/development/ndk/platforms/android-9/include/linux/ |
D | lockdep.h | 20 #define lock_acquire(l, s, t, r, c, i) do { } while (0) argument 21 #define lock_release(l, n, i) do { } while (0) argument 38 #define spin_acquire(l, s, t, i) do { } while (0) argument 39 #define spin_release(l, n, i) do { } while (0) argument 41 #define rwlock_acquire(l, s, t, i) do { } while (0) argument 42 #define rwlock_acquire_read(l, s, t, i) do { } while (0) argument 43 #define rwlock_release(l, n, i) do { } while (0) argument 45 #define mutex_acquire(l, s, t, i) do { } while (0) argument 46 #define mutex_release(l, n, i) do { } while (0) argument 48 #define rwsem_acquire(l, s, t, i) do { } while (0) argument [all …]
|
D | atm.h | 40 #define __SO_ENCODE(l,n,t) ((((l) & 0x1FF) << 22) | ((n) << 16) | sizeof(t)) argument
|
/development/cmds/monkey/ |
D | example_script.txt | 33 key down l 34 key up l 35 key down l 36 key up l 47 key down l 48 key up l 49 key down l 50 key up l
|
/development/ndk/platforms/android-21/include/linux/ |
D | romfs_fs.h | 30 #define __mkw(h,l) (((h)&0x00ff)<< 8|((l)&0x00ff)) argument 31 #define __mkl(h,l) (((h)&0xffff)<<16|((l)&0xffff)) argument
|
D | atm.h | 49 #define __SO_ENCODE(l,n,t) ((((l) & 0x1FF) << 22) | ((n) << 16) | sizeof(t)) argument
|
/development/ndk/platforms/android-9/include/asm-generic/bitops/ |
D | atomic.h | 20 #define _atomic_spin_lock_irqsave(l,f) do { local_irq_save(f); } while (0) argument 21 #define _atomic_spin_unlock_irqrestore(l,f) do { local_irq_restore(f); } while (0) argument
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | Grid3.java | 72 CheckableLayout l; in getView() local 79 l = new CheckableLayout(Grid3.this); in getView() 80 l.setLayoutParams(new GridView.LayoutParams(GridView.LayoutParams.WRAP_CONTENT, in getView() 82 l.addView(i); in getView() 84 l = (CheckableLayout) convertView; in getView() 85 i = (ImageView) l.getChildAt(0); in getView() 91 return l; in getView()
|
D | List17.java | 51 protected void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument
|
/development/vndk/tools/definition-tool/assets/visual/ |
D | dep-graph.js | 258 function(l) { argument 259 if (l.target === d) { 260 l.source.source = true; 267 function(l) { argument 268 if (l.source === d) { 269 l.target.target = true; 275 .filter(function(l) { return l.target === d || l.source === d; }) argument 321 let l = map[d.data.name].path(map[i]); 322 l.allow = true; 323 depends.push(l); [all …]
|
/development/samples/browseable/HorizontalPaging/src/com.example.android.horizontalpaging/ |
D | MainActivity.java | 181 Locale l = Locale.getDefault(); in getPageTitle() local 184 return getString(R.string.title_section1).toUpperCase(l); in getPageTitle() 186 return getString(R.string.title_section2).toUpperCase(l); in getPageTitle() 188 return getString(R.string.title_section3).toUpperCase(l); in getPageTitle()
|
/development/samples/CubeLiveWallpaper/src/com/example/android/livecubes/cube2/ |
D | CubeWallpaper2.java | 134 String [] l = getResources().getStringArray(lid); in readModel() local 135 int numlines = l.length; in readModel() 140 String [] idx = l[i].split(" "); in readModel() 281 ThreeDLine l = mLines[i]; in drawLines() local 282 ThreeDPoint start = mRotatedPoints[l.startPoint]; in drawLines() 283 ThreeDPoint end = mRotatedPoints[l.endPoint]; in drawLines()
|
/development/samples/TtsEngine/assets/ |
D | eng-GBR.freq | 15 l:4000
|
D | eng-USA.freq | 12 l:800
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
D | FixedGridLayout.java | 75 protected void onLayout(boolean changed, int l, int t, int r, int b) { in onLayout() argument 78 int columns = (r - l) / cellWidth; in onLayout()
|
/development/samples/devbytes/ui/RequestDuringLayout/src/com/example/android/requestduringlayout/ |
D | RequestDuringLayout.java | 98 protected void onLayout(boolean changed, int l, int t, int r, int b) { in onLayout() argument 99 super.onLayout(changed, l, t, r, b); in onLayout()
|
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/ |
D | Notepadv2.java | 107 protected void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument 108 super.onListItemClick(l, v, position, id); in onListItemClick()
|
/development/ndk/platforms/android-9/include/linux/mmc/ |
D | card.h | 87 #define mmc_list_to_card(l) container_of(l, struct mmc_card, node) argument
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | ColorPickerDialog.java | 41 ColorPickerView(Context c, OnColorChangedListener l, int color) { in ColorPickerView() argument 43 mListener = l; in ColorPickerView() 223 OnColorChangedListener l = new OnColorChangedListener() { in onCreate() local 230 setContentView(new ColorPickerView(getContext(), l, mInitialColor)); in onCreate()
|
/development/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/ |
D | FixedGridLayout.java | 86 protected void onLayout(boolean changed, int l, int t, int r, int b) { in onLayout() argument 89 int columns = (r - l) / cellWidth; in onLayout()
|
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/ |
D | FitCenterFrameLayout.java | 53 protected void onLayout(boolean changed, int l, int t, int r, int b) { in onLayout() argument 58 final int parentRight = r - l - getPaddingRight(); in onLayout()
|
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/ |
D | Notepadv3.java | 111 protected void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument 112 super.onListItemClick(l, v, position, id); in onListItemClick()
|
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/ |
D | WiFiDirectServicesList.java | 46 public void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument 48 ((DeviceClickListener) getActivity()).connectP2p((WiFiP2pService) l in onListItemClick()
|