/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/scopes/output1/ |
SymbolTableParser.h | 12 #pragma mark Tokens 25 #pragma mark Dynamic Global Scopes 44 #pragma mark Dynamic Rule Scopes 45 #pragma mark Rule Return Scopes start 46 #pragma mark Rule return scopes end
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/simplecTreeParser/output1/ |
SimpleCLexer.h | 13 #pragma mark Cyclic DFA interface start DFA4 20 #pragma mark Cyclic DFA interface end DFA4 22 #pragma mark Rule return scopes start 23 #pragma mark Rule return scopes end 24 #pragma mark Tokens
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/ |
TreeRewriteParser.h | 12 #pragma mark Tokens 16 #pragma mark Dynamic Global Scopes 17 #pragma mark Dynamic Rule Scopes 18 #pragma mark Rule Return Scopes start 48 #pragma mark Rule return scopes end
|
/external/chromium_org/chrome/browser/extensions/ |
execute_script_apitest.cc | 18 // If failing, mark disabled and update http://crbug.com/92105. 25 // If failing, mark disabled and update http://crbug.com/92105. 46 // If failing, mark disabled and update http://crbug.com/84760. 53 // If crashing, mark disabled and update http://crbug.com/67774. 83 // If failing, mark disabled and update http://crbug.com/92105.
|
/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...] |
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/keyboard/layout/ |
SymbolsShifted.java | 45 // U+00BF: "¿" INVERTED QUESTION MARK 46 // U+00A1: "¡" INVERTED EXCLAMATION MARK 116 // U+2122: "?" TRADE MARK SIGN 121 // U+2039: "?" SINGLE LEFT-POINTING ANGLE QUOTATION MARK 123 // U+00AB: "«" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 126 // U+203A: "?" SINGLE RIGHT-POINTING ANGLE QUOTATION MARK 128 // U+00BB: "»" RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK 146 // U+2039: "?" SINGLE LEFT-POINTING ANGLE QUOTATION MARK 148 // U+00AB: "«" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 152 // U+203A: "?" SINGLE RIGHT-POINTING ANGLE QUOTATION MARK [all...] |
ArmenianPhonetic.java | 52 // U+055C: "?" ARMENIAN EXCLAMATION MARK 53 // U+00A1: "¡" INVERTED EXCLAMATION MARK 54 // U+055E: "?" ARMENIAN QUESTION MARK 55 // U+00BF: "¿" INVERTED QUESTION MARK 86 // U+055E: "?" ARMENIAN QUESTION MARK 87 // U+055C: "?" ARMENIAN EXCLAMATION MARK 91 // U+055B: "?" ARMENIAN EMPHASIS MARK 93 // U+00BB: "»" RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK 94 // U+00AB: "«" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 95 // U+055F: "?" ARMENIAN ABBREVIATION MARK [all...] |
/external/proguard/src/proguard/optimize/info/ |
ReadWriteFieldMarker.java | 62 // Mark the field, if any, as being read from and written to. 70 // Mark the field as being read from. 78 // Mark the field as being written to. 94 // Mark the referenced field, if any. 101 // Mark the referenced field. 113 // Mark the field if it is being read from. 119 // Mark the field if it is being written to.
|
ParameterUsageMarker.java | 90 // Must we mark the 'this' parameter? 94 // Mark the 'this' parameter. 98 // Must we mark all other parameters? 101 // Mark all parameters, without the 'this' parameter. 110 // Mark all parameters. 117 // Mark the 'this' parameter. 131 // Mark the 'this' parameter. 135 // Mark the parameters that are used by the code. 178 // Mark the parameters that are used by the code. 201 // Mark the variable [all...] |
/packages/inputmethods/LatinIME/tools/make-keyboard-text/res/values/ |
donottranslate-more-keys.xml | 161 U+2039: "?" SINGLE LEFT-POINTING ANGLE QUOTATION MARK 162 U+203A: "?" SINGLE RIGHT-POINTING ANGLE QUOTATION MARK 165 U+00AB: "«" LEFT-POINTING DOUBLE ANGLE QUOTATION MARK 166 U+00BB: "»" RIGHT-POINTING DOUBLE ANGLE QUOTATION MARK --> 196 <!-- U+00A1: "¡" INVERTED EXCLAMATION MARK --> 198 <!-- U+00BF: "¿" INVERTED QUESTION MARK --> 228 U+2018: "?" LEFT SINGLE QUOTATION MARK 229 U+2019: "?" RIGHT SINGLE QUOTATION MARK 230 U+201A: "?" SINGLE LOW-9 QUOTATION MARK 231 U+201C: "?" LEFT DOUBLE QUOTATION MARK [all...] |
/external/antlr/antlr-3.4/runtime/Python/unittests/ |
teststreams.py | 151 """StringStream.mark()""" 157 marker = stream.mark() 162 marker = stream.mark() 173 marker1 = stream.mark() 176 marker2 = stream.mark() 192 marker1 = stream.mark() 195 marker2 = stream.mark() 198 marker3 = stream.mark() 211 marker = stream.mark() 229 marker1 = stream.mark() [all...] |
/external/proguard/src/proguard/optimize/peephole/ |
BranchTargetFinder.java | 365 // Mark branch targets by going over all instructions. 373 // Mark branch targets in the exception table. 459 // Mark the instruction. 473 // Mark the branch origin. 476 // Mark the next instruction. 484 // Mark the instruction. 525 // Mark the instruction. 533 // Mark the method. 536 // Mark the branch origin. 539 // Mark the subroutine return at its return instruction [all...] |
/libcore/luni/src/test/java/libcore/java/io/ |
OldByteArrayInputStreamTest.java | 59 assertEquals(444, SubByteArrayInputStream.mark); 66 public static int mark, pos, count; field in class:OldByteArrayInputStreamTest.SubByteArrayInputStream 72 mark = super.mark; 103 // Test for method void java.io.ByteArrayInputStream.mark(int) 108 is.mark(1000); 113 assertTrue("Failed to mark correct position", new String(buf1, 0, 117 fail("Exception during mark test"); 143 is.mark(100); 184 is.mark(200) [all...] |
OldFilterInputStreamTest.java | 93 // Test for method void java.io.FilterInputStream.mark(int) 98 // Purpose 1: Check that mark() does nothing if the filtered stream 101 is.mark(2 * bufSize); 109 assertFalse("Test 1: mark() should have no effect.", 113 // Purpose 2: Check that mark() in combination with reset() works if 118 is.mark(2 * bufSize); 122 assertTrue("Test 2: mark() or reset() has failed.", 130 // input stream that is known to not support mark(). 135 // input stream that is known to support mark(). 247 // filtered stream is a BufferedInputStream but mark() has no [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/input/ |
NullInputStream.java | 67 private long mark = -1; field in class:NullInputStream 89 * the <code>mark()</code> functionality. 143 mark = -1; 147 * Mark the current position. 151 * @throws UnsupportedOperationException if mark is not supported. 153 public synchronized void mark(int readlimit) { method in class:NullInputStream 155 throw new UnsupportedOperationException("Mark not supported"); 157 mark = position; 162 * Indicates whether <i>mark</i> is supported. 164 * @return Whether <i>mark</i> is supported or not [all...] |
NullReader.java | 67 private long mark = -1; field in class:NullReader 89 * the <code>mark()</code> functionality. 127 mark = -1; 131 * Mark the current position. 135 * @throws UnsupportedOperationException if mark is not supported. 137 public synchronized void mark(int readlimit) { method in class:NullReader 139 throw new UnsupportedOperationException("Mark not supported"); 141 mark = position; 146 * Indicates whether <i>mark</i> is supported. 148 * @return Whether <i>mark</i> is supported or not [all...] |
/cts/suite/cts/deviceTests/browserbench/assets/octane/ |
deltablue.js | 175 Constraint.prototype.satisfy = function (mark) { 176 this.chooseMethod(mark); 182 this.markInputs(mark); 187 if (!planner.addPropagate(this, mark)) 189 out.mark = mark; 236 UnaryConstraint.prototype.chooseMethod = function (mark) { 237 this.satisfied = (this.myOutput.mark != mark) 248 UnaryConstraint.prototype.markInputs = function (mark) { [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/ |
v8-deltablue.html | 171 Constraint.prototype.satisfy = function (mark) { 172 this.chooseMethod(mark); 178 this.markInputs(mark); 183 if (!planner.addPropagate(this, mark)) 185 out.mark = mark; 232 UnaryConstraint.prototype.chooseMethod = function (mark) { 233 this.satisfied = (this.myOutput.mark != mark) 244 UnaryConstraint.prototype.markInputs = function (mark) { [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/ |
v8-deltablue.js | 166 Constraint.prototype.satisfy = function (mark) { 167 this.chooseMethod(mark); 173 this.markInputs(mark); 178 if (!planner.addPropagate(this, mark)) 180 out.mark = mark; 227 UnaryConstraint.prototype.chooseMethod = function (mark) { 228 this.satisfied = (this.myOutput.mark != mark) 239 UnaryConstraint.prototype.markInputs = function (mark) { [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/ |
v8-deltablue.js | 166 Constraint.prototype.satisfy = function (mark) { 167 this.chooseMethod(mark); 173 this.markInputs(mark); 178 if (!planner.addPropagate(this, mark)) 180 out.mark = mark; 227 UnaryConstraint.prototype.chooseMethod = function (mark) { 228 this.satisfied = (this.myOutput.mark != mark) 239 UnaryConstraint.prototype.markInputs = function (mark) { [all...] |
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/ |
v8-deltablue.js | 166 Constraint.prototype.satisfy = function (mark) { 167 this.chooseMethod(mark); 173 this.markInputs(mark); 178 if (!planner.addPropagate(this, mark)) 180 out.mark = mark; 227 UnaryConstraint.prototype.chooseMethod = function (mark) { 228 this.satisfied = (this.myOutput.mark != mark) 239 UnaryConstraint.prototype.markInputs = function (mark) { [all...] |
/external/chromium_org/v8/benchmarks/ |
deltablue.js | 172 Constraint.prototype.satisfy = function (mark) { 173 this.chooseMethod(mark); 179 this.markInputs(mark); 184 if (!planner.addPropagate(this, mark)) 186 out.mark = mark; 233 UnaryConstraint.prototype.chooseMethod = function (mark) { 234 this.satisfied = (this.myOutput.mark != mark) 245 UnaryConstraint.prototype.markInputs = function (mark) { [all...] |
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRUnbufferedCommonTreeNodeStream.h | 79 #pragma mark ANTLRTreeNodeStream conformance 95 #pragma mark ANTLRIntStream conformance 98 - (NSUInteger) mark; 106 #pragma mark Lookahead Handling 112 #pragma mark Node visiting 118 #pragma mark Accessors
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/ |
SimpleCParser.h | 25 #pragma mark Cyclic DFA interface start DFA2 32 #pragma mark Cyclic DFA interface end DFA2 34 #pragma mark Tokens 56 #pragma mark Dynamic Global Scopes 57 #pragma mark Dynamic Rule Scopes 58 #pragma mark Rule Return Scopes start
|
/external/chromium_org/chrome/browser/ui/cocoa/autofill/ |
autofill_popup_base_view_cocoa.mm | 13 #pragma mark - 14 #pragma mark Colors 44 #pragma mark - 45 #pragma mark Public methods 132 #pragma mark - 133 #pragma mark Messages from AutofillPopupViewBridge:
|