Home
last modified time | relevance | path

Searched refs:lines (Results 1 – 13 of 13) sorted by relevance

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DSimpleElement.java214 String[] lines = value.split("\n"); in parseString() local
217 while ((element = parseLines(lines, index)) != null) { in parseString()
227 private static SimpleElement parseLines(String[] lines, int[] inOutIndex) { in parseLines() argument
230 while (index < lines.length) { in parseLines()
231 String line = lines[index++]; in parseLines()
296 SimpleElement e2 = SimpleElement.parseLines(lines, inOutIndex); in parseLines()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
DRenderScriptLauncher.java177 private boolean parseLlvmOutput(ArrayList<String> lines) { in parseLlvmOutput() argument
179 if (lines.size() == 0) { in parseLlvmOutput()
192 for (int i = 0; i < lines.size(); i++) { in parseLlvmOutput()
193 String p = lines.get(i); in parseLlvmOutput()
DAidlProcessor.java319 private boolean parseAidlOutput(ArrayList<String> lines, IFile file) { in parseAidlOutput() argument
321 if (lines.size() == 0) { in parseAidlOutput()
327 for (int i = 0; i < lines.size(); i++) { in parseAidlOutput()
328 String p = lines.get(i); in parseAidlOutput()
DAaptParser.java749 private static final Matcher getNextLineMatcher(String[] lines, in getNextLineMatcher() argument
752 if (nextIndex == lines.length) { in getNextLineMatcher()
758 Matcher m = pattern.matcher(lines[nextIndex]); in getNextLineMatcher()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DAMReceiver.java64 public void processNewLines(String[] lines) { in processNewLines() argument
69 for (String s : lines) { in processNewLines()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
DApkInstallManager.java88 public void processNewLines(String[] lines) { in processNewLines() argument
91 for (String line : lines) { in processNewLines()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
Dcompletion1-expected-completion39.txt17 android:maxLines : Makes the TextView be at most this many lines tall. [integer]
19 android:lines : Makes the TextView be exactly this many lines tall. [integer]
21 android:minLines : Makes the TextView be at least this many lines tall. [integer]
32 …gle horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focu…
59 android:lineSpacingExtra : Extra spacing between lines of text. [dimension]
60 android:lineSpacingMultiplier : Extra spacing between lines of text, as a multiplier. [float]
Dcompletion5-expected-completion40.txt17 android:maxLines : Makes the TextView be at most this many lines tall. [integer]
19 android:lines : Makes the TextView be exactly this many lines tall. [integer]
21 android:minLines : Makes the TextView be at least this many lines tall. [integer]
32 …gle horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focu…
59 android:lineSpacingExtra : Extra spacing between lines of text. [dimension]
60 android:lineSpacingMultiplier : Extra spacing between lines of text, as a multiplier. [float]
Dcompletionvalues1-expected-completion32.txt152 android:lineSpacingExtra : Extra spacing between lines of text. [dimension]
153 android:lineSpacingMultiplier : Extra spacing between lines of text, as a multiplier. [float]
154 android:lines : Makes the TextView be exactly this many lines tall. [integer]
165 android:maxLines : Makes the TextView be at most this many lines tall. [integer]
172 android:minLines : Makes the TextView be at least this many lines tall. [integer]
247 …gle horizontally scrolling line instead of letting it wrap onto multiple lines, and advances focu…
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DVisualRefactoring.java609 String[] lines = xml.split("\n"); //$NON-NLS-1$ in dedent() local
610 if (lines.length < 2) { in dedent()
616 String indentPrefix = getIndent(lines[1], lines[1].length()); in dedent()
617 for (int i = 2, n = lines.length; i < n; i++) { in dedent()
618 String line = lines[i]; in dedent()
633 for (String line : lines) { in dedent()
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
DRefactoringTest.java228 String[] lines = info.split("\n"); //$NON-NLS-1$ in createInfos() local
233 return create(model, Arrays.asList(lines).iterator()); in createInfos()
/sdk/attribute_stats/src/
DAnalyzer.java468 String[] lines = metadata.split("\n"); in printMergedMetadata() local
469 for (int i = 0; i < lines.length; i++) { in printMergedMetadata()
470 String line = lines[i]; in printMergedMetadata()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
DEditableItem.java45 LINES(R.string.lines, TYPE_TEXT_LINES, CATEGORY_STYLE),