/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
UnbufferedTokenStream.cs | 119 public override void Release(int marker) 121 base.Release(marker);
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
ANTLRDebugEventListener.h | 89 * the token stream's marker is sent in case you need it. 91 - (void) mark:(NSInteger)marker; 95 * rewound to the position associated with marker. 97 - (void) rewind:(NSInteger)marker; 99 /** Rewind to the input position of the last marker. 103 * Do not "pop" the marker off the state. mark(i)
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
ANTLRDebugEventListener.h | 89 * the token stream's marker is sent in case you need it. 91 - (void) mark:(NSInteger)marker; 95 * rewound to the position associated with marker. 97 - (void) rewind:(NSInteger)marker; 99 /** Rewind to the input position of the last marker. 103 * Do not "pop" the marker off the state. mark(i)
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
ANTLRDebugEventListener.h | 89 * the token stream's marker is sent in case you need it. 91 - (void) mark:(NSInteger)marker; 95 * rewound to the position associated with marker. 97 - (void) rewind:(NSInteger)marker; 99 /** Rewind to the input position of the last marker. 103 * Do not "pop" the marker off the state. mark(i)
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRDebugEventListener.h | 89 * the token stream's marker is sent in case you need it. 91 - (void) mark:(NSInteger)marker; 95 * rewound to the position associated with marker. 97 - (void) rewind:(NSInteger)marker; 99 /** Rewind to the input position of the last marker. 103 * Do not "pop" the marker off the state. mark(i)
|
ANTLRStringStream.h | 80 - (void) rewind:(NSInteger) marker; 82 - (void) release:(NSInteger) marker;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
DocumentFix.java | 32 protected DocumentFix(String id, IMarker marker) { 33 super(id, marker);
|
LinearLayoutWeightFix.java | 36 private LinearLayoutWeightFix(String id, IMarker marker) { 37 super(id, marker);
|
ObsoleteLayoutParamsFix.java | 32 private ObsoleteLayoutParamsFix(String id, IMarker marker) { 33 super(id, marker);
|
SetScrollViewSizeFix.java | 35 private SetScrollViewSizeFix(String id, IMarker marker) { 36 super(id, marker);
|
LintList.java | 277 for (IMarker marker : markers) { 278 markerList.add(marker); 279 int severity = marker.getAttribute(IMarker.SEVERITY, 0); 288 // No need to sort the marker list here; it will be sorted by the tree table model 350 // marker of each type, and below we have all the duplicates of 354 for (IMarker marker : list) { 355 String id = EclipseLintClient.getId(marker); 356 types.put(id, marker); 408 public int getCount(IMarker marker) { 410 Integer count = mTypeCount.get(marker); [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/build/ |
AaptQuickFixTest.java | 122 // Test marker resolution. 125 for (IMarker marker : markers) { 126 int start = marker.getAttribute(IMarker.CHAR_START, 0); 127 int end = marker.getAttribute(IMarker.CHAR_END, 0); 129 // Found the target marker. Now check the marker resolution of it. 130 assertTrue(aaptQuickFix.hasResolutions(marker)); 131 IMarkerResolution[] resolutions = aaptQuickFix.getResolutions(marker); 138 // Not running marker yet -- if we create the files here they already 141 //resolution.run(marker); 236 IMarker marker = markers[0]; local [all...] |
/external/chromium_org/sandbox/win/src/ |
handle_closer_test.cc | 18 // Returns a handle to a unique marker file that can be retrieved between runs. 66 // Create a unique marker file that is open while the test is running. 116 base::win::ScopedHandle marker(GetMarkerFile(kFileExtensions[i])); 117 CHECK(marker.IsValid()); 118 CHECK(sandbox::GetHandleName(marker, &handle_name)); 136 base::win::ScopedHandle marker(GetMarkerFile(kFileExtensions[i])); 137 CHECK(marker.IsValid()); 138 CHECK(sandbox::GetHandleName(marker, &handle_name));
|
/external/chromium_org/v8/test/mjsunit/compiler/ |
inline-arguments.js | 126 var marker = a[0]; 127 uninlinable(uninlinable(0, 0), marker.x); 137 function toarr1(marker, a, b, c) { 138 return toarr_inner(marker, a / 2, b / 2, c / 2); 141 function toarr2(marker, a, b, c) { 144 x = toarr_inner(marker, a / 2, b / 2, c / 2)), x; 148 var marker = { x: 0 }; 149 assertArrayEquals([3, 2, 1], toarr(marker, 2, 4, 6)); 150 assertArrayEquals([3, 2, 1], toarr(marker, 2, 4, 6)); 152 assertArrayEquals([3, 2, 1], toarr(marker, 2, 4, 6)) [all...] |
/frameworks/av/libvideoeditor/osal/src/ |
M4OSA_CharStar.c | 309 va_list marker; local 332 va_start(marker,format); 387 err= vsnprintf((char *)pStrOut, (size_t)strOutMaxLen + 1, (const char *)format, marker); 388 va_end(marker); 493 err = vsnprintf((char *)pStrOut, (size_t)strOutMaxLen + 1, (const char *)newFormat, marker); 494 va_end(marker);
|
/external/libvorbis/lib/ |
envelope.c | 282 float *marker=alloca(v->pcm_current*sizeof(*marker)); 284 memset(marker,0,sizeof(*marker)*v->pcm_current); 298 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->filter[m].markers[l]*.1; 299 _analysis_output_always(buf,seq,marker,v->pcm_current,0,0,totalshift); 305 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->filter[m+VE_BANDS].markers[l]*.1; 306 _analysis_output_always(buf,seq,marker,v->pcm_current,0,0,totalshift); 309 for(l=0;l<last;l++)marker[l*ve->searchstep]=ve->mark[l]*.4; 310 _analysis_output_always("mark",seq,marker,v->pcm_current,0,0,totalshift) [all...] |
/external/compiler-rt/lib/tsan/rtl/ |
tsan_platform_linux.cc | 165 // Mark shadow for .rodata sections with the special kShadowRodata marker. 187 InternalScopedBuffer<u64> marker(kMarkerSize); 188 for (u64 *p = marker.data(); p < marker.data() + kMarkerSize; p++) 190 internal_write(fd, marker.data(), marker.size()); 212 for (char *p = shadow_start; p < shadow_end; p += marker.size()) { 213 internal_mmap(p, Min<uptr>(marker.size(), shadow_end - p),
|
/external/chromium_org/third_party/WebKit/Source/web/ |
ContextMenuClientImpl.cpp | 153 static String selectMisspellingAsync(Frame* selectedFrame, DocumentMarker& marker) 164 marker = *markers[0]; 168 markerRange->setStart(markerRange->startContainer(), marker.startOffset()); 169 markerRange->setEnd(markerRange->endContainer(), marker.endOffset()); 306 // a mouse on a word, Chrome just needs to find a spelling marker on the word instead of spellchecking it. 308 DocumentMarker marker; local 309 data.misspelledWord = selectMisspellingAsync(selectedFrame, marker); 310 data.misspellingHash = marker.hash(); 311 if (marker.description().length()) { 313 marker.description().split('\n', suggestions) [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
CommonTokenStream.js | 250 release: function(marker) { 262 rewind: function(marker) { 263 if (!org.antlr.lang.isNumber(marker)) { 264 marker = this.lastMarker; 266 this.seek(marker);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/tree/ |
debug.rb | 149 def rewind( marker = nil ) 150 @debug_listener.rewind( marker ) 151 super( marker || @last_marker )
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
multifile.py | 91 # Ignore trailing whitespace on marker lines 92 marker = line.rstrip() 96 if marker == self.section_divider(sep): 99 elif marker == self.end_marker(sep):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
multifile.py | 91 # Ignore trailing whitespace on marker lines 92 marker = line.rstrip() 96 if marker == self.section_divider(sep): 99 elif marker == self.end_marker(sep):
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
LintOverlay.java | 109 IMarker marker = editor.getIssueForNode(vi.getUiViewNode()); local 110 if (marker != null) { 111 int severity = marker.getAttribute(IMarker.SEVERITY, 0);
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
ANTLRStringStream.as | 161 public function release(marker:int):void { 163 markDepth = marker; 164 // release this marker
|
/external/antlr/antlr-3.4/runtime/C/include/ |
antlr3debugeventlistener.h | 157 * the token stream's marker is sent in case you need it. 159 void (*mark) (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker); 163 * rewound to the position associated with marker. 165 void (*rewind) (pANTLR3_DEBUG_EVENT_LISTENER delboy, ANTLR3_MARKER marker); 167 /** Rewind to the input position of the last marker. 171 * Do not "pop" the marker off the state. mark(i)
|