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

1 2 3 4 5 6 7

  /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/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...]
  /prebuilts/go/darwin-x86/src/net/
sys_cloexec.go 17 // Wrapper around the socket system call that marks the returned file
37 // Wrapper around the accept system call that marks the returned file
sock_cloexec.go 17 // Wrapper around the socket system call that marks the returned file
51 // Wrapper around the accept system call that marks the returned file
  /prebuilts/go/linux-x86/src/net/
sys_cloexec.go 17 // Wrapper around the socket system call that marks the returned file
37 // Wrapper around the accept system call that marks the returned file
sock_cloexec.go 17 // Wrapper around the socket system call that marks the returned file
51 // Wrapper around the accept system call that marks the returned file
  /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/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/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/pprof/internal/tempfile/
tempfile.go 30 // DeferDelete marks a file or directory to be deleted by next call to Cleanup.
  /prebuilts/go/darwin-x86/src/net/http/httputil/
httputil.go 26 // sends the final 0-length chunk that marks the end of the stream.
  /prebuilts/go/darwin-x86/src/syscall/
env_windows.go 79 // empty string marks the end
  /prebuilts/go/linux-x86/src/cmd/pprof/internal/tempfile/
tempfile.go 30 // DeferDelete marks a file or directory to be deleted by next call to Cleanup.
  /prebuilts/go/linux-x86/src/net/http/httputil/
httputil.go 26 // sends the final 0-length chunk that marks the end of the stream.
  /prebuilts/go/linux-x86/src/syscall/
env_windows.go 79 // empty string marks the end
  /build/soong/android/
prebuilt.go 64 // prebuiltMutator ensures that there is always a module with an undecorated name, and marks
79 // PrebuiltSelectModuleMutator marks prebuilts that are used, either overriding source modules or
  /external/lz4/programs/
bench.c 227 const char* const marks[NB_MARKS] = { " |", " /", " =", "\\" }; local
246 DISPLAYLEVEL(2, "%2s-%-17.17s :%10u ->\r", marks[markNb], displayName, (U32)srcSize);
276 marks[markNb], displayName, (U32)srcSize, (U32)cSize, ratio,
312 marks[markNb], displayName, (U32)srcSize, (U32)cSize, ratio,
  /external/v8/src/compiler/
loop-analysis.cc 51 // marks on edges into/out-of the loop header nodes.
165 uint32_t marks = backward_[tindex + i] & forward_[findex + i]; local
167 uint32_t next = prev | marks;
179 // Propagate marks backward from loop headers.
203 // Intentionally ignore return value. Loop exit node marks
209 // Intentionally ignore return value. Loop exit node marks
214 // Propagate marks backwards from this node.
221 // Entry or normal edge. Propagate all marks except loop_num.
295 // Propagate marks forward from loops.
387 // Search the marks word by word
389 uint32_t marks = backward_[pos + i] & forward_[pos + i]; local
    [all...]
  /prebuilts/go/darwin-x86/src/unicode/
graphic.go 34 // Such characters include letters, marks, numbers, punctuation, symbols, and
46 // characters include letters, marks, numbers, punctuation, symbols, and the
  /prebuilts/go/linux-x86/src/unicode/
graphic.go 34 // Such characters include letters, marks, numbers, punctuation, symbols, and
46 // characters include letters, marks, numbers, punctuation, symbols, and the

Completed in 1316 milliseconds

1 2 3 4 5 6 7