Searched defs:prefix (Results 1 - 25 of 180) sorted by relevance

12345678

/frameworks/base/core/java/android/util/
H A DPrefixPrinter.java21 * prefix.
32 * <p>If prefix is null or empty, the provided printer is returned, rather
35 public static Printer create(Printer printer, String prefix) { argument
36 if (prefix == null || prefix.equals("")) {
39 return new PrefixPrinter(printer, prefix);
42 private PrefixPrinter(Printer printer, String prefix) { argument
44 mPrefix = prefix;
/frameworks/base/tools/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/android/
H A DBridgeXmlBlockParserTest.java71 private void dump(Node node, String prefix) { argument
91 prefix,
100 dump(n, prefix + "- ");
105 dump(n, prefix);
/frameworks/base/core/java/com/android/internal/util/
H A DLocalLog.java49 public boolean dump(PrintWriter pw, String header, String prefix) { argument
58 if (prefix != null) {
59 pw.print(prefix);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DNamedCounter.java28 public NamedCounter(String prefix, String suffix) { argument
29 mPrefix = prefix;
/frameworks/base/services/core/java/com/android/server/pm/
H A DPreferredIntentResolver.java36 protected void dumpFilter(PrintWriter out, String prefix, argument
38 filter.mPref.dump(out, prefix, filter);
/frameworks/compile/mclinker/lib/Script/
H A DWildcardPattern.cpp43 llvm::StringRef WildcardPattern::prefix() const function in class:WildcardPattern
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapCard.java41 public final String prefix; field in class:BluetoothPbapCard
58 prefix = parsedName.length < 4 ? null : parsedName[3];
72 json.put("prefix", prefix);
90 json.put("prefix", name.getPrefix());
/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DActivityCompatHoneycomb.java32 static void dump(Activity activity, String prefix, FileDescriptor fd, argument
34 activity.dump(prefix, fd, writer, args);
/frameworks/base/core/java/android/content/pm/
H A DServiceInfo.java76 public void dump(Printer pw, String prefix) { argument
77 super.dumpFront(pw, prefix);
78 pw.println(prefix + "permission=" + permission);
79 pw.println(prefix + "flags=0x" + Integer.toHexString(flags));
H A DComponentInfo.java142 protected void dumpFront(Printer pw, String prefix) { argument
143 super.dumpFront(pw, prefix);
144 pw.println(prefix + "enabled=" + enabled + " exported=" + exported
147 pw.println(prefix + "description=" + descriptionRes);
151 protected void dumpBack(Printer pw, String prefix) { argument
153 pw.println(prefix + "ApplicationInfo:");
154 applicationInfo.dump(pw, prefix + " ");
156 pw.println(prefix + "ApplicationInfo: null");
158 super.dumpBack(pw, prefix);
H A DProviderInfo.java117 public void dump(Printer pw, String prefix) { argument
118 super.dumpFront(pw, prefix);
119 pw.println(prefix + "authority=" + authority);
120 pw.println(prefix + "flags=0x" + Integer.toHexString(flags));
/frameworks/base/core/java/android/net/
H A DIpPrefix.java28 * This class represents an IP prefix, i.e., a contiguous block of IP addresses aligned on a
29 * power of two boundary (also known as an "IP subnet"). A prefix is specified by two pieces of
33 * <li>A starting IP address (IPv4 or IPv6). This is the first IP address of the prefix.
34 * <li>A prefix length. This specifies the length of the prefix by specifing the number of bits
36 * are constant for all addresses in the prefix.
39 * For example, the prefix <code>192.0.2.0/24</code> covers the 256 IPv4 addresses from
40 * <code>192.0.2.0</code> to <code>192.0.2.255</code>, inclusive, and the prefix
60 * network byte order and a prefix length. Silently truncates the address to the prefix lengt
100 IpPrefix(String prefix) argument
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DAppBindRecord.java35 void dump(PrintWriter pw, String prefix) { argument
36 pw.println(prefix + "service=" + service);
37 pw.println(prefix + "client=" + client);
38 dumpInIntentBind(pw, prefix);
41 void dumpInIntentBind(PrintWriter pw, String prefix) { argument
44 pw.println(prefix + "Per-process Connections:");
47 pw.println(prefix + " " + c);
H A DUserStartedState.java47 void dump(String prefix, PrintWriter pw) { argument
48 pw.print(prefix); pw.print("mState=");
H A DBroadcastFilter.java43 public void dump(PrintWriter pw, String prefix) { argument
44 dumpInReceiverList(pw, new PrintWriterPrinter(pw), prefix);
45 receiverList.dumpLocal(pw, prefix);
48 public void dumpBrief(PrintWriter pw, String prefix) { argument
49 dumpBroadcastFilterState(pw, prefix);
52 public void dumpInReceiverList(PrintWriter pw, Printer pr, String prefix) { argument
53 super.dump(pr, prefix);
54 dumpBroadcastFilterState(pw, prefix);
57 void dumpBroadcastFilterState(PrintWriter pw, String prefix) { argument
59 pw.print(prefix); p
[all...]
H A DConnectionRecord.java38 void dump(PrintWriter pw, String prefix) { argument
39 pw.println(prefix + "binding=" + binding);
41 pw.println(prefix + "activity=" + activity);
43 pw.println(prefix + "conn=" + conn.asBinder()
H A DIntentBindRecord.java51 void dump(PrintWriter pw, String prefix) { argument
52 pw.print(prefix); pw.print("service="); pw.println(service);
53 dumpInService(pw, prefix);
56 void dumpInService(PrintWriter pw, String prefix) { argument
57 pw.print(prefix); pw.print("intent={");
60 pw.print(prefix); pw.print("binder="); pw.println(binder);
61 pw.print(prefix); pw.print("requested="); pw.print(requested);
67 pw.print(prefix); pw.print("* Client AppBindRecord{");
70 a.dumpInIntentBind(pw, prefix + " ");
H A DUriPermissionOwner.java134 public void dump(PrintWriter pw, String prefix) { argument
136 pw.print(prefix); pw.print("readUriPermissions="); pw.println(mReadPerms);
139 pw.print(prefix); pw.print("writeUriPermissions="); pw.println(mWritePerms);
/frameworks/base/core/tests/coretests/src/android/net/
H A DRouteInfoTest.java35 private IpPrefix Prefix(String prefix) { argument
36 return new IpPrefix(prefix);
/frameworks/base/core/tests/coretests/src/android/widget/
H A DAutoCompleteTextViewSimple.java68 * Set the autocomplete data to an adapter containing 0..n strings with a consistent prefix.
70 public void setStringAdapter(int numSuggestions, String prefix) { argument
74 strings[i] = prefix + String.valueOf(i);
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DGlobalKeyManager.java129 public void dump(String prefix, PrintWriter pw) { argument
132 pw.print(prefix); pw.println("mKeyMapping.size=0");
135 pw.print(prefix); pw.println("mKeyMapping={");
138 pw.print(prefix);
143 pw.print(prefix); pw.println("}");
H A DWakeGestureListener.java75 public void dump(PrintWriter pw, String prefix) { argument
77 pw.println(prefix + TAG);
78 prefix += " ";
79 pw.println(prefix + "mTriggerRequested=" + mTriggerRequested);
80 pw.println(prefix + "mSensor=" + mSensor);
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowToken.java90 void dump(PrintWriter pw, String prefix) { argument
91 pw.print(prefix); pw.print("windows="); pw.println(windows);
92 pw.print(prefix); pw.print("windowType="); pw.print(windowType);
96 pw.print(prefix); pw.print("waitingToShow="); pw.print(waitingToShow);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DHwTests.java58 protected List<Map<String, Object>> getData(String prefix) { argument
71 String prefixWithSlash = prefix;
73 if (prefix.equals("")) {
76 prefixPath = prefix.split("/");
77 prefixWithSlash = prefix + "/";
103 addItem(myData, nextLabel, browseIntent(prefix.equals("") ?
104 nextLabel : prefix + "/" + nextLabel));
/frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
H A DVectorDrawableTest.java57 protected List<Map<String, Object>> getData(String prefix) { argument
70 String prefixWithSlash = prefix;
72 if (prefix.equals("")) {
75 prefixPath = prefix.split("/");
76 prefixWithSlash = prefix + "/";
102 addItem(myData, nextLabel, browseIntent(prefix.equals("") ?
103 nextLabel : prefix + "/" + nextLabel));

Completed in 573 milliseconds

12345678