/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
streams.py | 77 current input position, index(), or some other marker so that 97 def rewind(self, marker=None): 99 Reset the stream so that next call to index would return marker. 100 The marker will usually be index() but it doesn't have to be. It's 101 just a marker to indicate what state the stream was in. This is 103 created after this marker argument, this routine must unroll them 104 like a stack. Assume the state the stream was in when this marker 107 If marker is None: 108 Rewind to the input position of the last marker. 112 Do not "pop" the marker off the state. mark(i [all...] |
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/debug/ |
event-hub.rb | 165 def mark( marker ) 167 listener.mark( marker ) 183 def rewind( marker ) 185 listener.rewind( marker )
|
/external/chromium/chrome/browser/sync/sessions/ |
session_state_unittest.cc | 89 std::string marker(i, i); 90 download_progress_markers[i] = marker; 100 std::string marker(i, i); 102 EXPECT_TRUE(base::Base64Encode(marker, &expected_value));
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/ |
Extensions3D.cpp | 198 void Extensions3D::insertEventMarkerEXT(const String& marker) 200 m_context->webContext()->insertEventMarkerEXT(marker.utf8().data()); 203 void Extensions3D::pushGroupMarkerEXT(const String& marker) 205 m_context->webContext()->pushGroupMarkerEXT(marker.utf8().data());
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
files.py | 66 for marker in markers: 67 if marker in filename: 68 parts = filename.split(marker) 70 zi = zipimport.zipimporter(parts[0]+marker[:-1])
|
/external/chromium_org/v8/src/ |
frames-inl.h | 203 Object* marker = local 205 return marker == Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR); 210 Object* marker = local 212 return marker == Smi::FromInt(StackFrame::CONSTRUCT);
|
/external/v8/src/ |
frames-inl.h | 185 Object* marker = local 187 return marker == Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR); 192 Object* marker = local 194 return marker == Smi::FromInt(StackFrame::CONSTRUCT);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintFix.java | 63 protected LintFix(String id, IMarker marker) { 65 mMarker = marker; 92 * This will be used to determine whether the marker can be deleted immediately 176 // ApiDetector.UNSUPPORTED is provided as a marker resolution rather than 177 // a quick assistant (the marker resolution adds a suitable @TargetApi annotation) 188 * @param marker the marker corresponding to the error 192 public static List<LintFix> getFixes(@NonNull String id, @NonNull IMarker marker) { 199 LintFix fix = constructor.newInstance(id, marker);
|
AddSuppressAnnotation.java | 76 * Marker resolution for adding {@code @SuppressLint} annotations in Java files. 92 @NonNull IMarker marker, 97 mMarker = marker; 119 public void run(IMarker marker) { 139 // Remove the marker now that the suppress annotation has been added 141 // and besides we don't want to keep offering marker resolutions on this 142 // marker which could lead to duplicate annotations since the above code 306 * @param marker the marker to create fixes for 310 public static void createFixes(IMarker marker, String id [all...] |
/external/libvpx/libvpx/vp9/ |
vp9_dx_iface.c | 364 uint8_t marker; local 367 marker = data[data_sz - 1]; 370 if ((marker & 0xe0) == 0xc0) { 371 const uint32_t frames = (marker & 0x7) + 1; 372 const uint32_t mag = ((marker >> 3) & 0x3) + 1; 375 if (data_sz >= index_sz && data[data_sz - index_sz] == marker) { 411 const uint8_t marker = *data_start; local 412 const uint32_t frames = (marker & 0x7) + 1; 413 const uint32_t mag = ((marker >> 3) & 0x3) + 1; 416 if (data_sz >= index_sz && data_start[index_sz - 1] == marker) { [all...] |
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/ |
CommonTreeNodeStream.js | 241 release: function(marker) { 249 rewind: function(marker) { 250 if (!org.antlr.lang.isNumber(marker)) { 251 marker = this.lastMarker; 253 this.seek(marker);
|
/external/v8/test/cctest/ |
test-parsing.cc | 141 int marker; local 143 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024); 179 int marker; local 181 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024); 242 int marker; local 244 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024); 281 int marker; local 283 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024); 318 int marker; local 320 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024) 346 int marker; local 384 int marker; local 994 int marker; local 1209 int marker; local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
RenderSVGShape.cpp | 367 if (RenderSVGResourceMarker* marker = markerForType(m_markerPositions[i].type, markerStart, markerMid, markerEnd)) 368 boundaries.unite(marker->markerBoundaries(marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth))); 444 if (RenderSVGResourceMarker* marker = markerForType(m_markerPositions[i].type, markerStart, markerMid, markerEnd)) 445 marker->draw(paintInfo, marker->markerTransformation(m_markerPositions[i].origin, m_markerPositions[i].angle, strokeWidth));
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
streams.rb | 122 <tt>marker = stream.mark</tt> causes the stream to record important information 124 return a memento, <tt>marker</tt>. The marker object is typically an integer key 127 Used in tandem with, <tt>stream.rewind(mark = last_marker)</tt>, the marker can 131 <tt>stream.release(marker = last_marker)</tt> can be used to release an existing 132 state marker from the memory table. 200 # :method: rewind( marker = last_marker ) 202 # by the given marker 206 # :method: release( marker = last_marker ) 207 # clears the saved state information associated with the given marker valu [all...] |
/development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/ |
SyncAdapter.java | 53 private static final String SYNC_MARKER_KEY = "com.example.android.samplesync.marker"; 134 // Save off the new sync marker. On our next sync, we only want to receive 179 * @param marker The high-water-mark we want to save. 181 private void setServerSyncMarker(Account account, long marker) { 182 mAccountManager.setUserData(account, SYNC_MARKER_KEY, Long.toString(marker));
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
ANTLRStringStream.cs | 238 public virtual void Release(int marker) { 240 markDepth = marker; 241 // release this marker
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
ANTLRStringStream.cs | 272 public virtual void Release( int marker ) 275 markDepth = marker; 276 // release this marker
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
ANTLRUnbufferedCommonTreeNodeStream.h | 100 - (void) rewind:(NSUInteger) marker; 102 - (void) release:(NSUInteger) marker;
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
ANTLRStringStream.pm | 184 my ($self, $marker) = @_; 187 $self->mark_depth($marker); 188 # release this marker
|
/external/bluetooth/bluedroid/stack/avdt/ |
avdt_defs.h | 176 #define AVDT_MSG_PRS_M_PT(p, m_pt, marker) \ 177 marker = *(p) >> 7; \
|
/external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
imageinfo.js | 112 var marker = data.getShortAt(offset, true); 114 if (marker == 0xFFC0) {
|
/external/chromium_org/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/ |
imageinfo.js | 112 var marker = data.getShortAt(offset, true);
114 if (marker == 0xFFC0) {
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ |
breakpointsList.css | 89 li.breakpoint-hit .breakpoint-hit-marker {
|
/external/chromium_org/third_party/angle_dx11/src/compiler/ |
BuiltInFunctionEmulator.cpp | 390 BuiltInFunctionEmulationMarker marker(*this); 391 root->traverse(&marker);
|
/frameworks/av/include/media/ |
AudioRecord.h | 44 EVENT_MARKER = 2, // Record head is at the specified marker position 89 * - EVENT_MARKER: pointer to const uint32_t containing the marker position in frames. 140 * to consume new PCM data and inform of marker, position updates, etc. 235 /* Sets marker position. When record reaches the number of frames specified, 237 * with marker == 0 cancels marker notification callback. 238 * To set a marker at a position which would compute as 0, 239 * a workaround is to the set the marker at a nearby position such as ~0 or 1. 245 * marker: marker position expressed in wrapping (overflow) frame units [all...] |