/external/iptables/include/linux/netfilter/ |
H A D | xt_mark.h | 7 __u32 mark, mask; member in struct:xt_mark_tginfo2 11 __u32 mark, mask; member in struct:xt_mark_mtinfo1
|
H A D | xt_connmark.h | 27 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
|
/external/kernel-headers/original/uapi/linux/netfilter/ |
H A D | xt_mark.h | 7 __u32 mark, mask; member in struct:xt_mark_tginfo2 11 __u32 mark, mask; member in struct:xt_mark_mtinfo1
|
H A D | xt_connmark.h | 27 __u32 mark, mask; member in struct:xt_connmark_mtinfo1
|
/external/clang/test/CodeGen/ |
H A D | init-with-member-expr.c | 13 unsigned char mark[7]; member in struct:mark_header_tag
|
/external/kernel-headers/original/uapi/linux/netfilter_bridge/ |
H A D | ebt_mark_m.h | 10 unsigned long mark, mask; member in struct:ebt_mark_m_info
|
H A D | ebt_mark_t.h | 17 unsigned long mark; member in struct:ebt_mark_t_info 21 #define EBT_MARK_TARGET "mark"
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
H A D | 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
|
H A D | CommonTokenStream.as | 57 /** Track the last mark() call result value for use in rewind(). */ 292 public function mark():int { function
|
/external/antlr/antlr-3.4/runtime/C/src/ |
H A D | antlr3cyclicdfa.c | 81 ANTLR3_MARKER mark; local 86 mark = is->mark(is); /* Store where we are right now */ 112 is->rewind(is, mark); 123 is->rewind(is, mark); 155 is->rewind(is, mark); 177 is->rewind(is, mark); 184 is->rewind(is, mark);
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
H A D | 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/vogar/src/vogar/util/ |
H A D | MarkResetConsole.java | 52 public Mark mark() { method in class:MarkResetConsole
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
H A D | CommonTreeNodeStream.as | 41 * This stream knows how to mark/release for backtracking. 89 /** Track the last mark() call result value for use in rewind(). */ 276 public function mark():int { function
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
H A D | ANTLRStringStream.pm | 145 sub mark { subroutine
|
H A D | CommonTokenStream.pm | 281 sub mark { subroutine
|
/external/apache-harmony/support/src/test/java/tests/support/ |
H A D | Support_StringReader.java | 69 * back to the marked position provided the mark has not been invalidated. 72 * @throws java.io.IOException If an error occurs attempting mark this StringReader. 75 public void mark(int readLimit) throws IOException { method in class:Support_StringReader 91 * mark() and reset(). This method always returns true. 93 * @return <code>true</code> if mark() and reset() are supported, 182 * Reset this StringReader's position to the last <code>mark()</code>
|
/external/guava/guava/src/com/google/common/hash/ |
H A D | HashingInputStream.java | 73 * mark() is not supported for HashingInputStream 82 * mark() is not supported for HashingInputStream 85 public void mark(int readlimit) {} method in class:HashingInputStream
|
/external/guava/guava/src/com/google/common/io/ |
H A D | CountingInputStream.java | 37 private long mark = -1; field in class:CountingInputStream 75 @Override public synchronized void mark(int readlimit) { method in class:CountingInputStream 76 in.mark(readlimit); 77 mark = count; 78 // it's okay to mark even if mark isn't supported, as reset won't work 85 if (mark == -1) { 90 count = mark;
|
/external/icu/icu4c/source/layout/ |
H A D | 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/jmonkeyengine/engine/src/test/jme3test/collision/ |
H A D | TestMousePick.java | 58 Geometry mark; field in class:TestMousePick 63 initMark(); // a red sphere to mark the hit 96 mark.setLocalTranslation(closest.getContactPoint()); 100 mark.setLocalRotation(q); 102 rootNode.attachChild(mark); 104 rootNode.detachChild(mark); 134 mark = new Geometry("BOOM!", arrow); 135 //mark = new Geometry("BOOM!", sphere); 138 mark.setMaterial(mark_mat);
|
/external/jmonkeyengine/engine/src/test/jme3test/helloworld/ |
H A D | HelloPicking.java | 64 Geometry mark;
field in class:HelloPicking 70 initMark(); // a red sphere to mark the hit
111 // 5. Use the results (we mark the hit object)
115 // Let's interact - we mark the hit with a red dot.
116 mark.setLocalTranslation(closest.getContactPoint());
117 rootNode.attachChild(mark);
119 // No hits? Then remove the red mark.
120 rootNode.detachChild(mark);
149 mark = new Geometry("BOOM!", sphere);
152 mark [all...] |
/external/mesa3d/src/glsl/ |
H A D | ir_set_program_inouts.cpp | 75 mark(struct gl_program *prog, ir_variable *var, int offset, int len, function 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/tools/gcmole/ |
H A D | gcmole.lua | 293 local function mark(from, callers) function 297 mark(caller, funcs[caller]) 304 if gc[funcname] then mark(funcname, callers) end
|
/external/antlr/antlr-3.4/runtime/C/include/ |
H A D | antlr3intstream.h | 130 * rewind(mark()) should not affect the input cursor. 132 ANTLR3_MARKER (*mark) (struct ANTLR3_INT_STREAM_struct * intStream); member in struct:ANTLR3_INT_STREAM_struct 159 void (*release) (struct ANTLR3_INT_STREAM_struct * intStream, ANTLR3_MARKER mark); 171 * backtracking using the mark/rewind mechanism that restores state and
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
H A D | LookaheadStream.h | 33 /** A lookahead queue that knows how to mark/release locations 47 /** Track the last mark() call result value for use in rewind(). */ 50 /** tracks how deep mark() calls are nested */ 138 public int mark() { function in class:FastQueue
|