HomeSort by relevance Sort by last modified time
    Searched full:line (Results 476 - 500 of 19614) sorted by null

<<11121314151617181920>>

  /external/llvm/test/JitListener/
test-inline.ll 4 ; CHECK: Line info @ 0: test-inline.cpp, line 33
5 ; CHECK: Line info @ 35: test-inline.cpp, line 34
6 ; CHECK: Line info @ 165: test-inline.cpp, line 35
8 ; CHECK: Line info @ 0: test-inline.cpp, line 28
9 ; CHECK: Line info @ 2: test-inline.cpp, line 2
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 17 f.writelines(list) # for line in list: f.write(line)
104 line = self.readline()
105 while line:
106 lines.append(line)
107 total += len(line)
110 line = self.readline()
157 for line in lines[:-2]:
158 f.write(line)
167 print 'First line =', repr(f.readline()
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 9 # * If there is a selection marked, and the first line of the
83 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
84 while text.compare("%d.0" % lineno, "<", "end") and is_all_white(line):
86 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
88 comment_header = get_comment_header(line)
90 while get_comment_header(line)==comment_header and \
91 not is_all_white(line[comment_header_len:]):
93 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
97 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
99 get_comment_header(line)==comment_header and
    [all...]
OutputWindow.py 17 self.text.bind("<<goto-file-line>>", self.goto_file_line)
51 for line in lines:
52 self.write(line)
64 ("Go to file/line", "<<goto-file-line>>", None),
69 r'file "([^"]*)", line (\d+)',
86 line = self.text.get("insert linestart", "insert lineend")
87 result = self._file_line_helper(line)
89 # Try the previous line. This is handy e.g. in tracebacks,
90 # where you tend to right-click on the displayed source line
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/
dbrecio.py 17 f.writelines(list) # for line in list: f.write(line)
104 line = self.readline()
105 while line:
106 lines.append(line)
107 total += len(line)
110 line = self.readline()
157 for line in lines[:-2]:
158 f.write(line)
167 print 'First line =', repr(f.readline()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
FormatParagraph.py 9 # * If there is a selection marked, and the first line of the
83 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
84 while text.compare("%d.0" % lineno, "<", "end") and is_all_white(line):
86 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
88 comment_header = get_comment_header(line)
90 while get_comment_header(line)==comment_header and \
91 not is_all_white(line[comment_header_len:]):
93 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
97 line = text.get("%d.0" % lineno, "%d.0 lineend" % lineno)
99 get_comment_header(line)==comment_header and
    [all...]
OutputWindow.py 17 self.text.bind("<<goto-file-line>>", self.goto_file_line)
51 for line in lines:
52 self.write(line)
64 ("Go to file/line", "<<goto-file-line>>", None),
69 r'file "([^"]*)", line (\d+)',
86 line = self.text.get("insert linestart", "insert lineend")
87 result = self._file_line_helper(line)
89 # Try the previous line. This is handy e.g. in tracebacks,
90 # where you tend to right-click on the displayed source line
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/sed/
execute.c 87 /* Sed operates a line at a time. */ struct
88 struct line {
89 char *text; /* Pointer to line allocated by malloc. */
100 #define SIZEOF_LINE offsetof (struct line, mbstate)
102 #define SIZEOF_LINE (sizeof (struct line))
126 /* Current input line number (over all files). */
129 /* True if we'll reset line numbers and addresses before
133 /* Function to read one line. If FP is NULL, read_fn better not
136 bool (*read_fn) P_((struct input *)); /* read one line */
158 /* The `current' input line. * variable in typeref:struct:line
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/compiler/
ParseHelper.cpp 25 bool TParseContext::parseVectorFields(const TString& compString, int vecSize, TVectorFields& fields, const TSourceLoc& line)
29 error(line, "illegal vector field selection", compString.c_str());
91 error(line, "illegal vector field selection", compString.c_str());
98 error(line, "vector field selection out of range", compString.c_str());
104 error(line, "illegal - vector component fields not from the same set", compString.c_str());
118 bool TParseContext::parseMatrixFields(const TString& compString, int matSize, TMatrixFields& fields, const TSourceLoc& line)
126 error(line, "illegal length of matrix field selection", compString.c_str());
132 error(line, "illegal matrix field selection", compString.c_str());
139 error(line, "illegal matrix field selection", compString.c_str());
147 error(line, "illegal matrix field selection", compString.c_str())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
WebVTTParser.cpp 146 String line = collectNextLine(data, length, &position); local
155 // 4-12 - Collect the first line and check for "WEBVTT".
167 // 13-18 - Allow a header (comment area) under the WEBVTT line.
169 if (line.isEmpty()) {
176 collectHeader(line);
182 if (line.isEmpty())
187 // 19-29 - Allow any number of line terminators, then initialize new cue values.
188 if (line.isEmpty())
192 // 30-39 - Check if this line contains an optional identifier or timing data.
193 m_state = collectCueId(line);
222 String line = collectNextLine(m_identifierData.data(), m_identifierData.size(), &position); local
568 String line = String::fromUTF8(data + oldPosition, *position - oldPosition); local
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
HexParser.java 32 * corresponding to the text. The format is simple: Each line may
36 * is encountered, it and the rest of the line are ignored as a
57 String line; local
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
65 int colonAt = line.indexOf(':');
69 int quoteAt = line.indexOf('\"');
74 String atStr = line.substring(0, colonAt).trim();
75 line = line.substring(colonAt + 1)
    [all...]
  /dalvik/dx/src/com/android/dx/util/
HexParser.java 32 * corresponding to the text. The format is simple: Each line may
36 * is encountered, it and the rest of the line are ignored as a
57 String line; local
59 line = src.substring(at, poundAt);
61 line = src.substring(at, nlAt);
65 int colonAt = line.indexOf(':');
69 int quoteAt = line.indexOf('\"');
74 String atStr = line.substring(0, colonAt).trim();
75 line = line.substring(colonAt + 1)
    [all...]
  /external/bison/po/
insert-header.sin 3 # At each occurrence of a line starting with "msgid ", we execute the following
14 # Output the file's contents by reading the next line. But don't lose the
15 # current line while doing this.
  /external/bison/runtime-po/
insert-header.sin 3 # At each occurrence of a line starting with "msgid ", we execute the following
14 # Output the file's contents by reading the next line. But don't lose the
15 # current line while doing this.
  /external/chromium/base/
debug_message.cc 7 // Display the command line. This program is designed to be called from
9 // complete control of our command line, we assume that it did *not*
11 // show the command line directly as the message.
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/
index.yaml 12 # index.yaml file manually, remove the above marker line (the line
14 # manually, move them above the marker line. The index.yaml file is
  /external/chromium_org/base/
debug_message.cc 7 // Display the command line. This program is designed to be called from
9 // complete control of our command line, we assume that it did *not*
11 // show the command line directly as the message.
  /external/chromium_org/build/android/pylib/
io_stats_parser.py 14 def ParseIoStatsLine(line):
15 """Parses a line of io stats into a IoStats named tuple."""
31 fields = line.split()
  /external/chromium_org/chrome/common/extensions/api/
command_line_private.json 13 "description": "Returns whether a switch is specified on the command line when launching Chrome.",
18 "description": "The name of a command line switch, without leading \"--\", such as \"enable-experimental-extension-apis\"."
27 "description": "Whether the switch is specified on the command line."
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/hello-python/
index.yaml 11 # index.yaml file manually, remove the above marker line (the line
13 # manually, move them above the marker line. The index.yaml file is
  /external/chromium_org/remoting/tools/
gaia_auth.py 25 for line in result.splitlines():
26 if line.startswith('Auth='):
27 auth_string = line[5:]
  /external/chromium_org/third_party/yasm/source/patched-yasm/po/
insert-header.sin 3 # At each occurrence of a line starting with "msgid ", we execute the following
14 # Output the file's contents by reading the next line. But don't lose the
15 # current line while doing this.
  /external/clang/test/CodeGen/
linetable-endscope.c 3 // Check the line numbers for the ret instruction. We expect it to be
14 // CHECK: ![[CONV]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
16 // CHECK: ![[RET]] = metadata !{i32 [[@LINE+1]], i32 0, metadata !{{.*}}, null}
  /external/clang/test/Index/
annotate-comments-availability-attrs.cpp 16 // CHECK: FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments-availability-attrs.cpp" line="[[@LINE-3]]" column="6"><Name>attr_availability_1</Name><USR>c:@F@attr_availability_1#</USR><Declaration>void attr_availability_1()</Declaration><Abstract><Para> Aaa.</Para></Abstract><Availability distribution="iOS"><DeprecationSummary>not for iOS</DeprecationSummary><Unavailable/></Availability><Availability distribution="OS X"><IntroducedInVersion>8.0</IntroducedInVersion><DeprecatedInVersion>9.0</DeprecatedInVersion><RemovedAfterVersion>10.0</RemovedAfterVersion><DeprecationSummary>use availability_test in &lt;foo.h&gt;</DeprecationSummary></Availability></Function>]
21 // CHECK: FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments-availability-attrs.cpp" line="[[@LINE-2]]" column="6"><Name>attr_availability_2</Name><USR>c:@F@attr_availability_2#</USR><Declaration>void attr_availability_2()</Declaration><Abstract><Para> Aaa.</Para></Abstract><Availability distribution="OS X"><IntroducedInVersion>8.0.1</IntroducedInVersion><DeprecatedInVersion>9.0.1</DeprecatedInVersion><RemovedAfterVersion>10.0.1</RemovedAfterVersion></Availability></Function>]
26 // CHECK: FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments-availability-attrs.cpp" line="[[@LINE-2]]" column="6"><Name>attr_deprecated_1</Name><USR>c:@F@attr_deprecated_1#</USR><Declaration>void attr_deprecated_1()</Declaration><Abstract><Para> Aaa.</Para></Abstract><Deprecated/></Function>]
31 // CHECK: FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments-availability-attrs.cpp" line="[[@LINE-2]]" column="6"><Name>attr_deprecated_2</Name><USR>c:@F@attr_deprecated_2#</USR><Declaration>void attr_deprecated_2()</Declaration><Abstract><Para> Aaa.</Para></Abstract><Deprecated>message 1 &lt;foo.h&gt;</Deprecated></Function>]
37 // CHECK: FullCommentAsXML=[<Function file="{{[^"]+}}annotate-comments-availability-attrs.cpp" line="[[@LINE-2]]" column="6"><Name>attr_unavailable_1</Name><USR>c:@F@attr_unavailable_1#</USR><Declaration>voi (…)
    [all...]
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
double-free.cc 12 // CHECK: double-free.cc:[[@LINE-2]]
14 // CHECK: double-free.cc:[[@LINE-5]]
16 // CHECK: double-free.cc:[[@LINE-10]]

Completed in 999 milliseconds

<<11121314151617181920>>