HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 1 - 25 of 457) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/aapt/
SourcePos.h 13 int line; member in class:SourcePos
  /frameworks/base/tools/localize/
SourcePos.h 12 int line; member in class:SourcePos
  /external/icu4c/tools/genprops/misc/
ucdstrip.c 47 static char line[2000]; local
50 while(gets(line)!=NULL) {
51 if(strtol(line, &end, 16)>=0 && end!=line) {
53 *endOfData(line)=0;
55 puts(line);
ucdmerge.c 17 * Merges adjacent, identical per-code point data lines into one line with range syntax.
58 /* find the first semicolon in each line - there must be one */
66 /* compare the line data portions */
73 static char line[2000], firstLine[2000], lastLine[2000]; local
82 if(gets(line)!=NULL) {
84 c=strtol(line, &end, 16);
85 if(end!=line && *skipWhitespace(end)==';') {
91 line[0]=0;
96 if(last>=0 && (c!=(last+1) || !sameData(firstLine, line))) {
99 /* there was no range, just output the one line we found *
    [all...]
  /external/oprofile/libutil/
op_cpufreq.c 21 char * line = NULL; local
28 line = op_get_line(fp);
30 if (!line)
33 if (line[0] == '\0') {
34 free(line);
39 if (sscanf(line, "cpu MHz : %lf", &fval) == 1)
42 if (sscanf(line, "clock : %lfMHz", &fval) == 1)
45 if (sscanf(line, "cycle frequency [Hz] : %lu", &uval) == 1) {
50 if (sscanf(line, "Cpu0ClkTck : %lx", &uval) == 1) {
56 free(line);
    [all...]
  /external/guava/src/com/google/common/io/
LineBuffer.java 22 * Package-protected abstract class that implements the line reading
23 * algorithm used by {@link LineReader}. Line separators are per {@link
24 * java.io.BufferedReader}: line feed, carriage return, or carriage
34 /** Holds partial line contents. */
35 private StringBuilder line = new StringBuilder(); field in class:LineBuffer
36 /** Whether a line ending with a CR is pending processing. */
40 * Process additional characters from the stream. When a line separator
41 * is found the contents of the line and the line separator itself
54 // Last call to add ended with a CR; we can handle the line now
    [all...]
  /external/icu4c/common/unicode/
parseerr.h 34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
  /external/srec/config/en.us/dictionary/
cmu2nuance.cpp 42 char line[200]; local
46 for (int lineno = 1; NULL != fgets(line, sizeof(line), stdin); lineno++)
48 if (line[0] == '#') continue;
49 if (line[0] == 0) continue;
50 if (!isalnum(line[0])) {
51 fprintf(stderr, "warning: ignoring line %d - %s", lineno, line);
55 const char* p = line;
60 fprintf(stderr, "can't read name at line %d\n", lineno)
    [all...]
  /external/webkit/JavaScriptCore/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /external/webkit/WebCore/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /external/webkit/WebKit/mac/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /external/webkit/WebKitTools/QtLauncher/
urlloader.cpp 61 QString line; local
63 line = stream.readLine();
64 if (line.isNull())
66 m_urls.append(line);
  /external/bison/src/
location.h 32 /* The (origin-1) line that contains the boundary.
33 If this is INT_MAX, the line number has overflowed. */
34 int line; member in struct:__anon832
48 && a.line == b.line
  /external/embunit/src/
TestCase.c 79 void addFailure(const char *msg, long line, const char *file)
81 TestResult_addFailure(result_, (Test*)self_, (char*)msg, line, (char*)file); local
  /external/icu4c/test/intltest/
tokiter.h 32 * line, beginning with the first unquoted '#', are recognized.
46 * Return the one-based line number of the line of the last token
53 * Return a string description of the position of the last line
64 UnicodeString line; member in class:TokenIterator
  /external/jdiff/src/jdiff/
StreamReader.java 26 String line = null; local
27 while((line = br.readLine()) != null)
28 System.out.println(line);
  /build/tools/
adbs 166 # look up the function and file/line number for a raw stack trace line
181 # format is desgined to be "caller<-callee file:line"
203 line = stream.readline() variable
206 if (line == ''):
210 line = line.strip() variable
212 # see if this is a stack trace line
213 match = trace_line.match(line)
219 print line
    [all...]
  /build/tools/apicheck/src/com/android/apicheck/
SourcePositionInfo.java 25 this.line = 0;
29 public SourcePositionInfo(String file, int line, int column)
32 this.line = line;
39 this.line = that.line;
54 int line = that.line; local
59 line++;
63 return new SourcePositionInfo(that.file, line, 0)
71 int line = that.line-1; \/\/ -1 because, well, it seems to work local
121 public int line; field in class:SourcePositionInfo
    [all...]
  /build/tools/droiddoc/src/
SourcePositionInfo.java 21 this.line = 0;
25 public SourcePositionInfo(String file, int line, int column)
28 this.line = line;
35 this.line = that.line;
50 int line = that.line; local
55 line++;
59 return new SourcePositionInfo(that.file, line, 0)
67 int line = that.line-1; \/\/ -1 because, well, it seems to work local
93 public int line; field in class:SourcePositionInfo
    [all...]
  /build/tools/soslim/
symfilter.c 24 char *line = NULL; local
89 line = (char *)filter->mmap;
92 #define NOT_DONE ((off_t)(line - (char *)filter->mmap) < fsize)
94 char *name = line;
96 /* Advance to the next line. We seek out spaces or new lines. At the
98 continue till we've consumed the line. For new lines, we scan both
102 while (NOT_DONE && !isspace(*line)) line++;
104 *line++ = '\0';
105 if (line - name > 1)
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
NoReadLogsPermissionTest.java 50 String line; local
52 String separator = System.getProperty("line.separator");
53 while ((line = reader.readLine()) != null) {
54 log.append(line);
  /dalvik/vm/mterp/portable/
debug.c 63 int line, frameDepth; local
71 * Step into method calls. We break when the line number
84 msg = "new line";
88 * Step over method calls. We break when the line number is
107 msg = "new line";
  /external/blktrace/btt/
devmap.c 31 static int dev_map_add(char *line)
35 if (strstr(line, "Device") != NULL)
39 if (sscanf(line, "%s %s", dmp->device, dmp->devno) != 2) {
66 char line[256]; local
74 while (fscanf(fp, "%255[a-zA-Z0-9 :.,/_-]\n", line) == 1) {
75 if (dev_map_add(line))
  /external/blktrace/
verify_blkparse.c 12 char line[256], last_line[256], *p; local
35 while ((p = fgets(line, sizeof(line), f)) != NULL) {
59 strcpy(last_line, line);
  /external/icu4c/tools/toolutil/
pkg_icu.cpp 76 char line[1024]; local
87 while(fgets(line, sizeof(line), file)) {
89 end=strchr(line, '#');
94 end=strchr(line, 0);
95 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
103 start=u_skipWhitespace(line);
108 // take whitespace-separated items from the line
110 // find whitespace after the item or the end of the line
113 // this item is the last one on the line
    [all...]

Completed in 1315 milliseconds

1 2 3 4 5 6 7 8 91011>>