HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 401 - 425 of 2369) sorted by null

<<11121314151617181920>>

  /prebuilts/libs/libedit/include/editline/
readline.h 56 const char *line; member in struct:_hist_entry
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Text_Suite.py 36 class line(aetools.ComponentItem): class in inherits:aetools.ComponentItem
37 """line - A line of text """
44 lines = line
121 line._superclassnames = ['text']
122 line._privpropdict = {
126 line._privelemdict = {
146 'line' : line,
196 'clin' : line,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 113 * Handles a parsing error and an optional line number.
157 // get the line number
158 int line = locator.getLineNumber(); local
162 AdtConstants.MARKER_ANDROID, result, line, IMarker.SEVERITY_ERROR);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
WindowsLoader.java 53 String line; local
54 while ((line = in.readLine()) != null) {
55 if ("DONE.".equalsIgnoreCase(line)) {
59 int index = line.indexOf(' ');
61 String windowId = line.substring(0, index);
70 Window w = new Window(line.substring(index + 1), id);
  /system/extras/libpagemap/
pm_process.c 246 char line[MAX_LINE], name[MAX_LINE], perms[MAX_PERMS]; local
272 while (fgets(line, MAX_LINE, maps_f)) {
290 sscanf(line, "%" SCNx64 "-%" SCNx64 " %s %" SCNx64 " %*s %*d %" S(MAX_LINE) "s",
  /system/vold/bench/
benchgen.py 115 for line in f:
116 line = re_event.match(line) variable
117 if not line: continue
119 time, call, args, ret = line.groups()
  /frameworks/base/core/java/android/text/
BoringLayout.java 26 * fits on a single line and is all left-to-right characters.
206 TextLine line = TextLine.obtain(); local
207 line.set(paint, source, 0, source.length(), Layout.DIR_LEFT_TO_RIGHT,
209 mMax = (int) Math.ceil(line.metrics(null));
210 TextLine.recycle(line);
308 TextLine line = TextLine.obtain(); local
309 line.set(paint, text, 0, length, Layout.DIR_LEFT_TO_RIGHT,
311 fm.width = (int) Math.ceil(line.metrics(fm));
312 TextLine.recycle(line);
331 public int getLineTop(int line) {
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/configparse/
MIMEContainer.java 84 String line = in.readLine(); local
85 if (line == null) {
89 if (line.startsWith("--") && line.length() == subBoundary.length() + 2 &&
90 line.regionMatches(2, subBoundary, 0, subBoundary.length())) {
204 String line = in.readLine(); local
205 if ( line == null ) {
208 else if (line.length() == 0) {
212 if (line.charAt(0) <= ' ') {
214 throw new IOException("Illegal blank prefix in header line '" + line + "' @ " + in.getLineNumber())
258 String line = in.readLine(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveryUpdater.java 77 String line = reader.readLine(); local
78 while (line != null) {
79 checkBuildLine(line);
80 line = reader.readLine();
149 private static class Line {
150 private final String line; field in class:NdkDiscoveryUpdater.Line
153 public Line(String line) {
154 this.line = line;
209 Line line = new Line(text); local
264 String line = reader.readLine(); local
294 String line = reader.readLine(); local
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/
plexus-interactivity-api-1.0-alpha-4.jar 
  /external/proguard/src/proguard/retrace/
ReTrace.java 193 // Read a line.
194 String line = reader.readLine(); local
195 if (line == null)
201 Matcher matcher = pattern.matcher(line);
205 // The line matched the regular expression.
210 // Extract a class name, a line number, a type, and
245 // Deconstruct the input line and reconstruct the output
246 // line. Also collect any additional output lines for this
247 // line.
261 // Copy a literal piece of the input line
    [all...]
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyServer.java 180 * Sends HTTP request-line (i.e. the first line in the request)
187 * @throws IOException if the request-line cannot be sent.
240 private void sendLine(Socket socket, String line) throws IOException {
242 os.write(line.getBytes());
249 * Reads from socket until an empty line is read which indicates the end of HTTP headers.
280 // Sends and empty line that indicates termination of the header section.
292 String line; local
294 line = getLine(src.getInputStream());
295 if (line.length() > 0 && !shouldRemoveHeaderLine(line))
    [all...]
  /frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
BaseCompilationTest.java 124 String line = lines.get(i); local
129 int end = line.length() - 1; // inclusive
133 result.append(line.substring(start, end + 1));
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 443 * Reads a line of text form the current position in this file. A line is
446 * include the line terminating sequence.
448 * Blocks until a line terminating sequence has been read, the end of the
451 * @return the contents of the line or {@code null} if no characters have
457 StringBuilder line = new StringBuilder(80); // Typical line length local
464 return line.length() != 0 ? line.toString() : null;
468 return line.toString()
    [all...]
  /art/compiler/dex/
verified_method.cc 139 verifier::RegisterLine* line = method_verifier->GetRegLine(i); local
140 line->WriteReferenceBitMap(method_verifier, &dex_gc_map_, ref_bitmap_bytes);
162 verifier::RegisterLine* line = method_verifier->GetRegLine(i); local
164 if (line->GetRegisterType(method_verifier, j).IsNonZeroReferenceTypes()) {
170 // If a register doesn't contain a reference then the bitmap may be shorter than the line.
190 verifier::RegisterLine* line = method_verifier->GetRegLine(i); local
191 max_ref_reg = line->GetMaxNonZeroReferenceReg(method_verifier, max_ref_reg);
216 verifier::RegisterLine* line = method_verifier->GetRegLine(dex_pc); local
218 method_verifier->GetQuickInvokedMethod(inst, line, is_range_quick, true);
220 // It can be null if the line wasn't verified since it was unreachable
230 verifier::RegisterLine* line = method_verifier->GetRegLine(dex_pc); local
269 verifier::RegisterLine* line = method_verifier->GetRegLine(dex_pc); local
343 const verifier::RegisterLine* line = method_verifier->GetRegLine(dex_pc); local
    [all...]
  /art/compiler/
elf_writer_debug.cc 234 * @param debug_line Line number table.
337 static bool NewPosition(void* ctx, uint32_t address, uint32_t line) {
339 context->dex2line_.push_back({address, static_cast<int32_t>(line)});
409 int line = dex2line.second; local
421 opcodes.AddRow(mi->low_pc_ + pc, line);
422 } else if (line != opcodes.CurrentLine()) {
423 opcodes.AddRow(mi->low_pc_ + pc, line);
428 // line 0 - instruction cannot be attributed to any source line.
  /art/runtime/base/
logging.cc 80 // Stash the command line for later use. We can use /proc/self/cmdline on Linux to recover this,
141 LogMessageData(const char* file, unsigned int line, LogSeverity severity, int error)
143 line_number_(line),
185 LogMessage::LogMessage(const char* file, unsigned int line, LogSeverity severity, int error)
186 : data_(new LogMessageData(file, line, severity, error)) {
191 << " " << getpid() << " " << ::art::GetTid() << " " << file << ":" << line << "]"; local
246 void LogMessage::LogLine(const char* file, unsigned int line, LogSeverity log_severity,
252 LOG_PRI(priority, tag, "%s:%u] %s", file, line, message);
261 ProgramInvocationShortName(), severity, getpid(), ::art::GetTid(), file, line, message);
265 void LogMessage::LogLineLowStack(const char* file, unsigned int line, LogSeverity log_severity
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/
Options.java 269 String line = reader.readLine(); local
270 while (line != null) {
271 line = line.replaceAll("\\s+", " ");
272 String[] entries = line.split(" ");
282 line = reader.readLine();
294 * the program's command line arguments.
  /bionic/tests/
stdio_test.cpp 765 char line[16]; local
766 char* s = fgets(line, sizeof(line), fp);
779 char line[16]; local
780 char* s = fgets(line, sizeof(line), fp);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/
ItsTestActivity.java 105 String line = null; local
107 line = reader.readLine();
108 if (line != null) {
109 summary.append(line);
111 } while (line != null);
  /cts/common/host-side/java-scanner/tests/src/com/android/compatibility/common/scanner/
JavaScannerTest.java 114 String line = null; local
115 while ((line = in.readLine()) != null) {
116 output.append(line);
  /cts/hostsidetests/atrace/src/android/atrace/cts/
AtraceHostTest.java 72 private static void parseLine(String line, FtraceEntryCallback callback) {
73 Matcher m = sLineWithTgid.matcher(line);
84 m = sLineWithIrqInfo.matcher(line);
95 m = sLineLegacy.matcher(line);
105 System.err.println("line doesn't match: " + line);
111 String line; local
112 while ((line = bufferedReader.readLine()) != null) {
113 FtraceParser.parseLine(line, callback);
  /cts/hostsidetests/jdwpsecurity/src/android/jdwpsecurity/cts/
JdwpSecurityHostTest.java 151 // We only expect to read one line containing the pid.
234 String line; local
235 while ((line = readLineIgnoreException(br)) != null) {
236 lines.add(line);
  /cts/tests/core/runner/src/com/android/cts/runner/
CtsTestRunListener.java 138 String line; local
139 while ((line = in.readLine()) != null) {
140 Log.d(TAG, line);
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 94 Path line = new Path(); local
95 line.lineTo(5, 5);
97 measure.setPath(line, false);
99 measure.setPath(line, true);

Completed in 814 milliseconds

<<11121314151617181920>>