Home
last modified time | relevance | path

Searched +defs:line +defs:end +defs:position (Results 1 – 25 of 38) sorted by relevance

12

/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/
DRange.java31 public final Position end; field in Range
33 public Range(Position begin, Position end) { in Range()
44 public static Range range(Position begin, Position end) { in range()
56 public Range withBeginLine(int line) { in withBeginLine()
64 public Range withEndLine(int line) { in withEndLine()
72 public Range withEnd(Position end) { in withEnd()
87 public boolean contains(Position position) { in contains()
102 public boolean strictlyContains(Position position) { in strictlyContains()
113 public boolean isBefore(Position position) { in isBefore()
117 public boolean isAfter(Position position) { in isAfter()
DUnicodeEscapeProcessingProvider.java338 void add(int line, int column, int lineDelta, int columnDelta) { in add()
345 public PositionUpdate lookup(Position position) { in lookup()
391 int transformLine(int line); in transformLine()
402 int line = pos.line; in transform() local
428 public DeltaInfo(int line, int column, int lineDelta, in DeltaInfo()
464 Position end = transform(range.end); in transform() local
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/
DRange.java12 public final Position end; field in Range
14 public Range(Position begin, Position end) { in Range()
25 public static Range range(Position begin, Position end) { in range()
37 public Range withBeginLine(int line) { in withBeginLine()
45 public Range withEndLine(int line) { in withEndLine()
53 public Range withEnd(Position end) { in withEnd()
61 public boolean isBefore(Position position) { in isBefore()
65 public boolean isAfter(Position position) { in isAfter()
/external/emboss/compiler/util/
Dparser_types.py27 def _make_position(line, column): argument
42 def format_position(position): argument
47 def make_location(start, end, is_synthetic=False): argument
/external/doclava/src/com/google/doclava/
DSampleTagInfo.java74 SourcePositionInfo position) { in SampleTagInfo()
99 static String getTrimString(String line) { in getTrimString()
115 static String addLineNumber(String line, String num) { in addLineNumber()
127 String end = END_INCLUDE + "(" + id + ")"; in loadInclude() local
140 String line = lines.readLine(); in loadInclude() local
224 String line = lines.readLine(); in readFile() local
/external/rust/android-crates-io/crates/toml_edit/src/
Derror.rs179 let line = input[0..line_start].iter().filter(|b| **b == b'\n').count(); in translate_position() localVariable
197 let position = translate_position(&input[..], index); in empty() localVariable
205 let position = translate_position(&input[..], index); in start() localVariable
210 fn end() { in end() function
213 let position = translate_position(&input[..], index); in end() localVariable
221 let position = translate_position(&input[..], index); in after() localVariable
229 let position = translate_position(&input[..], index); in first_line() localVariable
237 let position = translate_position(&input[..], index); in end_of_line() localVariable
245 let position = translate_position(&input[..], index); in start_of_second_line() localVariable
253 let position = translate_position(&input[..], index); in second_line() localVariable
/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/extractor/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttCueParser.java536 int end = text.length(); in applySpansForTag() local
647 SpannableStringBuilder text, Set<String> classes, int start, int end) { in applyDefaultColors()
660 SpannableStringBuilder spannedText, WebvttCssStyle style, int start, int end) { in applyStyleToText()
769 public float line; field in WebvttCueParser.WebvttCueInfoBuilder
774 public float position; field in WebvttCueParser.WebvttCueInfoBuilder
801 float position = in toCueBuilder() local
826 private static float computeLine(float line, @Cue.LineType int lineType) { in computeLine()
892 private static float deriveMaxSize(@Cue.AnchorType int positionAnchor, float position) { in deriveMaxSize()
930 public final int position; field in WebvttCueParser.StartTag
934 private StartTag(String name, int position, String voice, Set<String> classes) { in StartTag()
[all …]
/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/extractor/src/main/java/com/google/android/exoplayer2/text/webvtt/
DWebvttCueParser.java535 int end = text.length(); in applySpansForTag() local
644 SpannableStringBuilder text, Set<String> classes, int start, int end) { in applyDefaultColors()
657 SpannableStringBuilder spannedText, WebvttCssStyle style, int start, int end) { in applyStyleToText()
766 public float line; field in WebvttCueParser.WebvttCueInfoBuilder
771 public float position; field in WebvttCueParser.WebvttCueInfoBuilder
798 float position = in toCueBuilder() local
823 private static float computeLine(float line, @Cue.LineType int lineType) { in computeLine()
888 private static float deriveMaxSize(@Cue.AnchorType int positionAnchor, float position) { in deriveMaxSize()
926 public final int position; field in WebvttCueParser.StartTag
930 private StartTag(String name, int position, String voice, Set<String> classes) { in StartTag()
[all …]
/external/turbine/java/com/google/turbine/parse/
DStreamLexer.java39 private int position; field in StreamLexer
91 public int position() { in position() method in StreamLexer
172 reader.source(), position, ErrorKind.UNCLOSED_COMMENT); in next() local
545 String line = lines.get(i); in stripIndent() local
559 int end = trailingWhitespaceStart(line); in stripIndent() local
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/x3/support/utility/
Derror_reporting.hpp96 auto end = start; in print_line() local
106 std::basic_string<char_type> line{start, end}; in print_line() local
165 std::size_t error_handler<Iterator>::position(Iterator i) const in position() function in boost::spirit::x3::error_handler
167 std::size_t line { 1 }; in position() local
/external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
DTemplateInterpreter.java317 int end = expressionEvaluator.evaluate(node.getExpression()).asNumber(); in caseALoopToCommand() local
324 loop(node.getVariable(), 0, end, 1, node.getCommand()); in caseALoopToCommand() local
334 int end = expressionEvaluator.evaluate(node.getEnd()).asNumber(); in caseALoopCommand() local
341 loop(node.getVariable(), start, end, 1, node.getCommand()); in caseALoopCommand() local
352 int end = expressionEvaluator.evaluate(node.getEnd()).asNumber(); in caseALoopIncCommand() local
365 loop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand() local
540 private void loop(PVariable loopVar, int start, int end, int incr, PCommand command) { in loop()
642 private void setLastPosition(PPosition position) { in setLastPosition()
653 int line = node.getLine(); in caseTCsOpen() local
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/
DTemplateTranslator.java377 JavaExpression end = expressionTranslator.translateToNumber(node.getExpression()); in caseALoopToCommand() local
379 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopToCommand() local
390 JavaExpression end = expressionTranslator.translateToNumber(node.getEnd()); in caseALoopCommand() local
392 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopCommand() local
404 JavaExpression end = expressionTranslator.translateToNumber(node.getEnd()); in caseALoopIncCommand() local
406 writeLoop(node.getVariable(), start, end, incr, node.getCommand()); in caseALoopIncCommand() local
409 private void writeLoop(PVariable itemVariable, JavaExpression start, JavaExpression end, in writeLoop()
809 private void capturePosition(PPosition position) { in capturePosition()
819 int line = node.getLine(); in caseTCsOpen() local
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/java/
DJavaInput.java75 private final int position; field in JavaInput.Tok
95 int position, in Tok()
282 Input.Tok end = JavaOutput.endTok(token); in JavaInput() local
402 String line = it.next(); in buildToks() local
/external/rust/android-crates-io/crates/csv/src/
Dbyte_record.rs441 pub fn position(&self) -> Option<&Position> { in position() method
593 line: u64, field
611 pub fn line(&self) -> u64 { in line() method
679 let end = match self.ends.get(i) { in get() localVariable
700 fn end(&self) -> usize { in end() method
820 let end = self.r.0.bounds.ends()[self.i_forward]; in next() localVariable
851 let end = self.last_start; in next_back() localVariable
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dscoped_allocator_optimizer.cc57 size_t end = node_name.rfind('_'); in HasOpName() local
339 for (const auto& line : str_util::Split(graph.DebugString(), "\n\r")) { in DumpGraphToVLOG() local
429 int position = 0; in ClearInternalControlInputs() local
540 for (int i = 0, end = inputs.size(); i < end; ++i) { in ConstructScopedAllocatorNode() local
567 for (int i = 0, end = inputs_to_first.size(); i < end; ++i) { in ConstructScopedAllocatorNode() local
607 for (int i = 0, end = ops.size(); i < end; ++i) { in BuildSAConcatNode() local
610 int position = 0; in BuildSAConcatNode() local
758 int position = 0; in RewireSubgraph() local
/external/rust/android-crates-io/crates/winnow/src/
Derror.rs1377 let line = input[0..line_start].iter().filter(|b| **b == b'\n').count(); in translate_position() localVariable
1418 let position = translate_position(&input[..], index); in empty() localVariable
1426 let position = translate_position(&input[..], index); in start() localVariable
1431 fn end() { in end() function
1434 let position = translate_position(&input[..], index); in end() localVariable
1442 let position = translate_position(&input[..], index); in after() localVariable
1450 let position = translate_position(&input[..], index); in first_line() localVariable
1458 let position = translate_position(&input[..], index); in end_of_line() localVariable
1466 let position = translate_position(&input[..], index); in start_of_second_line() localVariable
1474 let position = translate_position(&input[..], index); in second_line() localVariable
/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/
DCldrUtility.java160 boolean handle(String line) throws Exception; in handle()
273 private String stripTags(String line) { in stripTags()
340 int position = 0; field in CldrUtility.StringIterator
389 public static String[] splitCommaSeparated(String line) { in splitCommaSeparated()
1148 String line = br.readLine(); in getText() local
1290 public static String hex(byte[] bytes, int start, int end, String separator) { in hex()
1349 String line = oldFile.readLine(); in copyUpTo() local
1510 public static String[] cleanSemiFields(String line) { in cleanSemiFields()
1515 private static String cleanLine(String line) { in cleanLine()
1528 String line = null; in handleFile() local
/external/cronet/stable/third_party/icu/source/test/intltest/
Drbbitst.cpp335 int32_t end = str.length() - 3; in TestBug4153072() local
602 int32_t line = t->getSrcLine(bp); in executeTest() local
655 int line = t->getSrcLine(bp); in executeTest() local
1187 int32_t position; in TestDictRules() local
1589 void RBBIMonkeyKind::setAppliedRule(int32_t position, const char* value) { in setAppliedRule()
1593 std::string RBBIMonkeyKind::getAppliedRule(int32_t position){ in getAppliedRule()
4598 UnicodeString line = lineMatcher.group(status); in TestEmoji() local
5496 UnicodeString line; in runLSTMTestFromFile() local
5497 int32_t end; in runLSTMTestFromFile() local
5689 virtual int32_t fillBreaks(UText* text, int32_t start, int32_t end, in fillBreaks()
[all …]
/external/cronet/tot/third_party/icu/source/test/intltest/
Drbbitst.cpp335 int32_t end = str.length() - 3; in TestBug4153072() local
602 int32_t line = t->getSrcLine(bp); in executeTest() local
655 int line = t->getSrcLine(bp); in executeTest() local
1187 int32_t position; in TestDictRules() local
1589 void RBBIMonkeyKind::setAppliedRule(int32_t position, const char* value) { in setAppliedRule()
1593 std::string RBBIMonkeyKind::getAppliedRule(int32_t position){ in getAppliedRule()
4598 UnicodeString line = lineMatcher.group(status); in TestEmoji() local
5496 UnicodeString line; in runLSTMTestFromFile() local
5497 int32_t end; in runLSTMTestFromFile() local
5689 virtual int32_t fillBreaks(UText* text, int32_t start, int32_t end, in fillBreaks()
[all …]
/external/icu/icu4c/source/test/intltest/
Drbbitst.cpp346 int32_t end = str.length() - 3; in TestBug4153072() local
613 int32_t line = t->getSrcLine(bp); in executeTest() local
666 int line = t->getSrcLine(bp); in executeTest() local
1198 int32_t position; in TestDictRules() local
1600 void RBBIMonkeyKind::setAppliedRule(int32_t position, const char* value) { in setAppliedRule()
1604 std::string RBBIMonkeyKind::getAppliedRule(int32_t position){ in getAppliedRule()
4827 UnicodeString line = lineMatcher.group(status); in TestEmoji() local
5733 UnicodeString line; in runLSTMTestFromFile() local
5734 int32_t end; in runLSTMTestFromFile() local
5926 virtual int32_t fillBreaks(UText* text, int32_t start, int32_t end, in fillBreaks()
[all …]
/external/clang/bindings/python/clang/
Dcindex.py180 def from_position(tu, file, line, column): argument
203 def line(self): member in SourceLocation
244 def from_locations(start, end): argument
256 def end(self): member in SourceRange
2481 def get_location(self, filename, position): argument
2608 def codeComplete(self, path, line, column, unsaved_files=None, argument
/external/libevent/
Dbuffer.c1691 char *line; in evbuffer_readln() local
2624 size_t position, enum evbuffer_ptr_how how) in evbuffer_ptr_set()
2683 size_t position; in evbuffer_ptr_memcmp() local
2721 …er, const char *what, size_t len, const struct evbuffer_ptr *start, const struct evbuffer_ptr *end) in evbuffer_search_range()
/external/deqp/modules/gles31/functional/
Des31fPrimitiveBoundingBoxTests.cpp2372const tcu::IVec2 &end, int componentNdx, int &messageLimitCounter) const in checkLineContinuity() argument
2374 bool line = false; in checkLineContinuity() local
2419const tcu::IVec2 &end, int componentNdx, int &messageLimitCounter) const in checkLineWidths() argument
3158 const tcu::Vec2 position = in genReferencePointData() local
3189 const tcu::Vec2 position = in genReferencePointData() local
/external/bcc/tests/cc/
Dcatch.hpp63 #define INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) name##line argument
64 #define INTERNAL_CATCH_UNIQUE_NAME_LINE( name, line ) INTERNAL_CATCH_UNIQUE_NAME_LINE2( name, line ) argument
393 std::size_t line; member
2504 #define INTERNAL_CATCH_LINESTR2( line ) #line argument
2505 #define INTERNAL_CATCH_LINESTR( line ) INTERNAL_CATCH_LINESTR2( line ) argument
3747 const_iterator end() const { return lines.end(); } in end() function in STITCH_TBC_TEXT_FORMAT_OUTER_NAMESPACE::Tbc::Text
4216 int position; // -1 means non-positional (floating) member
4280 friend void setPositionalArg( Arg& arg, int position ) in setPositionalArg()
4387 ArgBuilder operator[]( int position ) { in operator []()
4561 int position = 1; in populateFixedArgs() local
[all …]
/external/perfetto/protos/perfetto/trace/
Dperfetto_trace.proto5967 optional PositionProto position = 11; field
6793 optional uint32 line = 7; field
7201 optional int32 end = 2; field
8338 optional uint32 end = 4; field
8345 optional uint32 end = 4; field
9712 optional uint64 end = 1; field
9841 optional uint64 end = 1; field
12469 optional uint64 end = 5; field

12