HomeSort by relevance Sort by last modified time
    Searched refs:marks (Results 1 - 25 of 211) sorted by null

1 2 3 4 5 6 7 8 9

  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
JJTAddressListParserState.java 7 private java.util.Stack<Integer> marks; field in class:JJTAddressListParserState
15 marks = new java.util.Stack<Integer>();
31 marks.removeAllElements();
52 mk = marks.pop().intValue();
73 mk = marks.pop().intValue();
78 marks.push(new Integer(mk));
89 mk = marks.pop().intValue();
109 mk = marks.pop().intValue();
119 mk = marks.pop().intValue();
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 166 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 targe
    [all...]
  /external/curl/docs/cmdline-opts/
user-agent.d 9 the string, surround the string with single quote marks. This can also be set
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
scope.go 19 func findScope(marks []Mark, pos src.XPos) ScopeID {
20 i := sort.Search(len(marks), func(i int) bool {
21 return xposBefore(pos, marks[i].Pos)
26 return marks[i-1].Scope
37 scopePCs(fnsym, fn.Func.Marks, dwarfScopes)
67 func scopePCs(fnsym *obj.LSym, marks []Mark, dwarfScopes []dwarf.Scope) {
70 if len(marks) == 0 {
91 // scope marks to assign a lexical scope to each PC interval.
96 for marki < len(marks) && !xposBefore(pcs[i].pos, marks[marki].Pos)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/link/internal/sym/
attribute.go 11 // AttrDuplicateOK marks a symbol that can be present in multiple object
14 // AttrExternal marks function symbols loaded from host object files.
16 // AttrNoSplit marks functions that cannot split the stack; the linker
21 // AttrReachable marks symbols that are transitively referenced from the
29 // AttrSpecial marks symbols that do not have their address (i.e. Value)
36 // AttrNotInSymbolTable marks symbols that are not written to the symbol table.
38 // AttrOnList marks symbols that are on some list (such as the list of
42 // AttrLocal marks symbols that are only visible within the module
46 // AttrReflectMethod marks certain methods from the reflect package that
53 // AttrShared marks symbols compiled with the -shared option
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
scope.go 19 func findScope(marks []Mark, pos src.XPos) ScopeID {
20 i := sort.Search(len(marks), func(i int) bool {
21 return xposBefore(pos, marks[i].Pos)
26 return marks[i-1].Scope
37 scopePCs(fnsym, fn.Func.Marks, dwarfScopes)
67 func scopePCs(fnsym *obj.LSym, marks []Mark, dwarfScopes []dwarf.Scope) {
70 if len(marks) == 0 {
91 // scope marks to assign a lexical scope to each PC interval.
96 for marki < len(marks) && !xposBefore(pcs[i].pos, marks[marki].Pos)
    [all...]
  /prebuilts/go/linux-x86/src/cmd/link/internal/sym/
attribute.go 11 // AttrDuplicateOK marks a symbol that can be present in multiple object
14 // AttrExternal marks function symbols loaded from host object files.
16 // AttrNoSplit marks functions that cannot split the stack; the linker
21 // AttrReachable marks symbols that are transitively referenced from the
29 // AttrSpecial marks symbols that do not have their address (i.e. Value)
36 // AttrNotInSymbolTable marks symbols that are not written to the symbol table.
38 // AttrOnList marks symbols that are on some list (such as the list of
42 // AttrLocal marks symbols that are only visible within the module
46 // AttrReflectMethod marks certain methods from the reflect package that
53 // AttrShared marks symbols compiled with the -shared option
    [all...]
  /external/walt/docs/
DragLatency.md 31 The red 'x' marks are points where the finger was at times _t<sub>i</sub>_ when the finger went into or out of the laser beam. The y distance between the two lines of x marks is roughly the thickness of the finger. For now consider only one of the lines, e.g. the upper one.
33 Now imagine that the clocks timestamping the touch and the laser events diverge a little (this divergence is the latency we want to measure). The red 'x' marks would move along the graph. But half of them would move up and half down (corresponding to direction of the finger movement in that point) and therefore they would diverge in opposite directions from the relatively straight horizontal line you see on the screenshot.
35 The WALT app finds a shift _S_ such that the standard deviation of _y_( _t<sub>i</sub>_ + _S_) is minimal - that is the 'x' marks are as close as possible to a horizontal straight line on the graph below. The reported number is the average of the two time shifts calculated separately for the upper and the lower lines (corresponding to two sides of the finger).
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/parser/
ParserImpl.java 126 private final ArrayStack<Mark> marks; field in class:ParserImpl
139 marks = new ArrayStack<Mark>(10);
240 if (!marks.isEmpty()) {
241 throw new YAMLException("Unexpected end of stream. Marks left: " + marks);
494 marks.push(token.getStartMark());
513 throw new ParserException("while parsing a block collection", marks.pop(),
520 marks.pop();
550 marks.push(token.getStartMark());
569 throw new ParserException("while parsing a block mapping", marks.pop()
    [all...]
  /external/libunwind/doc/
unw_regname.tex 22 marks is returned. The returned string is statically allocated and
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/x86/
obj6_test.go 37 marks []int
61 r.marks = append(r.marks, marker)
156 for _, m := range testdata.marks {
  /prebuilts/go/darwin-x86/src/cmd/trace/
trace_test.go 160 marks := 0
163 marks++
166 if marks != 2 {
167 t.Errorf("Got %v MARK ASSIST events, want %v", marks, 2)
  /prebuilts/go/darwin-x86/src/net/
sys_cloexec.go 18 // Wrapper around the socket system call that marks the returned file
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue19078.go 26 _ = liveReturnSlot(nil) // incorrectly marks return slot as live
  /prebuilts/go/linux-x86/src/cmd/internal/obj/x86/
obj6_test.go 37 marks []int
61 r.marks = append(r.marks, marker)
156 for _, m := range testdata.marks {
  /prebuilts/go/linux-x86/src/cmd/trace/
trace_test.go 160 marks := 0
163 marks++
166 if marks != 2 {
167 t.Errorf("Got %v MARK ASSIST events, want %v", marks, 2)
  /prebuilts/go/linux-x86/src/net/
sys_cloexec.go 18 // Wrapper around the socket system call that marks the returned file
  /prebuilts/go/linux-x86/test/fixedbugs/
issue19078.go 26 _ = liveReturnSlot(nil) // incorrectly marks return slot as live
  /external/python/cpython2/Lib/idlelib/
UndoDelegator.py 195 marks = {}
198 marks[name] = text.index(name)
199 return marks
201 def set_marks(self, text, marks):
202 for name, index in marks.items():
  /external/python/cpython3/Lib/idlelib/
undo.py 196 marks = {}
199 marks[name] = text.index(name)
200 return marks
202 def set_marks(self, text, marks):
203 for name, index in marks.items():
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
UndoDelegator.py 195 marks = {}
198 marks[name] = text.index(name)
199 return marks
201 def set_marks(self, text, marks):
202 for name, index in marks.items():
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
UndoDelegator.py 195 marks = {}
198 marks[name] = text.index(name)
199 return marks
201 def set_marks(self, text, marks):
202 for name, index in marks.items():
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 195 marks = {}
198 marks[name] = text.index(name)
199 return marks
201 def set_marks(self, text, marks):
202 for name, index in marks.items():
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
UndoDelegator.py 195 marks = {}
198 marks[name] = text.index(name)
199 return marks
201 def set_marks(self, text, marks):
202 for name, index in marks.items():
  /prebuilts/go/darwin-x86/src/cmd/internal/objabi/
doc.go 28 // - empty string (marks end of sequence)
30 // - byte 0xff (marks end of sequence)
40 // - byte 0xff (marks end of sequence)

Completed in 453 milliseconds

1 2 3 4 5 6 7 8 9