Home
last modified time | relevance | path

Searched refs:from_position (Results 1 – 4 of 4) sorted by relevance

/external/clang/bindings/python/tests/cindex/
Dtest_location.py50 location = SourceLocation.from_position(tu, file, 1, 5)
58 location2 = SourceLocation.from_position(tu, file, 1, 5)
60 location3 = SourceLocation.from_position(tu, file, 1, 4)
86 location1 = SourceLocation.from_position(tu, file, 1, 1)
87 location2 = SourceLocation.from_position(tu, file, 1, 8)
93 location3 = SourceLocation.from_position(tu, file, 1, 6)
/external/v8/src/js/
Dmessages.js378 var from_position = from_line == 0 ? 0 : line_ends[from_line - 1] + 1;
385 from_position, to_position);
533 function SourceSlice(script, from_line, to_line, from_position, to_position) { argument
537 this.from_position = from_position;
549 this.from_position,
/external/clang/bindings/python/clang/
Dcindex.py180 def from_position(tu, file, line, column): member in SourceLocation
2441 return SourceLocation.from_position(self, f, position[0], position[1])
2466 start_location = SourceLocation.from_position(self, f,
2473 end_location = SourceLocation.from_position(self, f,
/external/v8/src/debug/
Ddebug.js2216 response.body.fromPosition = slice.from_position;