Home
last modified time | relevance | path

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

12345678910>>...23

/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/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/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/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/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/fonttools/Lib/fontTools/feaLib/
Dbuilder.py937 def add_marks_(self, location, lookupBuilder, marks): argument
939 for _, markClass in marks:
942 if mark not in lookupBuilder.marks:
944 lookupBuilder.marks[mark] = (
947 existingMarkClass = lookupBuilder.marks[mark][0]
954 def add_mark_base_pos(self, location, bases, marks): argument
956 self.add_marks_(location, builder, marks)
957 for baseAnchor, markClass in marks:
966 for marks in components:
968 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/fonttools/Lib/fontTools/otlLib/
Dbuilder.py216 def buildMarkArray(marks, glyphMap): argument
220 for mark in sorted(marks.keys(), key=glyphMap.__getitem__):
221 markClass, anchor = marks[mark]
228 def buildMarkBasePos(marks, bases, glyphMap): argument
246 return [buildMarkBasePosSubtable(marks, bases, glyphMap)]
249 def buildMarkBasePosSubtable(marks, bases, glyphMap): argument
258 self.MarkCoverage = buildCoverage(marks, glyphMap)
259 self.MarkArray = buildMarkArray(marks, glyphMap)
260 self.ClassCount = max([mc for mc, _ in marks.values()]) + 1
266 def buildMarkLigPos(marks, ligs, glyphMap): argument
[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.md31marks are points where the finger was at times _t<sub>i</sub>_ when the finger went into or out of…
33 …a little (this divergence is the latency we want to measure). The red 'x' marks would move along t…
35 …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/python/setuptools/setuptools/tests/
Dtest_egg_info.py207 marks = ()
210 marks = pytest.mark.xfail
214 marks=marks))
/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.
/external/iptables/extensions/
Dlibxt_HMARK.man24 Modulus for hash calculation (to limit the range of possible marks)
27 Offset to start marks from.
/external/freetype/src/tools/docmaker/
Dcontent.py438 marks = self.markup_lines
439 if len( marks ) > 0 and not string.strip( marks[-1] ):
440 self.markup_lines = marks[:-1]
/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/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/fonttools/Tests/otlLib/
Dbuilder_test.py534 marks = {
548 table = builder.buildMarkBasePosSubtable(marks, bases, self.GLYPHMAP)
656 marks = {
668 table = builder.buildMarkLigPosSubtable(marks, bases, self.GLYPHMAP)
/external/fonttools/Tests/feaLib/data/
Dspec6e.fea9 ligComponent <anchor NULL>; # jeem has no marks
/external/v8/src/compiler/
Dloop-analysis.cc165 uint32_t marks = backward_[tindex + i] & forward_[findex + i]; in PropagateForwardMarks() local
167 uint32_t next = prev | marks; in PropagateForwardMarks()
389 uint32_t marks = backward_[pos + i] & forward_[pos + i]; in FinishLoopTree() local
392 if (marks & (1u << j)) { in FinishLoopTree()

12345678910>>...23