HomeSort by relevance Sort by last modified time
    Searched refs:marker (Results 51 - 75 of 170) sorted by null

1 23 4 5 6 7

  /external/v8/src/
frames-inl.h 138 Object* marker = local
140 return marker == Smi::FromInt(StackFrame::ARGUMENTS_ADAPTOR);
145 Object* marker = local
147 return marker == Smi::FromInt(CONSTRUCT);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestEditor.java 234 * Reads and processes the current markers and adds a listener for marker changes.
274 for (IMarker marker : markers) {
275 processMarker(marker, children, IResourceDelta.ADDED);
303 * Processes a new/old/updated marker.
304 * @param marker The marker being added/removed/changed
309 private void processMarker(IMarker marker, List<UiElementNode> nodeList, int kind) {
310 // get the data from the marker
311 String nodeType = marker.getAttribute(AdtConstants.MARKER_ATTR_TYPE, EMPTY);
316 String className = marker.getAttribute(AdtConstants.MARKER_ATTR_CLASS, EMPTY)
    [all...]
  /external/webkit/Source/WebCore/rendering/
InlineTextBox.cpp 1106 const DocumentMarker& marker = *markerIt; local
    [all...]
RenderListItem.cpp 57 // The marker always inherits from the list item, regardless of where it might end
147 static RenderObject* getParentOfFirstLineBox(RenderBlock* curr, RenderObject* marker)
155 if (currChild == marker)
171 RenderObject* lineBox = getParentOfFirstLineBox(toRenderBlock(currChild), marker);
198 // Sanity check the location of our marker.
203 // If the marker is currently contained inside an anonymous box,
205 // parent was found). It's ok to just leave the marker where it is
214 // Removing and adding the marker can trigger repainting in
369 // Append the suffix for the marker in the right place depending
400 if (RenderListMarker* marker = item->m_marker
    [all...]
RenderListMarker.cpp 331 const int groupLength = 8; // 4 digits, 3 digit markers, and a group marker
366 // Remove the tens digit, but leave the marker, for any group that has
1123 IntRect marker = getRelativeMarkerRect(); local
    [all...]
HitTestResult.cpp 203 DocumentMarker* marker = m_innerNonSharedNode->document()->markers()->markerContainingPoint(m_point, DocumentMarker::Grammar);
204 if (!marker)
209 return marker->description;
214 // Return the replaced string associated with this point, if any. This marker is created when a string is autocorrected,
219 DocumentMarker* marker = m_innerNonSharedNode->document()->markers()->markerContainingPoint(m_point, DocumentMarker::Replacement);
220 if (!marker)
223 return marker->description;
  /external/collada/src/dae/
daeMetaElement.cpp 318 daeBool daeMetaElement::placeBefore( daeElement *marker, daeElement *parent, daeElement *child, daeUInt *ordinal )
324 daeElement *retVal = _contentModel->placeElement( parent, child, ord, 0, marker, NULL );
334 if ( contents->find( marker, index ) == DAE_OK ) {
365 daeBool daeMetaElement::placeAfter( daeElement *marker, daeElement *parent, daeElement *child, daeUInt *ordinal )
371 daeElement *retVal = _contentModel->placeElement( parent, child, ord, 0, NULL, marker );
381 if ( contents->find( marker, index ) == DAE_OK ) {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/syncadapter/
SyncAdapter.java 52 private static final String SYNC_MARKER_KEY = "com.example.android.samplesync.marker";
120 // Save off the new sync marker. On our next sync, we only want to receive
165 * @param marker The high-water-mark we want to save.
167 private void setServerSyncMarker(Account account, long marker) {
168 mAccountManager.setUserData(account, SYNC_MARKER_KEY, Long.toString(marker));
  /external/chromium/chrome/common/extensions/docs/examples/extensions/imageinfo/imageinfo/
imageinfo.js 112 var marker = data.getShortAt(offset, true);
114 if (marker == 0xFFC0) {
  /external/collada/include/dae/
daeMetaElement.h 294 * before the marker element.
295 * @param marker The element location in the contents array to insert before.
300 DLLSPEC daeBool placeBefore( daeElement* marker, daeElement *parent, daeElement *child, daeUInt *ordinal = NULL );
303 * after the marker element.
304 * @param marker The element location in the contents array to insert after.
309 DLLSPEC daeBool placeAfter( daeElement* marker, daeElement *parent, daeElement *child, daeUInt *ordinal = NULL );
  /frameworks/base/include/media/
AudioRecord.h 52 EVENT_MARKER = 2, // Record head is at the specified marker position
98 * - EVENT_MARKER: pointer to an uin32_t containing the marker position in frames.
229 /* Sets marker position. When record reaches the number of frames specified,
231 * with marker == 0 cancels marker notification callback.
237 * marker: marker position expressed in frames.
243 status_t setMarkerPosition(uint32_t marker);
244 status_t getMarkerPosition(uint32_t *marker);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
RunLintAction.java 117 for (IMarker marker : markers) {
118 int severity = marker.getAttribute(IMarker.SEVERITY, -1);
LintEclipseContext.java 276 IMarker marker = null; local
278 marker = BaseProjectHelper.markResource(mResource, MARKER_LINT,
283 marker = BaseProjectHelper.markResource(mResource, MARKER_LINT,
287 int line = startPosition.getLine() + 1; // Marker API is 1-based
295 marker = BaseProjectHelper.markResource(file, MARKER_LINT,
301 if (marker != null) {
302 // Store marker id such that we can recognize it from the suppress quickfix
304 marker.setAttribute(MARKER_CHECKID_PROPERTY, issue.getId());
346 * Returns the lint marker for the given resource (which may be a project, folder or file)
  /external/antlr/src/org/antlr/runtime/
BufferedTokenStream.java 89 public void release(int marker) {
93 public void rewind(int marker) {
94 seek(marker);
LegacyCommonTokenStream.java 322 public void release(int marker) {
338 public void rewind(int marker) {
339 seek(marker);
  /external/tremolo/Tremolo/
codebook.c 148 ogg_uint32_t marker[33]; local
156 memset(marker,0,sizeof(marker));
161 ogg_uint32_t entry=marker[length];
190 /* Look to see if the next shorter marker points to the node
193 if(marker[j]&1){
194 marker[j]=marker[j-1]<<1;
197 marker[j]++;
204 if((marker[j]>>1) == entry)
    [all...]
  /external/v8/test/cctest/
test-parsing.cc 158 int marker; local
160 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024);
189 int marker; local
191 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024);
252 int marker; local
254 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024);
290 int marker; local
292 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024);
317 int marker; local
319 reinterpret_cast<uintptr_t>(&marker) - 128 * 1024)
355 int marker; local
    [all...]
  /sdk/emulator/qtools/
check_stack.cpp 259 const char *marker = " "; local
262 marker = "*";
267 marker, ii, eFrames[ii].time, eFrames[ii].flags, addr,
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
NestedMapData.java 523 String marker = "EOM"; local
524 while (getValue().contains(marker)) {
525 marker += System.nanoTime() % 10;
527 out.append(" << ").append(marker).append('\n').append(getValue());
531 out.append(marker).append('\n');
  /external/chromium/net/tools/testserver/
chromiumsync.py 185 for marker in request.from_progress_marker:
186 if marker.HasField("timestamp_token_for_migration"):
187 timestamp = marker.timestamp_token_for_migration
188 elif marker.token:
189 timestamp = int(marker.token)
190 elif marker.HasField("token"):
193 raise ValueError("No timestamp information in progress marker.")
194 data_type = ProtocolDataTypeIdToSyncType(marker.data_type_id)
    [all...]
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionController.cpp 223 // Take note of the location of autocorrection so that we can add marker after the replacement took place.
391 const DocumentMarker& marker = markers[i]; local
392 if (!shouldStartTimeFor(marker, endOffset))
394 RefPtr<Range> wordRange = Range::create(m_frame->document(), node, marker.startOffset, node, marker.endOffset);
401 if (marker.type == DocumentMarker::Spelling)
404 m_correctionPanelInfo.replacementString = marker.description;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 435 * the file with an AAPT marker.
441 * @param markerId The marker id to put.
442 * @param severity The severity of the marker to put (IMarker.SEVERITY_*)
470 // add the marker
492 // check if there's a similar marker already, since aapt is launched twice
497 for (IMarker marker : markers) {
499 int tmpBegin = marker.getAttribute(IMarker.CHAR_START, -1);
503 int tmpEnd = marker.getAttribute(IMarker.CHAR_END, -1);
509 int tmpLine = marker.getAttribute(IMarker.LINE_NUMBER, -1);
514 int tmpSeverity = marker.getAttribute(IMarker.SEVERITY, -1)
    [all...]
  /external/antlr/src/org/antlr/runtime/tree/
BufferedTreeNodeStream.java 317 public void release(int marker) {
325 public void rewind(int marker) {
326 seek(marker);
  /external/jpeg/
jdinput.c 10 * processing (marker reading and coefficient decoding). The actual input
42 /* Called once, when first SOS marker is reached */
125 /* cinfo->comps_in_scan and cinfo->cur_comp_info[] were set from SOS marker */
324 val = (*cinfo->marker->read_markers) (cinfo);
335 } else { /* 2nd or later SOS marker */
344 if (cinfo->marker->saw_SOF)
379 (*cinfo->marker->reset_marker_reader) (cinfo);
  /external/webkit/Source/WebCore/accessibility/gtk/
WebKitAccessibleHyperlink.cpp 204 // If so, we need to consider the length of the item's marker
221 RenderListMarker* marker = toRenderListMarker(renderer);
222 return baseLength + marker->text().length() + marker->suffix().length();

Completed in 1671 milliseconds

1 23 4 5 6 7