HomeSort by relevance Sort by last modified time
    Searched full:mark (Results 101 - 125 of 6083) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
BufferedReader.java 49 * mark pos end</pre>
54 * <p>Mark is the value pos will be set to on calls to {@link #reset}. Its
55 * value is in the range {@code [0...pos]}. If the mark is {@code -1}, the
58 * <p>MarkLimit limits the distance between the mark and the pos. When this
69 private int mark = -1; field in class:BufferedReader
83 * We also need to keep the 'lastWasCR' state for the mark position, in case
143 if (mark == -1 || (pos - mark >= markLimit)) {
144 /* mark isn't set or has exceeded its limit. use the whole buffer */
147 mark = -1
206 public void mark(int markLimit) throws IOException { method in class:BufferedReader
    [all...]
ObjectStreamConstants.java 43 * Tag to mark a {@code null} object reference.
48 * Tag to mark a reference to an object that has already been written to the
54 * Tag to mark a new class descriptor.
59 * Tag to mark a new object.
64 * Tag to mark a new string.
69 * Tag to mark a new array.
74 * Tag to mark a reference to a class.
79 * Tag to mark a block of optional data. The byte following this tag
85 * Tag to mark the end of block data blocks for an object.
90 * Tag to mark a stream reset
    [all...]
FilterInputStream.java 68 * Sets a mark position in this stream. The parameter {@code readlimit}
69 * indicates how many bytes can be read before the mark is invalidated.
73 * This implementation sets a mark in the filtered stream.
77 * the mark is invalidated.
82 public synchronized void mark(int readlimit) { method in class:FilterInputStream
83 in.mark(readlimit);
87 * Indicates whether this stream supports {@code mark()} and {@code reset()}.
91 * @return {@code true} if {@code mark()} and {@code reset()} are supported,
93 * @see #mark(int)
126 * if this stream is already closed, no mark has been set or th
    [all...]
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 95 static class Mark implements Comparable {
100 int size; // 0 unless the mark indicates RETURN etc.
103 Mark(int p) {
113 if (obj instanceof Mark) {
114 int pos = ((Mark)obj).position;
174 private Mark makeMark(HashMap table, int pos) {
181 private Mark makeMark(HashMap table, int pos, BasicBlock[] jump,
183 Mark m = makeMark0(table, pos, false, false);
188 private Mark makeMark0(HashMap table, int pos,
191 Mark m = (Mark)table.get(p)
    [all...]
  /external/proguard/src/proguard/shrink/
UsageMarker.java 87 // Mark this class.
97 // Mark this class's name.
100 // Mark the superclass.
110 // Explicitly mark the <clinit> method.
115 // Explicitly mark the parameterless <init> method.
124 // Mark the attributes.
137 // well. We'll mark them as such (here and in all subclasses).
139 // Mark the superclass.
146 // Mark the interfaces.
159 // Mark all methods
    [all...]
AnnotationUsageMarker.java 62 * @param usageMarker the usage marker that is used to mark the classes
78 // Mark the necessary annotation information.
85 // Mark this attribute as being used as well.
95 // Mark the necessary annotation information.
102 // Mark this attribute as being used as well.
112 // Mark the necessary annotation information in any annotation elements.
115 // Always mark annotation defaults.
128 // Mark the annotation as being used.
133 // Mark the necessary element values.
149 // Mark the element value as being used
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
CharSequenceReader.java 26 * <strong>Note:</strong> Supports {@link #mark(int)} and {@link #reset()}.
35 private int mark; field in class:CharSequenceReader
51 mark = 0;
55 * Mark the current position.
59 public void mark(int readAheadLimit) { method in class:CharSequenceReader
60 mark = idx;
64 * Mark is supported (returns true).
120 * mark has not been called).
123 idx = mark;
  /external/iproute2/tc/
m_skbedit.c 37 "MM = mark MARK \n"
40 "MARK = firewall mark to set\n");
60 __u32 flags = 0, priority, mark; local
86 } else if (matches(*argv, "mark") == 0) {
89 if (get_u32(&mark, *argv, 0)) {
90 fprintf(stderr, "Illegal mark\n");
153 &mark, sizeof(mark));
166 __u32 *mark; local
    [all...]
  /external/chromium_org/net/third_party/nss/ssl/bodge/
secitem_array.c 31 void *mark = NULL; local
34 mark = PORT_ArenaMark(arena);
65 if (mark) {
66 PORT_ArenaUnmark(arena, mark);
72 if (mark) {
73 PORT_ArenaRelease(arena, mark);
  /packages/apps/Browser/src/com/android/browser/
BrowserBackupAgent.java 111 Bookmark mark = new Bookmark(); local
112 mark.url = in.readUTF();
113 mark.visits = in.readInt();
114 mark.date = in.readLong();
115 mark.created = in.readLong();
116 mark.title = in.readUTF();
117 bookmarks.add(mark);
127 Bookmark mark = bookmarks.get(i); local
133 new String[] { mark.url }, null);
136 if (DEBUG) Log.v(TAG, "Did not see url: " + mark.url)
    [all...]
  /dalvik/vm/mterp/x86/
OP_IPUT_OBJECT_QUICK.S 17 je 1f # skip card mark if null store
19 movb %al,(%eax,%ecx) # mark card based on object head
  /external/chromium_org/chrome/browser/resources/omnibox/
omnibox.css 22 .check-mark {
27 .x-mark {
  /external/iptables/extensions/
libxt_cluster.man 25 \-j MARK \-\-set-mark 0xffff
30 \-j MARK -\-set\-mark 0xffff
33 \-m mark ! \-\-mark 0xffff \-j DROP
36 \-m mark ! \-\-mark 0xffff \-j DROP
libxt_tos.man 6 Matches packets with the given TOS mark value. If a mask is specified, it is
7 logically ANDed with the TOS mark before the comparison.
  /external/stlport/stlport/stl/
msl_string.h 3 * Mark of the Unicorn, Inc.
9 * in supporting documentation. Mark of the Unicorn, Inc. makes no
  /external/stlport/test/eh/
random_number.h 5 * Mark of the Unicorn, Inc.
11 * in supporting documentation. Mark of the Unicorn makes no
test_bitset.cpp 5 * Mark of the Unicorn, Inc.
11 * in supporting documentation. Mark of the Unicorn makes no
  /ndk/sources/cxx-stl/stlport/stlport/stl/
msl_string.h 3 * Mark of the Unicorn, Inc.
9 * in supporting documentation. Mark of the Unicorn, Inc. makes no
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/res/values/
donottranslate-more-keys.xml 97 <!-- U+2039: "?" SINGLE LEFT-POINTING ANGLE QUOTATION MARK
98 U+203A: "?" SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
101 U+00AB: "«" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
102 U+00BB: "»" RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK -->
162 <!-- U+00A1: "¡" INVERTED EXCLAMATION MARK -->
164 <!-- U+00BF: "¿" INVERTED QUESTION MARK -->
210 <!-- U+2039: "?" SINGLE LEFT-POINTING ANGLE QUOTATION MARK
211 U+203A: "?" SINGLE RIGHT-POINTING ANGLE QUOTATION MARK
212 U+00AB: "«" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK
213 U+00BB: "»" RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
fib_rules.h 43 FRA_FWMARK, /* mark */
49 FRA_FWMASK, /* mask for netfilter mark */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fib_rules.h 43 FRA_FWMARK, /* mark */
49 FRA_FWMASK, /* mask for netfilter mark */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
fib_rules.h 43 FRA_FWMARK, /* mark */
49 FRA_FWMASK, /* mask for netfilter mark */
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
msl_string.h 3 * Mark of the Unicorn, Inc.
9 * in supporting documentation. Mark of the Unicorn, Inc. makes no
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
msl_string.h 3 * Mark of the Unicorn, Inc.
9 * in supporting documentation. Mark of the Unicorn, Inc. makes no
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
msl_string.h 3 * Mark of the Unicorn, Inc.
9 * in supporting documentation. Mark of the Unicorn, Inc. makes no

Completed in 960 milliseconds

1 2 3 45 6 7 8 91011>>