HomeSort by relevance Sort by last modified time
    Searched full:lines (Results 576 - 600 of 5102) sorted by null

<<21222324252627282930>>

  /libcore/luni/src/test/java/libcore/java/net/
NetworkInterfaceTest.java 50 String lines[] = new String[] { local
56 ifAddresses, lines);
64 String[] lines = new String[] { local
72 ifAddresses, lines);
  /libcore/tzdata/update/src/main/libcore/tzdata/update/
FileUtils.java 182 * Read all lines from a UTF-8 encoded file, returning them as a list of strings.
189 List<String> lines = new ArrayList<>(); local
192 lines.add(line);
194 return lines;
  /packages/apps/Contacts/res/values/
integers.xml 24 <!-- Number of lines the QuickContact title can have -->
  /packages/apps/Email/src/com/android/email/activity/setup/
PolicyListPreference.java 26 * Simple text preference allowing a large number of lines
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 128 String[] lines = new String[stack.length]; local
130 lines[i] = stack[i].toString();
133 entry.holdingStacks.add(lines);
135 mProfileData.addSample(lines);
  /packages/apps/Messaging/build/
colorize_errors.py 16 # Given an input stream look for Error: and Warning: lines and colorize those to
  /packages/experimental/BugReportSender/src/com/android/bugreportsender/
BugReportParser.java 29 // once we reach that header, accumulate all lines until we get to the next section.
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
NgramContextUtils.java 62 final String[] lines = NEWLINE_REGEX.split(prev);
63 if (lines.length == 0) {
66 final String[] w = SPACE_REGEX.split(lines[lines.length - 1]);
  /packages/providers/CalendarProvider/
maketests.py 43 lines = str.split("\n")
46 for line in lines:
87 lines = stripTimezone(s) variable
88 for s in lines:
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm-generic/
termios.h 31 /* modem lines */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/
tiocl.h 7 #define TIOCL_SELLINE 2 /* select whole lines */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/asm-generic/
termios.h 31 /* modem lines */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
tiocl.h 7 #define TIOCL_SELLINE 2 /* select whole lines */
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
multifile.py 13 "read some lines from fp"
16 "read lines from fp until it returns an empty string" (A)
19 "read remaining lines from fp until it returns an empty string"
91 # Ignore trailing whitespace on marker lines
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_popen.py 11 # Test that command-lines get down as we expect.
test_traceback.py 164 lines = traceback.format_exception_only(type(err), err)
165 self.assertEqual(lines, ['AssertionError: \xff\n'])
168 lines = traceback.format_exception_only(type(err), err)
169 self.assertEqual(lines, ['AssertionError: \\xe9\n'])
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
multifile.py 13 "read some lines from fp"
16 "read lines from fp until it returns an empty string" (A)
19 "read remaining lines from fp until it returns an empty string"
91 # Ignore trailing whitespace on marker lines
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_popen.py 11 # Test that command-lines get down as we expect.
test_traceback.py 164 lines = traceback.format_exception_only(type(err), err)
165 self.assertEqual(lines, ['AssertionError: \xff\n'])
168 lines = traceback.format_exception_only(type(err), err)
169 self.assertEqual(lines, ['AssertionError: \\xe9\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" +
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AMReceiver.java 59 * @param lines a portion of the am output
64 public void processNewLines(String[] lines) {
69 for (String s : lines) {
70 // ignore empty lines.
  /system/extras/perfprofd/
cpuconfig.h 26 // disables the service and on-lines all of the available cores/cpus
  /development/perftests/panorama/feature_mos/src/mosaic/
Pyramid.cpp 31 int lines, size = calcStorage(width, height, border2, levels, &lines); local
34 + sizeof(short *) * lines +
40 ImageTypeShort position = (ImageTypeShort) &y[lines];
96 unsigned int PyramidShort::calcStorage(real width, real height, real border2, int levels, int *lines)
100 *lines = size = 0;
104 *lines += height + border2;
  /external/clang/docs/
ClangFormat.rst 45 -lines=<string> - <start line>:<end line> - format a range of
46 lines (both 1-based).
48 several -lines arguments.
157 a unified diff and reformats all contained lines with :program:`clang-format`.
163 Reformat changed lines in diff. Without -i option just output the diff that
174 So to reformat all the lines in the latest :program:`git` commit, just do:
186 The :option:`-U0` will create a diff without context lines (the script would format
  /external/google-breakpad/src/processor/
module_comparer.cc 199 // compare range map of lines:
202 iter1 = basic_func->lines.map_.begin();
203 iter2 = fast_func->lines.map_.begin();
204 while (iter1 != basic_func->lines.map_.end()
205 && iter2 != fast_func->lines.map_.end()) {
213 ASSERT_TRUE(iter1 == basic_func->lines.map_.end());
214 ASSERT_TRUE(iter2 == fast_func->lines.map_.end());

Completed in 90 milliseconds

<<21222324252627282930>>