Searched defs:out (Results 276 - 280 of 280) sorted by relevance

<<1112

/frameworks/ex/common/java/com/android/ex/editstyledtext/
H A DEditStyledText.java2001 public void writeToParcel(Parcel out, int flags) { argument
2002 super.writeToParcel(out, flags);
2003 out.writeInt(mBackgroundColor);
2969 Log.d(TAG, "--- Number of the parameter is out of bound.");
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java1120 System.out.println("======================================");
1121 System.out.println("performTraversals -- after measure");
1133 System.out.println("======================================");
1134 System.out.println("performTraversals");
1392 // window, waiting until we can finish laying out this window
1750 // start out transparent
1774 System.out.println("======================================");
1775 System.out.println("performTraversals -- after setFrame");
1936 * all children in that container hierarchy are measured and laid out at the end of the layout
1981 Log.v(TAG, "Laying out "
6243 executeCommand(String command, String parameters, ParcelFileDescriptor out) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DTextView.java299 // (i.e. the first movement was to traverse out of this view, or this view was traversed into by
1955 // out all of the fields in the existing structure.
2134 // out all of the fields in the existing structure.
3561 "/" + ss.selEnd + " out of range for " + restored +
3705 CharSequence out = mFilters[i].filter(text, 0, text.length(), EMPTY_SPANNED, 0, 0);
3706 if (out != null) {
3707 text = out;
5446 // prevent the user from traversing out of this on the next key down.
8883 public void writeToParcel(Parcel out, int flags) { argument
8884 super.writeToParcel(out, flag
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java3499 // Figure out which process to kill. We don't trust that initialPid
3601 * as a result of that process going away. Clears out all connections
3996 // this one, mark as anring now so we will bail out.
6472 XmlSerializer out = new FastXmlSerializer();
6473 out.setOutput(fos, "utf-8");
6474 out.startDocument(null, true);
6475 out.startTag(null, TAG_URI_GRANTS);
6477 out.startTag(null, TAG_URI_GRANT);
6478 writeIntAttribute(out, ATTR_USER_HANDLE, perm.userHandle);
6479 out
11839 appendMemBucket(StringBuilder out, long memKB, String label, boolean stackLike) argument
[all...]
/frameworks/base/services/java/com/android/server/pm/
H A DPackageManagerService.java173 adb install -r -f out/target/product/passion/data/app/AndroidTests.apk
644 // Something seriously wrong. Bail out
748 int i = 0; // filling out the above arrays
954 Slog.i(TAG, "Verification timed out for " + args.packageURI.toString());
1813 String[] out = new String[names.length];
1818 out[i] = ps != null && ps.realName != null ? ps.realName : names[i];
1821 return out;
1825 String[] out = new String[names.length];
1830 out[i] = cur != null ? cur : names[i];
1833 return out;
5818 dumpFilter(PrintWriter out, String prefix, PackageParser.ActivityIntentInfo filter) argument
6017 dumpFilter(PrintWriter out, String prefix, PackageParser.ServiceIntentInfo filter) argument
6218 dumpFilter(PrintWriter out, String prefix, PackageParser.ProviderIntentInfo filter) argument
[all...]

Completed in 227 milliseconds

<<1112