Searched defs:label (Results 1 - 12 of 12) sorted by relevance

/development/tools/idegen/src/
H A DStopwatch.java24 void reset(String label) { argument
26 Log.info(label + ": " + (now - last) + "ms");
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DFragmentArguments.java60 static MyFragment newInstance(CharSequence label) { argument
63 b.putCharSequence("label", label);
91 mLabel = args.getCharSequence("label", mLabel);
102 ((TextView)tv).setText(mLabel != null ? mLabel : "(no label)");
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentArgumentsSupport.java62 static MyFragment newInstance(CharSequence label) { argument
65 b.putCharSequence("label", label);
93 CharSequence label = args.getCharSequence("label");
94 if (label != null) {
95 mLabel = label;
107 ((TextView)tv).setText(mLabel != null ? mLabel : "(no label)");
/development/apps/Development/src/com/android/development/
H A DPackageBrowser.java48 String label; field in class:PackageBrowser.MyPackageInfo
64 info.label = info.info.applicationInfo.loadLabel(getPackageManager()).toString();
79 name.setText(info.label);
100 return collator.compare(a.label, b.label);
H A DAccountsTester.java494 private CallbackToDialog(AccountsTester activity, String label) { argument
496 mLabel = label;
504 private Bundle getAndLogResult(AccountManagerFuture<Bundle> future, String label) { argument
508 Log.d(TAG, label + ": " + result);
510 sb.append(label).append(" result:");
521 Log.d(TAG, label + " failed", e);
522 showMessageDialog(label + " was canceled");
525 Log.d(TAG, label + " failed", e);
526 showMessageDialog(label + " failed with IOException: " + e.getMessage());
529 Log.d(TAG, label
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/content/
H A DExternalStorage.java358 Item createStorageControls(CharSequence label, File path, argument
364 TextView tv = (TextView)item.mRoot.findViewById(R.id.label);
365 tv.setText(label);
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DInternalSelectionView.java62 public InternalSelectionView(Context context, int numRows, String label) { argument
65 mLabel = label;
H A DGameControllerInput.java483 public Heading(int itemId, String label) { argument
485 mLabel = label;
501 public TextColumn(int itemId, String label) { argument
503 mLabel = label;
512 TextView textView = (TextView) view.findViewById(R.id.label);
/development/tools/mkstubs/src/com/android/mkstubs/stubber/
H A DMethodStubber.java61 l0, // label start
62 l1, // label end
120 public void visitJumpInsn(int opcode, Label label) { argument
125 public void visitLabel(Label label) { argument
/development/apps/FontLab/src/com/android/fontlab/
H A DFontLab.java214 void addFlagMenu(Menu menu, int paintFlag, String label, char shortCut) { argument
215 MenuItem item = menu.add(0, paintFlag, 0, label);
/development/tools/jdwpspy/
H A DNet.cpp34 char label[2]; /* 'D' or 'V' */ member in struct:Peer
235 strcpy(netState->dbg.label, "D");
236 strcpy(netState->vm.label, "V");
534 dumpPacket(buf, pSrc->label, pDst->label);
542 cc, pSrc->label[0], pDst->label[0]);*/
556 pReadPeer->label[0], pReadPeer->inputBuffer);
561 "+++ [%c] handshake write failed\n", pReadPeer->label[0]);
571 /*printf("*** %c not full yet\n", pReadPeer->label[
[all...]
/development/tools/mkstubs/src/com/android/mkstubs/sourcer/
H A DMethodSourcer.java190 public void visitJumpInsn(int opcode, Label label) { argument
195 public void visitLabel(Label label) { argument

Completed in 576 milliseconds