HomeSort by relevance Sort by last modified time
    Searched defs:mark (Results 26 - 50 of 425) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_mark_t.h 18 unsigned long mark; member in struct:ebt_mark_t_info
22 #define EBT_MARK_TARGET "mark"
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter/
xt_CONNMARK.h 20 unsigned long mark; member in struct:xt_connmark_target_info
xt_MARK.h 6 unsigned long mark; member in struct:xt_mark_target_info
17 unsigned long mark; member in struct:xt_mark_target_info_v1
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/netfilter_bridge/
ebt_mark_m.h 9 unsigned long mark, mask; member in struct:ebt_mark_m_info
ebt_mark_t.h 18 unsigned long mark; member in struct:ebt_mark_t_info
22 #define EBT_MARK_TARGET "mark"
  /system/netd/
UidMarkMap.h 27 bool add(int uid_start, int uid_end, int mark);
28 bool remove(int uid_start, int uid_end, int mark);
30 bool anyRulesForMark(int mark);
36 int mark; member in struct:UidMarkMap::UidMarkEntry
37 UidMarkEntry(int uid_start, int uid_end, int mark);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRStringStream.as 46 /** tracks how deep mark() calls are nested */
52 * A null is kept @ index 0. Create upon first call to mark().
56 /** Track the last mark() call result value for use in rewind(). */
127 public function mark():int { function
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
IntStream.java 46 * rewind(mark()) should not affect the input cursor. The Lexer
50 int mark(); method in interface:IntStream
72 * Do not "pop" the marker off the state. mark(i)
84 * argument. So if you're nested 5 levels of mark(), and then release(2)
99 * backtracking using the mark/rewind mechanism that restores state and
  /external/chromium_org/net/spdy/
spdy_test_utils.cc 35 const bool mark = local
37 hex += mark ? '*' : ' ';
40 hex += mark ? '*' : ' ';
  /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);
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_set_program_inouts.cpp 75 mark(struct gl_program *prog, ir_variable *var, int offset, int len, function
105 /* Default handler: Mark all the locations in the variable as used. */
113 mark(this->prog, ir->var, 0,
117 mark(this->prog, ir->var, 0, ir->type->matrix_columns,
144 mark(this->prog, var, index->value.i[0] * width, width,
  /external/guava/guava/src/com/google/common/io/
CountingInputStream.java 35 private long mark = -1; field in class:CountingInputStream
73 @Override public synchronized void mark(int readlimit) { method in class:CountingInputStream
74 in.mark(readlimit);
75 mark = count;
76 // it's okay to mark even if mark isn't supported, as reset won't work
81 throw new IOException("Mark not supported");
83 if (mark == -1) {
84 throw new IOException("Mark not set");
88 count = mark;
    [all...]
LimitInputStream.java 36 private long mark = -1; field in class:LimitInputStream
55 @Override public synchronized void mark(int readlimit) { method in class:LimitInputStream
56 in.mark(readlimit);
57 mark = left;
58 // it's okay to mark even if mark isn't supported, as reset won't work
88 throw new IOException("Mark not supported");
90 if (mark == -1) {
91 throw new IOException("Mark not set");
95 left = mark;
    [all...]
  /external/icu4c/layout/
CanonShaping.cpp 51 le_int32 mark; local
53 for (mark = i; mark < charCount; mark += 1) {
54 if (combiningClasses[mark] == 0) {
59 sortMarks(indices, combiningClasses, i, mark);
  /external/iproute2/tc/
f_fw.c 129 __u32 mark = 0, mask = 0; local
131 mark = handle;
134 fprintf(f, "handle 0x%x/0x%x ", mark, mask);
  /external/iptables/include/linux/netfilter/
xt_connmark.h 27 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
  /external/mesa3d/src/glsl/
ir_set_program_inouts.cpp 75 mark(struct gl_program *prog, ir_variable *var, int offset, int len, function
105 /* Default handler: Mark all the locations in the variable as used. */
113 mark(this->prog, ir->var, 0,
117 mark(this->prog, ir->var, 0, ir->type->matrix_columns,
144 mark(this->prog, var, index->value.i[0] * width, width,
  /external/v8/src/
mark-compact-inl.h 33 #include "mark-compact.h"
66 MarkBit mark = Marking::MarkBitFrom(object); local
67 bool old_mark = mark.Get();
68 if (!old_mark) SetMark(object, mark);
  /libcore/luni/src/main/java/java/io/
ByteArrayInputStream.java 39 * The current mark position. Initially set to 0 or the <code>offset</code>
42 protected int mark; field in class:ByteArrayInputStream
58 this.mark = 0;
78 mark = offset;
104 * Sets a mark position in this ByteArrayInputStream. The parameter
114 public synchronized void mark(int readlimit) { method in class:ByteArrayInputStream
115 mark = pos;
119 * Indicates whether this stream supports the {@code mark()} and
124 * @see #mark(int)
166 * @see #mark(int
    [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...]
FilterReader.java 62 * Sets a mark position in this reader. The parameter {@code readlimit}
63 * indicates how many bytes can be read before the mark is invalidated.
67 * This implementation sets a mark in the filtered reader.
71 * the mark is invalidated.
78 public synchronized void mark(int readlimit) throws IOException { method in class:FilterReader
80 in.mark(readlimit);
85 * Indicates whether this reader supports {@code mark()} and {@code reset()}.
88 * @return {@code true} if {@code mark()} and {@code reset()} are supported
90 * @see #mark(int)
161 * {@code mark()} and {@code reset()}
    [all...]
InputStream.java 117 * Sets a mark position in this InputStream. The parameter {@code readlimit}
118 * indicates how many bytes can be read before the mark is invalidated.
127 * the mark is invalidated.
131 public void mark(int readlimit) { method in class:InputStream
136 * Indicates whether this stream supports the {@code mark()} and
140 * @see #mark(int)
197 * {@code IOException} if the number of bytes read since the mark has been
198 * set is greater than the limit provided to {@code mark}, or if no mark
Reader.java 79 * Sets a mark position in this reader. The parameter {@code readLimit}
80 * indicates how many characters can be read before the mark is invalidated.
88 * the number of characters that can be read before the mark is
93 * if an error occurs while setting a mark in this reader.
97 public void mark(int readLimit) throws IOException { method in class:Reader
102 * Indicates whether this reader supports the {@code mark()} and
173 * Resets this reader's position to the last {@code mark()} location.
181 * @see #mark(int)
199 * @see #mark(int)
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLInputStream.java 56 public synchronized void mark(int limit) { method in class:FtpURLInputStream
57 is.mark(limit);
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
bsd.sh 75 MARK=100
95 mark() function
98 test $MARK = 100 || echo
99 MARK=`expr $MARK + 1`
100 echo "Test $1:$MARK" | sed 's/./=/g'
101 echo "Test $1:$MARK"
102 echo "Test $1:$MARK" | sed 's/./=/g'
107 mark '1.1'
111 mark '1.2' ; $SED -n 's/^/e1_/p' lines
    [all...]

Completed in 2977 milliseconds

12 3 4 5 6 7 8 91011>>