Home
last modified time | relevance | path

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

12345678910>>...19

/external/javassist/src/main/javassist/bytecode/stackmap/
DBasicBlock.java166 HashMap marks = makeMarks(ci, begin, end, et);
167 BasicBlock[] bb = makeBlocks(marks);
214 HashMap marks = new HashMap();
223 Mark to = makeMark(marks, index + ci.s16bitAt(index + 1));
224 Mark next = makeMark(marks, index + 3);
225 makeMark(marks, index, makeArray(to.block, next.block), 3, false);
230 makeGoto(marks, index, index + ci.s16bitAt(index + 1), 3);
233 makeJsr(marks, index, index + ci.s16bitAt(index + 1), 3);
236 makeMark(marks, index, null, 2, true);
244 … to[0] = makeMark(marks, index + ci.s32bitAt(pos)).block; // default branch target
[all …]
/external/tensorflow/tensorflow/docs_src/about/
Dattribution.md3 Please only use the TensorFlow name and marks when accurately referencing this
4 software distribution, and do not use our marks in a way that suggests you are
5 endorsed by or otherwise affiliated with Google. When referring to our marks,
7 logo and any related marks are trademarks of Google Inc."
/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/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/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/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.
Del_Title.txt9 # Remove \0301 following Greek, with possible intervening 0308 marks.
Del_Upper.txt9 # Remove \0301 following Greek, with possible intervening 0308 marks.
/external/lz4/programs/
Dbench.c227 const char* const marks[NB_MARKS] = { " |", " /", " =", "\\" }; in BMK_benchMem() local
246 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize); in BMK_benchMem()
276 marks[markNb], displayName, (U32)srcSize, (U32)cSize, ratio, in BMK_benchMem()
312 marks[markNb], displayName, (U32)srcSize, (U32)cSize, ratio, in BMK_benchMem()
/external/iptables/extensions/
Dlibxt_HMARK.man24 Modulus for hash calculation (to limit the range of possible marks)
27 Offset to start marks from.
Dlibxt_TRACE.man1 This target marks packets so that the kernel will log every rule which match
/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/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
391 if (marks & (1u << j)) { in FinishLoopTree()
/external/curl/docs/cmdline-opts/
Duser-agent.d9 the string, surround the string with single quote marks. This can also be set
/external/libdivsufsort/
DCHANGELOG.md8 * Enclose some string variables with double quotation marks in include/CMakeLists.txt
/external/autotest/client/site_tests/touch_TouchscreenScroll/
DREADME6 indicated. Make no stray marks with additional fingers and do not pause the
/external/tensorflow/tensorflow/core/lib/histogram/
Dhistogram.cc194 int marks = static_cast<int>(20 * (buckets_[b] / num_) + 0.5); in ToString() local
195 r.append(marks, '#'); in ToString()

12345678910>>...19