Home
last modified time | relevance | path

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

12345678910>>...38

/external/javassist/src/main/javassist/bytecode/stackmap/
DBasicBlock.java183 Map<Integer,Mark> marks = makeMarks(ci, begin, end, et);
184 BasicBlock[] bb = makeBlocks(marks);
231 Map<Integer,Mark> marks = new HashMap<Integer,Mark>();
240 Mark to = makeMark(marks, index + ci.s16bitAt(index + 1));
241 Mark next = makeMark(marks, index + 3);
242 makeMark(marks, index, makeArray(to.block, next.block), 3, false);
247 makeGoto(marks, index, index + ci.s16bitAt(index + 1), 3);
250 makeJsr(marks, index, index + ci.s16bitAt(index + 1), 3);
253 makeMark(marks, index, null, 2, true);
261 … to[0] = makeMark(marks, index + ci.s32bitAt(pos)).block; // default branch target
[all …]
/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/rust/cxx/syntax/
Dtoposort.rs12 let ref mut marks = Map::new(); in sort()
15 let _ = visit(cx, strct, &mut sorted, marks, types); in sort()
25 marks: &mut Map<*const Struct, Mark>, in visit()
28 match marks.entry(strct) { in visit()
41 if visit(cx, inner, sorted, marks, types).is_err() { in visit()
48 marks.insert(strct, Mark::Visited); in visit()
/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/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.py153 def buildMarkClasses_(self, marks): argument
161 for mark in sorted(marks.keys(), key=self.font.getGlyphID):
162 markClassName, _markAnchor = marks[mark]
923 self.marks = {} # glyphName -> (markClassName, anchor)
929 and self.marks == other.marks
935 result.update({glyph: 3 for glyph in self.marks})
945 markClasses = self.buildMarkClasses_(self.marks)
946 marks = {
947 mark: (markClasses[mc], anchor) for mark, (mc, anchor) in self.marks.items()
952 subtables = buildMarkBasePos(marks, bases, self.glyphMap)
[all …]
Dbuilder.py.sketch89 marks = {
98 marks = {
/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/llvm-project/lldb/source/Commands/
DOptionsBase.td41 // - `OptionalArg`: Sets the argument type and marks it as optional.
42 // - `Arg`: Sets the argument type and marks it as required.
43 // - `EnumArg`: Sets the argument type to an enum and marks it as required.
44 // - `OptionalEnumArg`: Same as EnumArg but marks it as optional.
81 // - `OptionalArg`: Sets the argument type and marks it as optional.
83 // Sets the argument type to eArgTypePid and marks option as
85 // - `Arg`: Sets the argument type and marks it as required.
87 // Sets the argument type to eArgTypePid and marks option as
/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/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/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/pybind11/tests/
Dtest_chrono.py100 pytest.param("Europe/Brussels", marks=SKIP_TZ_ENV_ON_WIN),
101 pytest.param("Asia/Pyongyang", marks=SKIP_TZ_ENV_ON_WIN),
102 pytest.param("America/New_York", marks=SKIP_TZ_ENV_ON_WIN),
/external/fonttools/Tests/feaLib/
Dbuilder_test.py684 for m in self.marks:
689 for a, m in self.marks:
710 marks = self.parse_anchor_marks_()
712 marks = []
716 marks.append(m)
718 return self.ast.MarkBasePosStatement(base, marks,
/external/fonttools/Lib/fontTools/feaLib/
Dbuilder.py1305 def add_marks_(self, location, lookupBuilder, marks): argument
1307 for _, markClass in marks:
1310 if mark not in lookupBuilder.marks:
1312 lookupBuilder.marks[mark] = (markClass.name, otMarkAnchor)
1314 existingMarkClass = lookupBuilder.marks[mark][0]
1322 def add_mark_base_pos(self, location, bases, marks): argument
1324 self.add_marks_(location, builder, marks)
1325 for baseAnchor, markClass in marks:
1333 for marks in components:
1335 self.add_marks_(location, builder, marks)
[all …]
Dast.py1144 def __init__(self, base, marks, location=None): argument
1146 self.base, self.marks = base, marks
1150 builder.add_mark_base_pos(self.location, self.base.glyphSet(), self.marks)
1154 for a, m in self.marks:
1187 def __init__(self, ligatures, marks, location=None): argument
1189 self.ligatures, self.marks = ligatures, marks
1193 builder.add_mark_lig_pos(self.location, self.ligatures.glyphSet(), self.marks)
1198 for l in self.marks:
1221 def __init__(self, baseMarks, marks, location=None): argument
1223 self.baseMarks, self.marks = baseMarks, marks
[all …]
/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.txt23 # Currently, these rules only support tone marks, but not tone letters.
67 # TODO: Also support tone letters, not just tone marks.
74 # TODO: Also support tone letters, not just tone 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/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.fea12 <anchor NULL>; # jeem has no marks
/external/python/markupsafe/tests/
Dconftest.py17 marks=pytest.mark.skipif(_speedups is None, reason="speedups unavailable"),

12345678910>>...38