Home
last modified time | relevance | path

Searched refs:comment_position (Results 1 – 10 of 10) sorted by relevance

/dports/misc/vxl/vxl-3.3.2/contrib/mul/mbl/
H A Dmbl_parse_block.cxx80 unsigned comment_position=0; in mbl_parse_block() local
96 comment_position = 0; in mbl_parse_block()
99 comment_position = 0; in mbl_parse_block()
100 else if (newline && comment_position < comment_length in mbl_parse_block()
101 && c==comment[comment_position]) in mbl_parse_block()
103 if (++comment_position == 2) in mbl_parse_block()
109 comment_position = 0; in mbl_parse_block()
115 comment_position = 0; in mbl_parse_block()
/dports/science/py-MDAnalysis/MDAnalysis-0.19.2/MDAnalysis/auxiliary/
H A DXVG.py100 comment_position = stripped_line.find('#')
101 if comment_position > 0 and stripped_line[:comment_position]:
102 yield stripped_line[:comment_position]
103 elif comment_position < 0 and stripped_line:
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/lib/gitlab/diff/
H A Dlines_unfolder.rb160 from = comment_position - UNFOLD_CONTEXT_SIZE
184 to = comment_position + UNFOLD_CONTEXT_SIZE
227 line.old_pos > comment_position && line.type == 'match'
232 def comment_position method in Gitlab.Diff.LinesUnfolder
/dports/deskutils/py-taskw/taskw-1.2.0/taskw/
H A Dtaskrc.py18 comment_position = line.find('#')
19 if comment_position < 0:
21 return line[:comment_position].strip()
/dports/devel/py-pytest-isort/pytest-isort-2.0.0/
H A Dpytest_isort.py93 comment_position = line.find("#")
95 if comment_position != -1:
96 line = line[:comment_position]
/dports/www/firefox-legacy/firefox-52.8.0esr/tools/check-moz-style/modules/
H A Dcpplint.py755 comment_position = line.find('//')
756 if comment_position != -1 and not is_cpp_string(line[:comment_position]):
757 line = line[:comment_position]
1509 comment_position = line.find('//')
1510 if comment_position != -1:
1513 …if (line.count('"', 0, comment_position) - line.count('\\"', 0, comment_position)) % 2 == 0: # n…
1516 and ((comment_position >= 1
1517 and line[comment_position-1] not in string.whitespace)
1518 or (comment_position >= 2
1519 and line[comment_position-2] not in string.whitespace))):
[all …]
/dports/devel/py-vsts/vsts-0.1.25/vsts/git/v4_0/models/
H A D__init__.py14 from .comment_position import CommentPosition
/dports/devel/py-vsts/vsts-0.1.25/vsts/git/v4_1/models/
H A D__init__.py13 from .comment_position import CommentPosition
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/blink/tools/blinkpy/style/checkers/
H A Dcpp.py652 comment_position = line.find('//')
653 if comment_position != -1 and not is_cpp_string(line[:comment_position]):
654 line = line[:comment_position]
/dports/games/bstone/bstone-1.1.9/src/
H A D3d_main.cpp6826 const auto comment_position = line.find("//"); in parse_config_line() local
6828 if (comment_position != line.npos) in parse_config_line()