Home
last modified time | relevance | path

Searched refs:line (Results 1 – 12 of 12) sorted by relevance

/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
DViewHierarchyLoader.java46 String line; in loadScene() local
70 while ((line = in.readLine()) != null) { in loadScene()
71 if ("DONE.".equalsIgnoreCase(line)) { in loadScene()
75 int whitespaceCount = countFrontWhitespace(line); in loadScene()
86 line = line.trim(); in loadScene()
87 int index = line.indexOf(' '); in loadScene()
90 lastNode.name = line.substring(0, index); in loadScene()
92 line = line.substring(index + 1); in loadScene()
93 loadProperties(lastNode, line); in loadScene()
146 private static int countFrontWhitespace(String line) { in countFrontWhitespace() argument
[all …]
DWindowsLoader.java53 String line; in loadWindows() local
54 while ((line = in.readLine()) != null) { in loadWindows()
55 if ("DONE.".equalsIgnoreCase(line)) { in loadWindows()
59 int index = line.indexOf(' '); in loadWindows()
61 String windowId = line.substring(0, index); in loadWindows()
70 Window w = new Window(line.substring(index + 1), id); in loadWindows()
/sdk/apkbuilder/
Dreadme.txt1 The apkbuilder command line tool is deprecated, and is not maintained anymore.
/sdk/templates/docs/
Ddefault.css77 line-height: 16px;
137 line-height: 48px;
145 line-height: 24px;
154 line-height: 24px;
163 line-height: 24px;
Dprettify.js10 …:m.push(["com",/^#(?:(?:define|elif|else|endif|error|ifdef|include|ifndef|line|pragma|undef|warnin…
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
DCodeGenerator.java104 for (String line : LINES.getValueString().split("\\n")) { in generateStyle()
105 sb.append(STYLE_INDENT + ".addLine(" + quote(line) + ")"); in generateStyle()
DNotificationGenerator.java119 for (String line : LINES.getValueString().split("\\n")) { in generateStyle()
120 inboxStyle.addLine(line); in generateStyle()
/sdk/eventanalyzer/src/com/android/eventanalyzer/
DEventAnalyzer.java226 String line; in parseTextLogFile() local
227 while ((line = reader.readLine()) != null) { in parseTextLogFile()
228 processEvent(mParser.parse(line)); in parseTextLogFile()
/sdk/docs/
Dhowto_use_cupcake_sdk.txt57 Unzip the SDK somewhere. We'll call that directory "SDK" in command-line
224 The bottom line is that you can create many emulator configurations, or "AVDs",
231 these operations. For right now, please use the command line interface.
259 command line.
299 D- Invoking an AVD from the command-line
302 To use this AVD in the emulator from the command-line, type:
Dhowto_build_SDK.txt57 It is designed for advanced users which are proficient with command-line
/sdk/find_java/
Dfind_java.bat21 rem Command-line reference:
/sdk/
DREADME.txt23 To build it from the command-line, you'd use "gradle" as such: