Home
last modified time | relevance | path

Searched refs:l (Results 1 – 25 of 65) sorted by relevance

123

/development/cmds/monkey/
Dexample_script.txt33 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/tools/repo_diff/service/repodiff/tools/
Dclear_service_account_keys.py20 for line in [l for l in output.splitlines() if l][1:-1]:
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DQuotedPrintable.java54 int l = Character.digit((char) bytes[++i], 16); in decodeQuotedPrintable() local
55 if (u == -1 || l == -1) { in decodeQuotedPrintable()
58 buffer.write((char) ((u << 4) + l)); in decodeQuotedPrintable()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DGrid3.java72 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()
DList17.java51 protected void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument
DSecureViewOverlay.java52 protected void onLayout(boolean changed, int l, int t, int r, int b) { in onLayout() argument
/development/vndk/tools/definition-tool/assets/visual/
Ddep-graph.js258 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/
DMainActivity.java181 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/
DCubeWallpaper2.java134 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/ApiDemos/src/com/example/android/apis/animation/
DFixedGridLayout.java75 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/TtsEngine/assets/
Deng-USA.freq12 l:800
Deng-GBR.freq15 l:4000
/development/vndk/tools/elfcheck/bpflatten/
Dmain.go55 var l []interface{}
58 l = append(l, s)
61 propMap[name] = l
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DColorPickerDialog.java41 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/devbytes/ui/RequestDuringLayout/src/com/example/android/requestduringlayout/
DRequestDuringLayout.java98 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/samples/HoneycombGallery/src/com/example/android/hcgallery/
DFitCenterFrameLayout.java53 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/samples/FixedGridLayout/src/com/example/android/fixedgridlayout/
DFixedGridLayout.java86 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/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
DWiFiDirectServicesList.java46 public void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument
48 ((DeviceClickListener) getActivity()).connectP2p((WiFiP2pService) l in onListItemClick()
/development/tools/winscope/src/
Dtransform_sf.js199 flattened.forEach((l) => {
200 if (l.rect) {
201 res.push(l.rect);
/development/vndk/tools/image-diff-tool/
Ddiff.py32 l = []
36 l.append(hashlib.sha1(apk.read(f)).hexdigest())
37 l.append(f)
38 return hashlib.sha1(",".join(l).encode()).hexdigest()
/development/vndk/snapshot/
Dgen_buildfiles.py516 def list_to_prop_value(l, name): argument
517 if len(l) == 0:
520 ind=self.INDENT).join(['"%s"' % d for d in l])
544 l = ['include/%s' % d for d in props['ExportedDirs']]
545 include_dirs = list_to_prop_value(l, 'export_include_dirs')
547 l = ['include/%s' % d for d in props['ExportedSystemDirs']]
548 system_include_dirs = list_to_prop_value(l, 'export_system_include_dirs')
/development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
DMainActivity.java32 protected void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument
/development/samples/ApiDemos/src/com/example/android/apis/app/
DFragmentListArray.java56 public void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument
/development/samples/training/basic/FragmentBasics/src/com/example/fragments/
DHeadlinesFragment.java72 public void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument
/development/samples/ApiDemos/src/com/example/android/apis/
DApiDemos.java143 protected void onListItemClick(ListView l, View v, int position, long id) { in onListItemClick() argument
144 Map<String, Object> map = (Map<String, Object>)l.getItemAtPosition(position); in onListItemClick()

123