HomeSort by relevance Sort by last modified time
    Searched full:marker (Results 101 - 125 of 1260) sorted by null

1 2 3 45 6 7 8 91011>>

  /sdk/common/src/com/android/annotations/
Nullable.java 31 * This is a marker annotation and it has no specific attributes.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
ErrorImageComposite.java 13 * ImageDescriptor that adds a error marker.
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
XmlErrorHandler.java 158 IMarker marker = BaseProjectHelper.markResource(getFile(), local
162 if (marker != null) {
164 marker.setAttribute(AdtConstants.MARKER_ATTR_TYPE,
166 marker.setAttribute(AdtConstants.MARKER_ATTR_CLASS, className);
  /external/webkit/Tools/iExploder/iexploder-1.7.2/src/css-properties/
mozilla 187 marker
188 marker-end
189 marker-mid
190 marker-offset
191 marker-start
  /frameworks/base/include/media/
AudioTrack.h 56 EVENT_MARKER = 3, // Playback head is at the specified marker position (See setMarkerPosition()).
97 * - EVENT_MARKER: pointer to an uin32_t containing the marker position in frames.
287 /* Sets marker position. When playback reaches the number of frames specified, a callback with event
288 * type EVENT_MARKER is called. Calling setMarkerPosition with marker == 0 cancels marker notification
294 * marker: marker position expressed in frames.
300 status_t setMarkerPosition(uint32_t marker);
301 status_t getMarkerPosition(uint32_t *marker);
  /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 ) {
  /external/jpeg/
jpegint.h 119 /* Marker writing */
128 JMETHOD(void, write_marker_header, (j_compress_ptr cinfo, int marker,
208 /* Marker reading & parsing */
218 /* Read a restart marker --- exported for use by entropy decoder only */
221 /* State of marker reader --- nominally internal, but applications
228 unsigned int discarded_bytes; /* # of bytes skipped looking for a marker */
jdhuff.c 305 /* 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->discarded_bytes += entropy->bitstate.bits_left / 8
    [all...]
jcinit.c 71 (*cinfo->marker->write_file_header) (cinfo);
  /packages/apps/Mms/src/com/android/mms/dom/smil/
TimeImpl.java 50 * | media-marker-value
58 * Media-marker-value ::= id-ref ".marker(" marker-name ")"
77 * - Media-marker-value
286 public void setMarker(String marker) throws DOMException {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 414 * the file with an AAPT marker.
420 * @param markerId The marker id to put.
421 * @param severity The severity of the marker to put (IMarker.SEVERITY_*)
449 // add the marker
471 // check if there's a similar marker already, since aapt is launched twice
476 for (IMarker marker : markers) {
478 int tmpBegin = marker.getAttribute(IMarker.CHAR_START, -1);
482 int tmpEnd = marker.getAttribute(IMarker.CHAR_END, -1);
488 int tmpLine = marker.getAttribute(IMarker.LINE_NUMBER, -1);
493 int tmpSeverity = marker.getAttribute(IMarker.SEVERITY, -1)
    [all...]
  /external/astl/tests/
test_set.cpp 104 set<string>::iterator marker = res.first; local
123 EXPECT_TRUE(res.first == 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/kernel-headers/original/linux/mtd/
bbm.h 39 * Descriptor for the bad block table marker and the descriptor for the
98 * @badblockpos: [INTERN] position of the bad block marker in the oob area
  /external/proguard/src/proguard/shrink/
UsagePrinter.java 53 * @param usageMarker the usage marker that was used to mark the
68 * @param usageMarker the usage marker that was used to mark the
  /external/webkit/Source/WebCore/html/parser/
HTMLFormattingElementList.cpp 110 // http://www.whatwg.org/specs/web-apps/current-work/multipage/parsing.html#clear-the-list-of-active-formatting-elements-up-to-the-last-marker
126 fprintf(stderr, "marker\n");
  /external/webkit/Source/WebCore/rendering/svg/
SVGResources.h 108 // -> a, circle, defs, ellipse, glyph, g, image, line, marker, mask, missing-glyph, path, pattern, polygon, polyline, rect, svg, switch, symbol, text, use
132 // marker: line, path, polygon, polyline
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 179 * Adds a marker to the current project. This methods catches thrown {@link CoreException},
182 * @param markerId The id of the marker to add.
184 * @param severity the severity of the marker.
185 * @return the marker that was created (or null if failure)
195 * @param markerId The id of the markers to remove. If null, all marker of
212 * @param markerId The id of the markers to remove. If null, all marker of
328 for (IMarker marker : markers) {
329 int severity = marker.getAttribute(IMarker.SEVERITY, -1 /*defaultValue*/);
  /sdk/sdkmanager/libs/sdklib/tests/src/com/android/sdklib/util/
LineUtilTest.java 50 "If the line needs to wrap but there's no colon marker, the line will just wrap\n" +
52 LineUtil.reflowLine("If the line needs to wrap but there's no colon marker, the line will just wrap with 4 spaces."));
  /external/oauth/core/src/main/java/net/oauth/http/
HttpResponseMessage.java 56 /** The standard end-of-line marker in an HTTP message. */
  /external/oprofile/libop/tests/
parse_event_tests.c 18 /* second pointer is the null terminating array marker */
  /external/proguard/examples/annotations/
examples.pro 49 # is only a marker interface, so it wouldn't save them.
  /external/proguard/examples/
applets.pro 41 # is only a marker interface, so it wouldn't save them.
applications.pro 47 # is only a marker interface, so it wouldn't save them.
servlets.pro 42 # is only a marker interface, so it wouldn't save them.

Completed in 746 milliseconds

1 2 3 45 6 7 8 91011>>