Home
last modified time | relevance | path

Searched refs:marks (Results 1 – 25 of 594) sorted by relevance

12345678910>>...24

/external/apache-commons-bcel/src/examples/Mini/
DJJTMiniParserState.java24 private java.util.Stack<Integer> marks; field in JJTMiniParserState
32 marks = new java.util.Stack<Integer>(); in JJTMiniParserState()
48 marks.removeAllElements(); in reset()
69 mk = marks.pop().intValue(); in popNode()
90 mk = marks.pop().intValue(); in clearNodeScope()
95 marks.push(new Integer(mk)); in openNodeScope()
106 mk = marks.pop().intValue(); in closeNodeScope()
126 mk = marks.pop().intValue(); in closeNodeScope()
136 mk = marks.pop().intValue(); in closeNodeScope()
/external/e2fsprogs/po/
Den@boldquot.header15 # When output to an ISO-8859-1 terminal, the single quotation marks are
17 # grave/acute accent (by libiconv), and the double quotation marks are
19 # When output to an ASCII terminal, the single quotation marks are
20 # transliterated to apostrophes, and the double quotation marks are
23 # This catalog furthermore displays the text between the quotation marks in
Den@quot.header15 # When output to an ISO-8859-1 terminal, the single quotation marks are
17 # grave/acute accent (by libiconv), and the double quotation marks are
19 # When output to an ASCII terminal, the single quotation marks are
20 # transliterated to apostrophes, and the double quotation marks are
/external/libexif/po/
Den@boldquot.header15 # When output to an ISO-8859-1 terminal, the single quotation marks are
17 # grave/acute accent (by libiconv), and the double quotation marks are
19 # When output to an ASCII terminal, the single quotation marks are
20 # transliterated to apostrophes, and the double quotation marks are
23 # This catalog furthermore displays the text between the quotation marks in
Den@quot.header15 # When output to an ISO-8859-1 terminal, the single quotation marks are
17 # grave/acute accent (by libiconv), and the double quotation marks are
19 # When output to an ASCII terminal, the single quotation marks are
20 # transliterated to apostrophes, and the double quotation marks are
/external/elfutils/po/
Den@boldquot.header15 # When output to an ISO-8859-1 terminal, the single quotation marks are
17 # grave/acute accent (by libiconv), and the double quotation marks are
19 # When output to an ASCII terminal, the single quotation marks are
20 # transliterated to apostrophes, and the double quotation marks are
23 # This catalog furthermore displays the text between the quotation marks in
Den@quot.header15 # When output to an ISO-8859-1 terminal, the single quotation marks are
17 # grave/acute accent (by libiconv), and the double quotation marks are
19 # When output to an ASCII terminal, the single quotation marks are
20 # transliterated to apostrophes, and the double quotation marks are
/external/cldr/tools/java/org/unicode/cldr/draft/
DExemplarInfo.java240 public static String specialNormalize(String marks, ULocale locale) { in specialNormalize() argument
241 marks = ExemplarInfo.nfd.normalize(marks); in specialNormalize()
242marks = locale == null ? UCharacter.toLowerCase(marks) : UCharacter.toLowerCase(locale, marks); in specialNormalize()
243 marks = ExemplarInfo.nfkdMinus.normalize(marks); in specialNormalize()
244 marks = ExemplarInfo.nfc.normalize(marks); // just in case in specialNormalize()
245 return marks; in specialNormalize()
/external/fonttools/Lib/fontTools/otlLib/
Dbuilder.py217 def buildMarkArray(marks, glyphMap): argument
221 for mark in sorted(marks.keys(), key=glyphMap.__getitem__):
222 markClass, anchor = marks[mark]
229 def buildMarkBasePos(marks, bases, glyphMap): argument
247 return [buildMarkBasePosSubtable(marks, bases, glyphMap)]
250 def buildMarkBasePosSubtable(marks, bases, glyphMap): argument
259 self.MarkCoverage = buildCoverage(marks, glyphMap)
260 self.MarkArray = buildMarkArray(marks, glyphMap)
261 self.ClassCount = max([mc for mc, _ in marks.values()]) + 1
267 def buildMarkLigPos(marks, ligs, glyphMap): argument
[all …]
/external/fonttools/Lib/fontTools/feaLib/
Dbuilder.py941 def add_marks_(self, location, lookupBuilder, marks): argument
943 for _, markClass in marks:
946 if mark not in lookupBuilder.marks:
948 lookupBuilder.marks[mark] = (
951 existingMarkClass = lookupBuilder.marks[mark][0]
958 def add_mark_base_pos(self, location, bases, marks): argument
960 self.add_marks_(location, builder, marks)
961 for baseAnchor, markClass in marks:
970 for marks in components:
972 self.add_marks_(location, builder, marks)
[all …]
Dast.py853 def __init__(self, base, marks, location=None): argument
855 self.base, self.marks = base, marks
858 builder.add_mark_base_pos(self.location, self.base.glyphSet(), self.marks)
862 for a, m in self.marks:
869 def __init__(self, ligatures, marks, location=None): argument
871 self.ligatures, self.marks = ligatures, marks
874 builder.add_mark_lig_pos(self.location, self.ligatures.glyphSet(), self.marks)
879 for l in self.marks:
893 def __init__(self, baseMarks, marks, location=None): argument
895 self.baseMarks, self.marks = baseMarks, marks
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
DParserImpl.java126 private final ArrayStack<Mark> marks; field in ParserImpl
139 marks = new ArrayStack<Mark>(10); in ParserImpl()
240 if (!marks.isEmpty()) { in produce()
241 throw new YAMLException("Unexpected end of stream. Marks left: " + marks); in produce()
494 marks.push(token.getStartMark()); in produce()
513 throw new ParserException("while parsing a block collection", marks.pop(), in produce()
520 marks.pop(); in produce()
550 marks.push(token.getStartMark()); in produce()
569 throw new ParserException("while parsing a block mapping", marks.pop(), in produce()
576 marks.pop(); in produce()
[all …]
/external/walt/docs/
DDragLatency.md32marks are points where the finger was at times _t<sub>i</sub>_ when the finger went into or out of…
34 …a little (this divergence is the latency we want to measure). The red 'x' marks would move along t…
36 …ard deviation of _y_( _t<sub>i</sub>_ + _S_) is minimal - that is the 'x' marks are as close as po…
/external/fonttools/Tests/feaLib/
Dbuilder_test.py416 for m in self.marks:
421 for a, m in self.marks:
442 marks = self.parse_anchor_marks_()
444 marks = []
448 marks.append(m)
450 return self.ast.MarkBasePosStatement(base, marks,
/external/python/cpython3/Lib/idlelib/
Dundo.py196 marks = {}
199 marks[name] = text.index(name)
200 return marks
202 def set_marks(self, text, marks): argument
203 for name, index in marks.items():
/external/python/cpython2/Lib/idlelib/
DUndoDelegator.py195 marks = {}
198 marks[name] = text.index(name)
199 return marks
201 def set_marks(self, text, marks): argument
202 for name, index in marks.items():
/external/fonttools/Tests/otlLib/
Dbuilder_test.py569 marks = {
582 table = builder.buildMarkBasePosSubtable(marks, bases, self.GLYPHMAP)
693 marks = {
705 table = builder.buildMarkLigPosSubtable(marks, bases, self.GLYPHMAP)
/external/python/setuptools/setuptools/tests/
Dtest_egg_info.py207 marks = ()
210 marks = pytest.mark.xfail
214 marks=marks))
/external/python/cpython2/Misc/NEWS.d/next/Library/
D2018-05-05-09-53-05.bpo-33422.4FtQ0q.rst1 Fix trailing quotation marks getting deleted when looking up byte/string
/external/icu/icu4c/source/data/translit/
Dblt_blt_FONIPA.txt22 # Currently, these rules only support tone marks, but not tone letters.
66 # TODO: Also support tone letters, not just tone marks.
73 # TODO: Also support tone letters, not just tone marks.
Dlt_Upper.txt9 …Remove \u0307 following soft-dotteds (i, j, and the like), with possible intervening non-230 marks.
/external/iptables/extensions/
Dlibxt_HMARK.man24 Modulus for hash calculation (to limit the range of possible marks)
27 Offset to start marks from.
/external/fonttools/Tests/feaLib/data/
Dspec6e.fea9 ligComponent <anchor NULL>; # jeem has no marks
/external/lz4/programs/
Dbench.c232 const char* const marks[NB_MARKS] = { " |", " /", " =", "\\" }; in BMK_benchMem() local
248 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize); in BMK_benchMem()
284 marks[markNb], displayName, (U32)srcSize, (U32)cSize, ratio, in BMK_benchMem()
324 marks[markNb], displayName, (U32)srcSize, (U32)cSize, ratio, in BMK_benchMem()
/external/curl/docs/cmdline-opts/
Duser-agent.d9 the string, surround the string with single quote marks. This header can also

12345678910>>...24