/external/v8/src/ |
messages.js | 452 // Default is the first line in the script. Lines in the script is relative 486 * specified in lines. 490 * inclusive). Default is the number of lines in the script 526 // Default is the first line in the script. Lines in the script are relative 547 * Returns the number of source lines. 549 * Number of source lines. 552 // Return number of source lines. 705 * The to_line and to_position are not included in the slice, that is the lines [all...] |
/frameworks/av/media/libeffects/testlibs/ |
AudioEqualizer.h | 86 // alter current parameter values. Causes reset of the delay lines. 95 // It also disables the filter. Does not clear the delay lines. 98 // Clears delay lines. Does not alter parameter values.
|
/frameworks/native/cmds/flatland/ |
GLHelper.cpp | 361 static bool compileShaderLines(GLenum shaderType, const char* const* lines, 363 const char* src = makeShaderString(lines); 367 printShaderSource(lines);
|
/libcore/luni/src/main/java/libcore/io/ |
StrictLineReader.java | 28 * Buffers input from an {@link InputStream} for reading lines. 30 * This class is used for buffered reading of lines. For purposes of this class, a line ends with 35 * This class is intended for reading input that strictly consists of lines, such as line-based
|
/libcore/tzdata/update/src/test/libcore/tzdata/update/ |
FileUtilsTest.java | 246 List<String> lines = FileUtils.readLines(file); local 247 assertEquals(3, lines.size()); 248 assertEquals(lines, Arrays.asList("One", "Two", "Three"));
|
/packages/apps/Email/src/com/android/email/mail/transport/ |
SmtpSender.java | 230 * onto multiple lines. Throws MessagingException if response code is 4xx or 5xx. All traffic 242 * onto multiple lines. Throws MessagingException if response code is 4xx or 5xx. 282 // Lines 2-5 of the conversation contain base64-encoded information. The same conversation, with base64 strings decoded, reads:
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HtmlTree.java | 649 BlankLine // two new lines 707 * A BlankLine separator (two new lines) should be set for opening and 764 // We're in a <pre> block. Split the text into lines, and append 766 String[] lines = text.split("[\\r\\n]", -1); local 769 appendTextDirect(lines[0]); 771 // For all of the remaining lines, we append a newline first, which 774 for (int i = 1; i < lines.length; i++) { 776 appendTextDirect(lines[i]); 785 * {@code text} must not contain any new lines--in order to handle 787 * newlines, or split the text up into separate lines and handle new line [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 167 lines = traceback.format_exception_only(typ, val) 168 for line in lines: 172 "Remove excluded traces from beginning/end of tb; get cached lines"
|
PyShell.py | 219 lines = old_file.readlines() 221 lines = [] 224 for line in lines: 248 lines = open(self.breakpointPath,"r").readlines() 249 for line in lines: 263 lines = [] 268 lines.append(lineno) 270 return lines 663 lines = source.split("\n") 664 linecache.cache[filename] = len(source)+1, 0, lines, filenam [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
rfc822.py | 28 work; also illegal lines will be pushed back onto the input stream. If the 30 of input, Message will use that to push back illegal lines. Thus this class 123 """Read header lines. 125 Read header lines up to the entirely blank line that terminates them. 133 completely uninterpreted list of lines contained in the header (so 159 # Skip unix From name time lines 229 """Find all header lines matching a given header name. 231 Look through the list of headers and find all lines matching a given 232 header name (and their continuation lines). A list of the lines i [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_file.py | 268 # ("h", "a", "m", "\n"), so 4096 lines of that should get us 305 lines = f.readlines() 309 if lines != testlines:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
run.py | 167 lines = traceback.format_exception_only(typ, val) 168 for line in lines: 172 "Remove excluded traces from beginning/end of tb; get cached lines"
|
PyShell.py | 219 lines = old_file.readlines() 221 lines = [] 224 for line in lines: 248 lines = open(self.breakpointPath,"r").readlines() 249 for line in lines: 263 lines = [] 268 lines.append(lineno) 270 return lines 663 lines = source.split("\n") 664 linecache.cache[filename] = len(source)+1, 0, lines, filenam [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
rfc822.py | 28 work; also illegal lines will be pushed back onto the input stream. If the 30 of input, Message will use that to push back illegal lines. Thus this class 123 """Read header lines. 125 Read header lines up to the entirely blank line that terminates them. 133 completely uninterpreted list of lines contained in the header (so 159 # Skip unix From name time lines 229 """Find all header lines matching a given header name. 231 Look through the list of headers and find all lines matching a given 232 header name (and their continuation lines). A list of the lines i [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_file.py | 268 # ("h", "a", "m", "\n"), so 4096 lines of that should get us 305 lines = f.readlines() 309 if lines != testlines:
|
/system/extras/tests/sdcard/ |
plot_sdcard.py | 201 gp('set data style lines') 217 with_='lines ls %d' % styles[dataset.name]) 220 with_='lines ls %d' % styles[dataset.name])
|
/external/regex-re2/lib/codereview/ |
codereview.py | 356 lines = msg.splitlines() 357 if len(lines) >= 2: 358 msg = lines[0] 359 patchset = lines[1].strip() 360 patches = [x.split(" ", 1) for x in lines[2:]] 628 # some lines with spaces, some with tabs. Only a heuristic 688 # Lines beginning with # are ignored. 979 # CONTRIBUTORS is a list of lines like: [all...] |
/hardware/qcom/msm8x84/original-kernel-headers/linux/ |
videodev2.h | 338 #define V4L2_PIX_FMT_M420 v4l2_fourcc('M', '4', '2', '0') /* 12 YUV 4:2:0 2 lines y, 1 line uv interleaved */ [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/ |
gprof.info | 387 The `-t' option causes the NUM most active source lines in each 453 Sets width of output lines to WIDTH. Currently only used when 457 `--all-lines' 459 only the lines at the beginning of a basic-block are annotated. 518 histogram hits to be charged to individual source code lines, 718 * Line-by-line:: `gprof' can analyze individual source code lines [all...] |
/build/core/tasks/ |
deps_licenses.mk | 22 # The printout lines look like "<module_name> :: <module_paths> :: <license_files>".
|
/build/tools/ |
dump-package-stats | 122 # Only look for lines where the ratio is the fourth column;
|
/cts/apps/CameraITS/tests/scene1/ |
test_exposure.py | 84 # (which would make them look like flat lines).
|
/cts/tests/tests/permission/src/android/permission/cts/ |
NoReadLogsPermissionTest.java | 39 * We test this by examining the logs looking for ActivityManager lines.
|
/cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/testtype/ |
WrappedGTestResultParserTest.java | 92 * with all kinds of valid input lines.
|
/dalvik/dexgen/src/com/android/dexgen/util/ |
HexParser.java | 39 * quote. Quoted strings may not span multiple lines.
|