HomeSort by relevance Sort by last modified time
    Searched refs:LINES (Results 1 - 25 of 50) sorted by null

1 2

  /dalvik/dx/src/com/android/dx/dex/cf/
CfOptions.java 27 public int positionInfo = PositionList.LINES;
  /external/gptfdisk/
gptcurses.cc 31 // # of lines to reserve for general information and headers (RESERVED_TOP)
233 if ((space != NULL) && (lineNum < (LINES - 5))) {
273 numToShow = LINES - RESERVED_TOP - RESERVED_BOTTOM;
352 move(LINES - 4, 0);
354 move(LINES - 4, 0);
376 move(LINES - 4, 0);
378 move(LINES - 4, 0);
398 move(LINES - 4, 0);
402 move(LINES - 3, 0);
431 move(LINES - 4, 0)
    [all...]
  /external/e2fsprogs/ext2ed/
win.c 55 show_pad_info.display_lines=LINES-TITLE_WIN_LINES-SHOW_WIN_LINES-COMMAND_WIN_LINES-2;
69 if (LINES<TITLE_WIN_LINES+SHOW_WIN_LINES+COMMAND_WIN_LINES+3) {
79 mt_win2=newwin (1,COLS,LINES-COMMAND_WIN_LINES-1,0);
80 command_win=newwin (COMMAND_WIN_LINES,COLS,LINES-COMMAND_WIN_LINES,0);
203 if ((ws.ws_row != LINES) || (ws.ws_col != COLS)) {
213 mvwin(mt_win2, LINES-COMMAND_WIN_LINES-1,0);
214 mvwin(command_win, LINES-COMMAND_WIN_LINES,0);
216 show_pad_info.display_lines=LINES-TITLE_WIN_LINES-SHOW_WIN_LINES-COMMAND_WIN_LINES-2;
main.c 230 mvcur (-1,-1,LINES-COMMAND_WIN_LINES,0);
252 mvcur (-1,-1,LINES-COMMAND_WIN_LINES,0);
324 mvcur (-1,-1,LINES-COMMAND_WIN_LINES + 1,0);
  /external/mksh/src/
var_spec.h 31 FN(LINES)
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
PositionList.java 40 public static final int LINES = 2;
63 case LINES:
  /dalvik/dx/src/com/android/dx/dex/code/
PositionList.java 40 public static final int LINES = 2;
63 case LINES:
  /external/dexmaker/src/dx/java/com/android/dx/dex/code/
PositionList.java 40 public static final int LINES = 2;
63 case LINES:
  /external/icu/icu4c/source/test/intltest/
thcoll.cpp 74 * gets the same results when comparing lines one to another
350 #define LINES 6
353 const char *tests[LINES] = {
362 UChar strings[LINES][20];
364 UChar *toSort[LINES];
385 qsort (toSort, LINES, sizeof (UChar *), StrCmp);
387 for (i=0; i < LINES; i++)
390 for (j=i+1; j < LINES; j++) {
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
DisplayModifier.java 43 private static final float[] LINES = new float[NUM_PARALLEL_LINES * 8
55 System.arraycopy(TRIANGLE_POINTS, 0, LINES, 0, TRIANGLE_POINTS.length);
59 LINES[index + 0] = 40;
60 LINES[index + 1] = val;
61 LINES[index + 2] = 80;
62 LINES[index + 3] = val;
68 LINES[index + 0] = val;
69 LINES[index + 1] = 40;
70 LINES[index + 2] = val;
71 LINES[index + 3] = 80
    [all...]
  /external/toybox/kconfig/lxdialog/
yesno.c 55 y = (LINES - height) / 2;
inputbox.c 65 y = (LINES - height) / 2;
checklist.c 138 y = (LINES - height) / 2;
textbox.c 87 y = (LINES - height) / 2;
268 * Go back 'n' lines in text. Called by dialog_textbox().
276 /* Go back 'n' lines */
365 /* Truncate lines longer than MAX_LEN characters */
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/generator/
CodeGenerator.java 30 import static com.android.notificationstudio.model.EditableItem.LINES;
103 if (LINES.hasValue()) {
104 for (String line : LINES.getValueString().split("\\n")) {
NotificationGenerator.java 30 import static com.android.notificationstudio.model.EditableItem.LINES;
118 if (LINES.hasValue()) {
119 for (String line : LINES.getValueString().split("\\n")) {
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
EditableItem.java 45 LINES(R.string.lines, TYPE_TEXT_LINES, CATEGORY_STYLE),
128 LINES.setVisible(STYLE_INBOX.equals(mValue));
148 LINES.setValue("Alice: Re: Something\n" +
  /external/guava/guava-tests/test/com/google/common/io/
CharSourceTest.java 58 private static final String LINES = "foo\nbar\r\nbaz\rsomething";
112 TestCharSource lines = new TestCharSource(LINES); local
113 assertEquals("foo", lines.readFirstLine());
114 assertTrue(lines.wasStreamOpened() && lines.wasStreamClosed());
118 TestCharSource lines = new TestCharSource(LINES); local
119 assertEquals(ImmutableList.of("foo", "bar", "baz", "something"), lines.readLines());
120 assertTrue(lines.wasStreamOpened() && lines.wasStreamClosed())
124 TestCharSource lines = new TestCharSource(LINES); local
144 TestCharSource lines = new TestCharSource(LINES); local
    [all...]
  /frameworks/base/tests/notification/src/com/android/frameworks/tests/notification/
NotificationTests.java 91 static final String[] LINES = new String[] {
134 if (end > LINES.length) {
135 end = LINES.length;
139 if (i >= LINES.length) break;
141 longSmsText.append(LINES[i]);
  /external/mesa3d/src/gallium/drivers/nv30/
nv30_context.h 215 NV30_PRIM_GL_CASE(LINES);
  /external/llvm/utils/lit/lit/
ProgressBar.py 44 they will be stored in the `COLS` and `LINES` attributes.
72 LINES = None #: Height of the terminal (None for unknown)
111 self.LINES = curses.tigetnum('lines')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_curses.py 260 lines, cols = curses.LINES, curses.COLS
261 curses.resizeterm(lines - 1, cols + 1)
263 if curses.LINES != lines - 1 or curses.COLS != cols + 1:
264 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_curses.py 260 lines, cols = curses.LINES, curses.COLS
261 curses.resizeterm(lines - 1, cols + 1)
263 if curses.LINES != lines - 1 or curses.COLS != cols + 1:
264 raise RuntimeError, "Expected resizeterm to update LINES and COLS"
  /prebuilts/gradle-plugin/com/android/tools/jack/jack-api/0.9.0/
jack-api-0.9.0.jar 
  /external/mesa3d/src/gallium/drivers/nv50/
nv50_push.c 187 NV50_PRIM_GL_CASE(LINES);

Completed in 2370 milliseconds

1 2