Searched refs:marker (Results 226 - 250 of 417) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3tokenstream.c75 static void rewindStream (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker);
76 static void dbgRewindStream (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker);
910 rewindStream (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker) argument
912 is->seek(is, (ANTLR3_UINT32)(marker));
915 dbgRewindStream (pANTLR3_INT_STREAM is, ANTLR3_MARKER marker) argument
921 ts->debugger->rewind(ts->debugger, marker);
923 is->seek(is, (ANTLR3_UINT32)(marker));
/external/eigen/Eigen/src/SparseLU/
H A DSparseLU.h512 IndexVector marker(m*internal::LUNoMarker); marker.setZero();
529 Base::heap_relax_snode(n, m_etree, m_perfv.relax, marker, relax_end);
531 Base::relax_snode(n, m_etree, m_perfv.relax, marker, relax_end);
536 marker.setConstant(-1);
568 Base::panel_dfs(m, panel_size, jcol, m_mat, m_perm_r.indices(), nseg1, dense, panel_lsub, segrep, repfnz, xprune, marker, parent, xplore, m_glu);
582 info = Base::column_dfs(m, jj, m_perm_r.indices(), m_perfv.maxsuper, nseg, panel_lsubk, segrep, repfnz_k, xprune, marker, parent, xplore, m_glu);
/external/chromium_org/chrome/browser/chromeos/
H A Dboot_times_loader.cc455 TimeMarker marker)
457 // The marker vectors can only be safely manipulated on the main thread.
462 vector->push_back(marker);
464 // Add the marker on the UI thread.
471 marker));
454 AddMarker(std::vector<TimeMarker>* vector, TimeMarker marker) argument
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DHitTestResult.cpp218 DocumentMarker* marker = m_innerNonSharedNode->document().markers().markerContainingPoint(m_hitTestLocation.point(), DocumentMarker::Grammar);
219 if (!marker)
224 return marker->description();
H A DRenderListItem.cpp63 // The marker always inherits from the list item, regardless of where it might end
227 static RenderObject* getParentOfFirstLineBox(RenderBlockFlow* curr, RenderObject* marker) argument
235 if (currChild == marker)
251 RenderObject* lineBox = getParentOfFirstLineBox(toRenderBlockFlow(currChild), marker);
284 // If the marker is inside we need to redo the preferred width calculations
285 // as the size of the item now includes the size of the list marker.
297 // If the marker is currently contained inside an anonymous box, then we
299 // found). It's ok to just leave the marker where it is in this case.
324 // The marker must be autosized before calling
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dcommon.py469 marker = idfun(item)
470 if marker in seen: continue
471 seen[marker] = 1
/external/chromium_org/v8/src/arm64/
H A Dinstrument-arm64.cc188 void Instrument::DumpEventMarker(unsigned marker) { argument
189 // Dumpan event marker to the output stream as a specially formatted comment
193 fprintf(output_stream_, "# %c%c @ %" PRId64 "\n", marker & 0xff,
194 (marker >> 8) & 0xff, counter->count());
/external/vixl/src/a64/
H A Dinstrument-a64.cc209 void Instrument::DumpEventMarker(unsigned marker) { argument
210 // Dumpan event marker to the output stream as a specially formatted comment
214 fprintf(output_stream_, "# %c%c @ %" PRId64 "\n", marker & 0xff,
215 (marker >> 8) & 0xff, counter->count());
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Ddebug.rb363 def rewind( marker = nil, release = true )
364 @debug_listener.rewind( marker )
457 # the token stream's marker is sent in case you need it.
459 def mark( marker )
465 # rewound to the position associated with marker.
467 def rewind( marker = nil )
/external/chromium_org/third_party/libjpeg_turbo/
H A Djcmaster.c495 (*cinfo->marker->write_frame_header) (cinfo);
496 (*cinfo->marker->write_scan_header) (cinfo);
528 (*cinfo->marker->write_frame_header) (cinfo);
529 (*cinfo->marker->write_scan_header) (cinfo);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_ssa.cpp240 if (!n && !bb->liveSet.marker)
242 bb->liveSet.marker = true;
267 bb->defSet.allocate(allLValues.getSize(), !bb->liveSet.marker);
268 bb->liveSet.marker = true;
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/
H A Dglcpp.h160 token_node_t *marker; member in struct:active_list
/external/jpeg/
H A Djcmaster.c460 (*cinfo->marker->write_frame_header) (cinfo);
461 (*cinfo->marker->write_scan_header) (cinfo);
493 (*cinfo->marker->write_frame_header) (cinfo);
494 (*cinfo->marker->write_scan_header) (cinfo);
H A Djdhuff.c305 /* We fail to do so only if we hit a marker or are forced to suspend. */
307 if (cinfo->unread_marker == 0) { /* cannot advance past a marker */
323 /* Loop here to discard any padding FF's on terminating marker,
343 /* Oops, it's actually a marker indicating end of compressed data.
344 * Save the marker code for later use.
345 * Fine point: it might appear that we should save the marker into
347 * once we have hit a marker, we cannot need to suspend within the
363 /* We get here if we've read the marker that terminates the compressed
464 * Check for a restart marker & resynchronize decoder.
476 cinfo->marker
[all...]
H A Djdphuff.c222 * Check for a restart marker & resynchronize decoder.
234 cinfo->marker->discarded_bytes += entropy->bitstate.bits_left / 8;
237 /* Advance past the RSTn marker */
238 if (! (*cinfo->marker->read_restart_marker) (cinfo))
251 * against a marker. In that case we will end up treating the next data
297 /* Process restart marker if needed; may have to suspend */
367 /* Process restart marker if needed; may have to suspend */
449 /* Process restart marker if needed; may have to suspend */
505 /* Process restart marker if needed; may have to suspend */
653 offset->next_restart_num = cinfo->marker
[all...]
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_ssa.cpp240 if (!n && !bb->liveSet.marker)
242 bb->liveSet.marker = true;
267 bb->defSet.allocate(allLValues.getSize(), !bb->liveSet.marker);
268 bb->liveSet.marker = true;
/external/mesa3d/src/glsl/glcpp/
H A Dglcpp.h160 token_node_t *marker; member in struct:active_list
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
H A Dopenjpeg.h162 #define JPWL_MAXIMUM_HAMMING 2 /**< Expect this maximum number of bit errors in marker id's */
641 /** packet start position (including SOP marker if it exists) */
643 /** end of packet header position (including EPH marker if it exists)*/
657 /** marker type */
661 /** length, marker val included */
713 opj_marker_info_t *marker; member in struct:opj_tile_info
760 opj_marker_info_t *marker; member in struct:opj_codestream_info
897 opj_marker_info_t *marker; member in struct:opj_tile_index
925 opj_marker_info_t *marker; member in struct:opj_codestream_index
1352 <li>No SOP marker i
[all...]
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jcmaster.c461 (*cinfo->marker->write_frame_header) (cinfo);
462 (*cinfo->marker->write_scan_header) (cinfo);
494 (*cinfo->marker->write_frame_header) (cinfo);
495 (*cinfo->marker->write_scan_header) (cinfo);
/external/qemu/distrib/jpeg-6b/
H A Djcmaster.c460 (*cinfo->marker->write_frame_header) (cinfo);
461 (*cinfo->marker->write_scan_header) (cinfo);
493 (*cinfo->marker->write_frame_header) (cinfo);
494 (*cinfo->marker->write_scan_header) (cinfo);
H A Djdhuff.c305 /* We fail to do so only if we hit a marker or are forced to suspend. */
307 if (cinfo->unread_marker == 0) { /* cannot advance past a marker */
323 /* Loop here to discard any padding FF's on terminating marker,
343 /* Oops, it's actually a marker indicating end of compressed data.
344 * Save the marker code for later use.
345 * Fine point: it might appear that we should save the marker into
347 * once we have hit a marker, we cannot need to suspend within the
363 /* We get here if we've read the marker that terminates the compressed
464 * Check for a restart marker & resynchronize decoder.
476 cinfo->marker
[all...]
H A Djdphuff.c226 * Check for a restart marker & resynchronize decoder.
238 cinfo->marker->discarded_bytes += entropy->bitstate.bits_left / 8;
241 /* Advance past the RSTn marker */
242 if (! (*cinfo->marker->read_restart_marker) (cinfo))
255 * against a marker. In that case we will end up treating the next data
301 /* Process restart marker if needed; may have to suspend */
371 /* Process restart marker if needed; may have to suspend */
453 /* Process restart marker if needed; may have to suspend */
509 /* Process restart marker if needed; may have to suspend */
674 offset->next_restart_num = cinfo->marker
[all...]
/external/bluetooth/bluedroid/stack/include/
H A Davdt_api.h70 /* The marker bit is used by the application to mark significant events such
72 ** set the marker bit in the m_pt parameter of an AVDT_WriteReq()
376 UINT32 time_stamp, UINT16 seq_num, UINT8 m_pt, UINT8 marker);
912 UINT32 time_stamp, UINT8 m_pt, UINT8 marker);
/external/chromium_org/sync/tools/testserver/
H A Dchromiumsync.py407 for marker in request.from_progress_marker:
408 data_type = ProtocolDataTypeIdToSyncType(marker.data_type_id)
409 if marker.HasField('timestamp_token_for_migration'):
410 timestamp = marker.timestamp_token_for_migration
413 elif marker.token:
414 (timestamp, version) = pickle.loads(marker.token)
416 elif marker.HasField('token'):
419 raise ValueError('No timestamp information in progress marker.')
420 data_type = ProtocolDataTypeIdToSyncType(marker.data_type_id)
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/profiler/
H A DCPUProfileDataGrid.js129 var marker = content.createChild("span", "profile-warn-marker");
130 marker.title = WebInspector.UIString("Not optimized: %s", this._deoptReason);

Completed in 770 milliseconds

1234567891011>>