HomeSort by relevance Sort by last modified time
    Searched refs:toShortString (Results 1 - 25 of 72) sorted by null

1 2 3

  /frameworks/base/services/java/com/android/server/am/
ContentProviderConnection.java 51 toShortString(sb);
56 public String toShortString() {
58 toShortString(sb);
68 public void toShortString(StringBuilder sb) {
69 sb.append(provider.toShortString());
75 sb.append(client.toShortString());
IntentBindRecord.java 59 pw.print(intent.getIntent().toShortString(false, true, false, false));
107 intent.getIntent().toShortString(sb, false, false, false, false);
BroadcastRecord.java 91 pw.print(prefix); pw.print(" targetComp: "); pw.println(targetComp.toShortString());
98 pw.print(callerApp != null ? callerApp.toShortString() : "null");
145 pw.println((curComponent != null ? curComponent.toShortString() : "--"));
ReceiverList.java 72 pw.print(prefix); pw.print("app="); pw.print(app != null ? app.toShortString() : null);
ProcessRecord.java 160 String shortStringName; // caching of toShortString() result.
348 pw.print(prefix); pw.print(" - "); pw.println(conProviders.get(i).toShortString());
494 public String toShortString() {
499 toShortString(sb);
503 void toShortString(StringBuilder sb) {
536 toShortString(sb);
555 sb.append(((ProcessRecord)adjSource).toShortString());
PendingIntentRecord.java 164 ? requestIntent.toShortString(false, true, false, false) : "<null>")
342 pw.println(key.requestIntent.toShortString(false, true, true, true));
ContentProviderRecord.java 211 public String toShortString() {
  /cts/tests/tests/graphics/src/android/graphics/cts/
MatrixTest.java 74 assertEquals(expect, mMatrix.toShortString());
77 assertEquals(expect, mMatrix.toShortString());
82 assertEquals(expect, mMatrix.toShortString());
85 assertEquals(expect, mMatrix.toShortString());
90 assertEquals(expect, mMatrix.toShortString());
94 assertEquals(expect, mMatrix.toShortString());
101 assertEquals(expect, mMatrix.toShortString());
108 assertEquals(expect, mMatrix.toShortString());
114 assertEquals(expect, mMatrix.toShortString());
120 assertEquals(expect, mMatrix.toShortString());
    [all...]
RectTest.java 386 assertNotNull(mRect.toShortString());
390 assertNotNull(mRect.toShortString());
  /frameworks/base/core/java/android/view/animation/
Transformation.java 151 toShortString(sb);
158 public String toShortString() {
160 toShortString(sb);
167 public void toShortString(StringBuilder sb) {
169 sb.append(" matrix="); mMatrix.toShortString(sb);
  /frameworks/base/services/java/com/android/server/wm/
FocusedStackFrame.java 66 if (false && DEBUG_STACK) Slog.i(TAG, "draw: bounds=" + bounds.toShortString() +
103 if (false && DEBUG_STACK) Slog.i(TAG, "positionSurface: bounds=" + bounds.toShortString());
112 " mLastBounds=" + mLastBounds.toShortString() +
113 " mBounds=" + mBounds.toShortString());
DimLayer.java 281 pw.print(prefix); pw.print("mLastBounds="); pw.print(mLastBounds.toShortString());
282 pw.print(" mBounds="); pw.println(mBounds.toShortString());
  /frameworks/base/core/java/android/content/
ClipDescription.java 196 toShortString(b);
203 public boolean toShortString(StringBuilder b) {
ClipData.java 587 toShortString(b);
594 public void toShortString(StringBuilder b) {
606 mIntent.toShortString(b, true, true, true, true);
817 toShortString(b);
824 public void toShortString(StringBuilder b) {
827 first = !mClipDescription.toShortString(b);
    [all...]
ComponentName.java 224 public String toShortString() {
  /packages/apps/Launcher2/src/com/android/launcher2/
PendingAddItemInfo.java 105 return "Widget: " + componentName.toShortString();
  /packages/apps/Launcher3/src/com/android/launcher3/
PendingAddItemInfo.java 105 return "Widget: " + componentName.toShortString();
IconCache.java 276 componentName.toShortString());
280 componentName.toShortString());
  /frameworks/base/graphics/java/android/graphics/
RectF.java 116 public String toShortString() {
117 return toShortString(new StringBuilder(32));
124 public String toShortString(StringBuilder sb) {
Rect.java 112 public String toShortString() {
113 return toShortString(new StringBuilder(32));
120 public String toShortString(StringBuilder sb) {
Matrix.java 750 toShortString(sb);
756 public String toShortString() {
758 toShortString(sb);
765 public void toShortString(StringBuilder sb) {
  /cts/tests/tests/content/src/android/content/cts/
ComponentNameTest.java 170 final String shortString = getComponentName().toShortString();
  /cts/tests/tests/view/src/android/view/animation/cts/
TransformationTest.java 126 assertNotNull(new Transformation().toShortString());
  /frameworks/base/core/java/android/app/
ActivityThread.java 313 ? "no component name" : componentName.toShortString())
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/finders/
ByXPath.java 137 element.setAttribute(Attribute.BOUNDS.getName(), uiElement.getBounds().toShortString());

Completed in 417 milliseconds

1 2 3