Home | History | Annotate | Download | only in traceview

Lines Matching defs:md

199                                 MethodData md = (MethodData) element;
200 highlightMethod(md, true);
203 MethodData md = ((ProfileData) element)
205 highlightMethod(md, true);
218 MethodData md = (MethodData) element;
219 expandNode(md);
232 MethodData md = mProfileProvider.findMatchingTreeItem(treeItem);
233 if (md == null)
236 selections.add(Selection.highlight("MethodData", md));
240 mMethodHandler.handleMethod(md);
251 MethodData md = mProfileProvider.findMatchingName(query);
252 selectMethod(md);
256 MethodData md = mProfileProvider.findNextMatchingName(query);
257 selectMethod(md);
260 private void selectMethod(MethodData md) {
261 if (md == null) {
266 highlightMethod(md, false);
283 MethodData md = (MethodData) selection.getValue();
284 highlightMethod(md, true);
289 MethodData md = call.getMethodData();
290 highlightMethod(md, true);
296 private void highlightMethod(MethodData md, boolean clearSearch) {
297 if (md == null)
300 if (md == mCurrentHighlightedMethod)
306 mCurrentHighlightedMethod = md;
309 expandNode(md);
310 StructuredSelection sel = new StructuredSelection(md);
321 private void expandNode(MethodData md) {
322 ProfileNode[] nodes = md.getProfileNodes();
323 mTreeViewer.setExpandedState(md, true);