/external/valgrind/main/gdbserver_tests/ |
mcclean_after_fork.stdoutB.exp | 1 Breakpoint 1 at 0x........: file clean_after_fork.c, line 9. 2 Breakpoint 2 at 0x........: file clean_after_fork.c, line 20. 3 Breakpoint 3 at 0x........: file clean_after_fork.c, line 22.
|
/external/chromium_org/tools/ |
sort-headers.py | 40 def IncludeCompareKey(line): 45 if line.startswith(prefix): 46 line = line[len(prefix):] 52 if line.startswith('<windows.h>'): # Must be before e.g. shellapi.h 54 if line.startswith('<atlbase.h>'): # Must be before atlapp.h. 55 return '1' + line 56 if line.startswith('<unknwn.h>'): # Must be before e.g. intshcut.h 57 return '1' + line 60 if line.startswith('<') [all...] |
/external/skia/tests/ |
PathOpsQuadLineIntersectionTest.cpp | 17 SkDLine line; member in struct:lineQuad 21 // quad line results 31 static int doIntersect(SkIntersections& intersections, const SkDQuad& quad, const SkDLine& line, 35 if (line[0].fX == line[1].fX) { 36 double top = line[0].fY; 37 double bottom = line[1].fY; 42 result = intersections.vertical(quad, top, bottom, line[0].fX, flipped); 43 } else if (line[0].fY == line[1].fY) 60 SkDLine line; member in struct:oneLineQuad 77 const SkDLine& line = oneOffs[index].line; local 100 const SkDLine& line = lineQuadTests[index].line; local [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/ |
interactive.rb | 21 # [:line] the initial line number; default: +1+ 28 @line = options.fetch :line, 1 33 @readline = block or raise( ArgumentError, "no line-reading block was provided" ) 40 if line = @readline.call 41 line = line.to_s.encode( Encoding::UTF_8 ) 42 @string << line 43 @data.concat( line.codepoints.to_a [all...] |
/external/doclava/src/com/google/doclava/ |
SourcePositionInfo.java | 22 public SourcePositionInfo(String file, int line, int column) { 24 this.line = line; 30 this.line = that.line; 44 int line = that.line; local 49 line++; 53 return new SourcePositionInfo(that.file, line, 0); 60 int line = that.line - 1; // -1 because, well, it seems to wor local 101 public int line; field in class:SourcePositionInfo [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
GenerateExcludeListTask.java | 67 String line; 68 while ((line = r.readLine()) != null) { 69 int start = line.lastIndexOf('/'); 70 int lastcomma = line.lastIndexOf(','); 71 int end = line.length(); 75 int lastzip = line.lastIndexOf(".zip"); 77 String rstring = line.substring(0, lastzip); 78 line = rstring + ".jar"; 81 String substr = line.substring(start + 1, end); 94 String line; local [all...] |
/external/valgrind/main/drd/tests/ |
thread_name_xml.stderr.exp | 9 <line>...</line> 10 <line>...</line> 11 <line>...</line> 12 <line>...</line> 46 <line>...</line> [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_normalization.py | 47 for line in testdata: 48 if '#' in line: 49 line = line.split('#')[0] 50 line = line.strip() 51 if not line: 53 if line.startswith("@Part"): 54 part = line.split()[0] 57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1] [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_normalization.py | 47 for line in testdata: 48 if '#' in line: 49 line = line.split('#')[0] 50 line = line.strip() 51 if not line: 53 if line.startswith("@Part"): 54 part = line.split()[0] 57 c1,c2,c3,c4,c5 = [unistr(x) for x in line.split(';')[:-1] [all...] |
/external/bison/src/ |
location.c | 60 int line = cur->line; local 72 line += line < INT_MAX; 87 cur->line = line; 92 if (line == INT_MAX && loc->start.line != INT_MAX) 93 warn_at (*loc, _("line number overflow")); 108 if (0 <= loc.start.line) 147 size_t line; member in struct:caret_info [all...] |
/external/chromium_org/third_party/angle_dx11/src/compiler/ |
ParseHelper.h | 73 bool parseVectorFields(const TString&, int vecSize, TVectorFields&, const TSourceLoc& line); 74 bool parseMatrixFields(const TString&, int matSize, TMatrixFields&, const TSourceLoc& line); 76 bool reservedErrorCheck(const TSourceLoc& line, const TString& identifier); 77 void assignError(const TSourceLoc& line, const char* op, TString left, TString right); 78 void unaryOpError(const TSourceLoc& line, const char* op, TString operand); 79 void binaryOpError(const TSourceLoc& line, const char* op, TString left, TString right); 80 bool precisionErrorCheck(const TSourceLoc& line, TPrecision precision, TBasicType type); 81 bool lValueErrorCheck(const TSourceLoc& line, const char* op, TIntermTyped*); 84 bool globalErrorCheck(const TSourceLoc& line, bool global, const char* token); 85 bool constructorErrorCheck(const TSourceLoc& line, TIntermNode*, TFunction&, TOperator, TType*) [all...] |
/external/chromium_org/tools/gyp/tools/ |
pretty_gyp.py | 18 # NOTE: It does not handle quotes that span more than one line, or 31 return [search_re.sub(comment_replace, line) for line in input] 44 return [search_re.sub(quote_replace, line) for line in input] 50 for (line, masked_line) in zip(input, masked_input): 54 line = line[:split] + r'\n' + line[split:] 57 output.extend(line.split(r'\n') [all...] |
/external/libvpx/libvpx/tools/ |
diff.py | 27 def Append(self, line): 29 if line[0] != " ": 31 self.lines.append(line[1:]) 50 def Append(self, line): 51 """Adds a line to the DiffHunk and its DiffLines children.""" 52 if line[0] == "-": 53 self.left.Append(line) 54 elif line[0] == "+": 55 self.right.Append(line) 56 elif line[0] == " " [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
cmd.py | 1 """A generic class to build line-oriented command interpreters. 6 2. A command is parsed out of each line by collecting the prefix composed 9 is passed a single argument consisting of the remainder of the line. 10 4. Typing an empty line repeats the last command. (Actually, it calls the 20 arguments text, line, begidx, endidx. text is string we are matching 21 against, all returned matches must begin with it. line is the current 22 input line (lstripped), begidx and endidx are the beginning and end 33 in the help messages. If empty, no ruler line is drawn. It defaults to "=". 56 """A simple framework for writing line-oriented command interpreters. 61 A Cmd instance or subclass instance is a line-oriented interprete [all...] |
tokenize.py | 5 repeatedly to get the next line of input (or "" for EOF). It generates 12 the original line (string) 74 # Single-line ' or " string. 93 # First (or only) line of ' or " string. 149 def printtoken(type, token, srow_scol, erow_ecol, line): # for testing 162 Each call to the function should return one line of input as a string. 197 tok_type, token, start, end, line = t 269 should return one line of input as a string. Alternately, readline 277 and the line on which the token was found. The line passed is th [all...] |
robotparser.py | 58 lines = [line.strip() for line in f] 79 We allow that a user-agent: line is not preceded by 83 # 1: saw user-agent line 84 # 2: saw an allow or disallow line 89 for line in lines: 91 if not line: 99 # remove optional comment and strip line 100 i = line.find('#') 102 line = line[:i [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
cmd.py | 1 """A generic class to build line-oriented command interpreters. 6 2. A command is parsed out of each line by collecting the prefix composed 9 is passed a single argument consisting of the remainder of the line. 10 4. Typing an empty line repeats the last command. (Actually, it calls the 20 arguments text, line, begidx, endidx. text is string we are matching 21 against, all returned matches must begin with it. line is the current 22 input line (lstripped), begidx and endidx are the beginning and end 33 in the help messages. If empty, no ruler line is drawn. It defaults to "=". 56 """A simple framework for writing line-oriented command interpreters. 61 A Cmd instance or subclass instance is a line-oriented interprete [all...] |
tokenize.py | 5 repeatedly to get the next line of input (or "" for EOF). It generates 12 the original line (string) 74 # Single-line ' or " string. 93 # First (or only) line of ' or " string. 149 def printtoken(type, token, srow_scol, erow_ecol, line): # for testing 162 Each call to the function should return one line of input as a string. 197 tok_type, token, start, end, line = t 269 should return one line of input as a string. Alternately, readline 277 and the line on which the token was found. The line passed is th [all...] |
robotparser.py | 58 lines = [line.strip() for line in f] 79 We allow that a user-agent: line is not preceded by 83 # 1: saw user-agent line 84 # 2: saw an allow or disallow line 89 for line in lines: 91 if not line: 99 # remove optional comment and strip line 100 i = line.find('#') 102 line = line[:i [all...] |
/ndk/sources/host-tools/make-3.81/doc/ |
make.info-2 | [all...] |
/external/clang/test/Index/ |
print-type-size.cpp | 7 // CHECK64: VarDecl=v:[[@LINE+2]]:6 (Definition) [type=void] [typekind=Void] 8 // CHECK32: VarDecl=v:[[@LINE+1]]:6 (Definition) [type=void] [typekind=Void] 11 // CHECK64: VarDecl=v1:[[@LINE+2]]:7 (Definition) [type=void *] [typekind=Pointer] [sizeof=8] [alignof=8] 12 // CHECK32: VarDecl=v1:[[@LINE+1]]:7 (Definition) [type=void *] [typekind=Pointer] [sizeof=4] [alignof=4] 16 // CHECK64: StructDecl=simple:[[@LINE+2]]:8 (Definition) [type=basic::simple] [typekind=Record] [sizeof=48] [alignof=8] 17 // CHECK32: StructDecl=simple:[[@LINE+1]]:8 (Definition) [type=basic::simple] [typekind=Record] [sizeof=36] [alignof=4] 21 // CHECK64: FieldDecl=c:[[@LINE+1]]:7 (Definition) [type=int] [typekind=Int] [sizeof=4] [alignof=4] [offsetof=40] [BitFieldSize=3] 25 // CHECK64: FieldDecl=f:[[@LINE+1]]:7 (Definition) [type=int] [typekind=Int] [sizeof=4] [alignof=4] [offsetof=133] [BitFieldSize=4] 27 // CHECK64: FieldDecl=g:[[@LINE+2]]:13 (Definition) [type=long long] [typekind=LongLong] [sizeof=8] [alignof=8] [offsetof=192] 28 // CHECK32: FieldDecl=g:[[@LINE+1]]:13 (Definition) [type=long long] [typekind=LongLong] [sizeof=8] [alignof=4] [offsetof=128 [all...] |
/external/elfutils/libdwfl/ |
dwfl_module_getsrc_file.c | 81 inline const char *INTUSE(dwarf_line_file) (const Dwarf_Line *line) 83 return line->files->info[line->file].name; 85 inline Dwarf_Line *dwfl_line (const Dwfl_Line *line) 87 return &dwfl_linecu (line)->die.cu->lines->info[line->idx]; 89 inline const char *dwfl_line_file (const Dwfl_Line *line) 91 return INTUSE(dwarf_line_file) (dwfl_line (line)); 94 /* Search through all the line number records for a matching 95 file and line/column number. If any of the numbers is zero 101 Dwarf_Line *line = &cu->die.cu->lines->info[cnt]; local [all...] |
/bootable/recovery/tools/ota/ |
add-property-tag.c | 30 // Return nonzero if the tag should be added to this line. 31 int should_tag(const char *line, const char *propname) { 32 const char *prop = strstr(line, propname); 37 for (ptr = line; ptr < prop && isspace(*ptr); ++ptr) ; 38 if (ptr != prop) return 0; // Must be at the beginning of the line 44 // Remove existing tags from the line, return the following number (if any) 45 int remove_tag(char *line, const char *tag) { 46 char *pos = strstr(line, tag); 55 // Write line to output with the tag added, adding a number (if >0) 56 void write_tagged(FILE *out, const char *line, const char *tag, int number) 109 char line[4096]; local [all...] |
/external/checkpolicy/ |
checkpolicy.h | 12 unsigned long line; member in struct:te_assert
|
/external/chromium_org/build/android/gyp/ |
ant.py | 11 output up until the BUILD SUCCESSFUL line. 22 for line in stdout: 23 if line.strip() == 'BUILD SUCCESSFUL': 25 print line
|