Lines Matching refs:output

4917      * @param outRect The output location
6409 * @param outViews The output list of matching Views.
8684 * Return the visible drawing bounds of your view. Fills in the output
13879 String output = "";
13882 output += "TAKES_FOCUS";
13889 output += " ";
13891 output += "INVISIBLE";
13896 output += " ";
13898 output += "GONE";
13904 return output;
13915 String output = "";
13919 output += "WANTS_FOCUS";
13925 output += " ";
13927 output += "FOCUSED";
13933 output += " ";
13935 output += "SELECTED";
13941 output += " ";
13943 output += "IS_ROOT_NAMESPACE";
13949 output += " ";
13951 output += "HAS_BOUNDS";
13957 output += " ";
13959 output += "DRAWN";
13962 return output;
15352 * Prints information about this view in the log output, with the tag
15362 * Prints information about this view in the log output, with the tag
15363 * {@link #VIEW_LOG_TAG}. Each line in the output is preceded with an
15371 String output = debugIndent(depth - 1);
15373 output += "+ " + this;
15376 output += " (id=" + id + ")";
15380 output += " (tag=" + tag + ")";
15382 Log.d(VIEW_LOG_TAG, output);
15385 output = debugIndent(depth) + " FOCUSED";
15386 Log.d(VIEW_LOG_TAG, output);
15389 output = debugIndent(depth);
15390 output += "frame={" + mLeft + ", " + mTop + ", " + mRight
15393 Log.d(VIEW_LOG_TAG, output);
15397 output = debugIndent(depth);
15398 output += "padding={" + mPaddingLeft + ", " + mPaddingTop
15400 Log.d(VIEW_LOG_TAG, output);
15403 output = debugIndent(depth);
15404 output += "mMeasureWidth=" + mMeasuredWidth +
15406 Log.d(VIEW_LOG_TAG, output);
15408 output = debugIndent(depth);
15410 output += "BAD! no layout params";
15412 output = mLayoutParams.debug(output);
15414 Log.d(VIEW_LOG_TAG, output);
15416 output = debugIndent(depth);
15417 output += "flags={";
15418 output += View.printFlags(mViewFlags);
15419 output += "}";
15420 Log.d(VIEW_LOG_TAG, output);
15422 output = debugIndent(depth);
15423 output += "privateFlags={";
15424 output += View.printPrivateFlags(mPrivateFlags);
15425 output += "}";
15426 Log.d(VIEW_LOG_TAG, output);
18385 final String output = bits + " " + name;
18386 found.put(key, output);