/external/chromium/chrome/common/extensions/docs/examples/extensions/ |
mappy.zip | |
/dalvik/dx/tests/115-merge/testdata/ |
Annotated.java | 6 @Annotated.Marker(a = "on class", b = {"A", "B", "C" }, 11 @Annotated.Marker(a="on field") 14 @Annotated.Marker(a="on method") 15 public void method(String a, @Annotated.Marker(a="on parameter") String b) {} 18 public @interface Marker {
|
/external/jpeg/ |
jdmarker.c | 10 * suspension: if not all of the data for a marker is available, 12 * the marker. 20 typedef enum { /* JPEG marker codes */ 93 /* Application-overridable marker processing methods */ 97 /* Limit on marker data length to save for each marker type */ 101 /* Status of COM/APPn marker saving */ 102 jpeg_saved_marker_ptr cur_marker; /* NULL if not processing a marker */ 103 unsigned int bytes_read; /* data bytes read so far in marker */ 168 * Entry condition: JPEG marker itself has been read and its code save 742 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local 1203 int marker = cinfo->unread_marker; local 1280 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local 1300 my_marker_ptr marker; local 1345 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local 1394 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local [all...] |
jcmarker.c | 16 typedef enum { /* JPEG marker codes */ 98 * Note that we do not support suspension while writing a marker. 123 /* Emit a marker code */ 140 * Routines to write specific marker types. 145 /* Emit a DQT marker */ 185 /* Emit a DHT marker */ 223 /* Emit a DAC marker */ 225 /* one DAC marker. Therefore this routine does its own scan of the table. */ 266 /* Emit a DRI marker */ 278 /* Emit a SOF marker */ 471 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local 553 my_marker_ptr marker = (my_marker_ptr) cinfo->marker; local 647 my_marker_ptr marker; local [all...] |
wrjpgcom.c | 9 * user-supplied text as a COM (comment) marker in a JFIF file. 135 write_marker (int marker) 138 PUTBYTE(marker); 152 * JPEG markers consist of one or more 0xFF bytes, followed by a marker 153 * code byte (which is not an FF). Here are the marker codes of interest 177 * Find the next JPEG marker and return its marker code. 182 * NB: this routine must not be used after seeing SOS marker, since it will 198 /* Get marker code byte, swallowing any duplicate FF bytes. Extra FFs 214 * Read the initial marker, which should be SOI 291 int marker; local 421 int marker; local [all...] |
/external/webkit/Source/WebCore/css/ |
SVGCSSPropertyNames.in | 27 marker 28 marker-end 29 marker-mid 30 marker-start
|
/development/scripts/app_engine_server/ |
index.yaml | 7 # index.yaml file manually, remove the above marker line (the line 9 # manually, move them above the marker line. The index.yaml file is
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/ |
ASN1Choice.java | 4 * Marker interface for CHOICE objects - if you implement this in a role your 13 // marker interface
|
/external/chromium/chrome/common/extensions/docs/server/ |
index.yaml | 7 # index.yaml file manually, remove the above marker line (the line
9 # manually, move them above the marker line. The index.yaml file is
|
/external/clang/test/Parser/ |
extension.c | 4 /* Top level extension marker. */ 13 /* Decl/expr __extension__ marker. */
|
/external/webkit/Tools/RebaselineQueueServer/ |
index.yaml | 7 # index.yaml file manually, remove the above marker line (the line 9 # manually, move them above the marker line. The index.yaml file is
|
/external/webkit/Source/WebCore/rendering/svg/ |
RenderSVGResourceMarker.cpp | 81 // Map repaint rect into parent coordinate space, in which the marker boundaries have to be evaluated 97 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local 98 ASSERT(marker); 100 return FloatPoint(marker->refX().value(marker), marker->refY().value(marker)); 105 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local 106 ASSERT(marker); 109 if (marker->orientType() == SVGMarkerElement::SVG_MARKER_ORIENT_ANGLE 117 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local 154 SVGMarkerElement* marker = static_cast<SVGMarkerElement*>(node()); local [all...] |
SVGMarkerLayoutInfo.cpp | 53 // Draw the marker for the previous element 54 RenderSVGResourceMarker* marker = markerData.marker(); local 55 if (elementIndex > 0 && marker) 56 info.addLayoutedMarker(marker, markerData.origin(), markerData.currentAngle()); 58 // Update our marker data for this element 61 // After drawing the start marker, switch to drawing mid markers 92 RenderSVGResourceMarker* markerContent = layout.marker; 120 layout.marker->draw(paintInfo, layout.matrix); 124 void SVGMarkerLayoutInfo::addLayoutedMarker(RenderSVGResourceMarker* marker, const FloatPoint& origin, float angle [all...] |
SVGMarkerData.h | 41 SVGMarkerData(const Type& type = Unknown, RenderSVGResourceMarker* marker = 0) 43 , m_marker(marker) 48 RenderSVGResourceMarker* marker() const { return m_marker; } function in class:WebCore::SVGMarkerData 77 void updateTypeAndMarker(const Type& type, RenderSVGResourceMarker* marker) 80 m_marker = marker; 95 // FIXME: https://bugs.webkit.org/show_bug.cgi?id=33115 (PathElementAddQuadCurveToPoint not handled for <marker>)
|
/external/sonivox/jet_tools/JetCreator/ |
JetSegGraph.py | 48 class Marker():
170 """ Adds a marker to the list """
173 self.Markers.append(Marker(sEventType, iEventId, sName, sStartMbt, sEndMbt, iStartMeasure, ppqn))
178 for Marker in self.Markers:
179 if pt[0] >= Marker.iStart and pt[0] <= Marker.iEnd and pt[1] >= Marker.iTop and pt[1] <= Marker.iTop + Marker.iHeight:
181 self.ClickCallbackFct(Marker.sName, Marker.iEventId) [all...] |
/external/webkit/Source/WebCore/dom/ |
DocumentMarkerController.cpp | 66 DocumentMarker marker = {type, textPiece->startOffset(exception), textPiece->endOffset(exception), description, false}; local 67 addMarker(textPiece->startContainer(exception), marker); 109 // Iterate over all markers whose start offset is less than or equal to the new marker's. 110 // If one of them is of the same type as the new marker and touches it or intersects with it 111 // (there is at most one), remove it and adjust the new marker's start offset to encompass it. 113 DocumentMarker marker = markers[i]; local 114 if (marker.startOffset > newMarker.startOffset) 116 if (marker.type == newMarker.type && marker.endOffset >= newMarker.startOffset) { 117 newMarker.startOffset = marker.startOffset 129 DocumentMarker marker = markers[j]; local 174 DocumentMarker marker = markers[i]; local 220 DocumentMarker marker = markers[i]; local 292 DocumentMarker& marker = markers[markerIndex]; local 367 DocumentMarker marker = markers[markerIndex]; local 428 DocumentMarker marker = markers[i]; local 478 DocumentMarker marker = markers[i]; local 551 DocumentMarker& marker = markers[i]; local 597 DocumentMarker& marker = markers[i]; local 663 DocumentMarker& marker = markers[i]; local [all...] |
/packages/apps/Email/emailcommon/src/org/apache/commons/io/ |
FileCleaner.java | 23 * marker object is reclaimed by the garbage collector.
48 * Track the specified file, using the provided marker, deleting the file
49 * when the marker instance is garbage collected.
53 * @param marker the marker object used to track the file, not null
57 public static void track(File file, Object marker) {
58 theInstance.track(file, marker);
62 * Track the specified file, using the provided marker, deleting the file
63 * when the marker instance is garbage collected.
67 * @param marker the marker object used to track the file, not null [all...] |
FileCleaningTracker.java | 27 * marker object is reclaimed by the garbage collector.
63 * Track the specified file, using the provided marker, deleting the file
64 * when the marker instance is garbage collected.
68 * @param marker the marker object used to track the file, not null
71 public void track(File file, Object marker) {
72 track(file, marker, (FileDeleteStrategy) null);
76 * Track the specified file, using the provided marker, deleting the file
77 * when the marker instance is garbage collected.
81 * @param marker the marker object used to track the file, not null 89 addTracker(file.getPath(), marker, deleteStrategy); local [all...] |
/external/clang/test/Lexer/ |
conflict-marker.c | 7 <<<<<<< .mine // expected-error {{version control conflict marker in file}} 16 <<<<<<< .mine // expected-error {{version control conflict marker in file}}
|
/packages/apps/Camera/src/com/android/camera/ |
Exif.java | 34 int marker = jpeg[offset] & 0xFF; local 36 // Check if the marker is a padding. 37 if (marker == 0xFF) { 42 // Check if the marker is SOI or TEM. 43 if (marker == 0xD8 || marker == 0x01) { 46 // Check if the marker is EOI or SOS. 47 if (marker == 0xD9 || marker == 0xDA) { 58 // Break if the marker is EXIF in APP1 [all...] |
/external/markdown/tests/extensions-x-toc/ |
invalid.txt | 6 The TOC marker cannot be inside a header. This test makes sure markdown doesn't
|
/external/antlr/src/org/antlr/runtime/ |
IntStream.java | 44 * current input position, index(), or some other marker so that 58 /** Reset the stream so that next call to index would return marker. 59 * The marker will usually be index() but it doesn't have to be. It's 60 * just a marker to indicate what state the stream was in. This is 62 * created after this marker argument, this routine must unroll them 63 * like a stack. Assume the state the stream was in when this marker 66 void rewind(int marker); 68 /** Rewind to the input position of the last marker. 72 * Do not "pop" the marker off the state. mark(i) 74 * like invoking rewind(last marker) but it should not "pop [all...] |
/external/chromium/net/tools/testserver/ |
chromiumsync_test.py | 372 marker = msg.from_progress_marker.add() 373 marker.data_type_id = autofill.number 374 marker.token = '15412' 375 marker = msg.from_progress_marker.add() 376 marker.data_type_id = theme.number 377 marker.token = '15413' 388 marker = response.new_progress_marker[0] 389 self.assertEqual(marker.data_type_id, autofill.number) 390 self.assertEqual(marker.token, '15413') 391 self.assertFalse(marker.HasField('timestamp_token_for_migration') [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/ |
index.yaml | 12 # index.yaml file manually, remove the above marker line (the line 14 # manually, move them above the marker line. The index.yaml file is
|
/external/clang/test/Preprocessor/ |
line-directive.c | 20 # 42 "foo" 2 // expected-error {{invalid line marker flag '2': cannot pop empty include stack}} 23 # 42 "foo" 2 3 4 // expected-error {{invalid line marker flag '2': cannot pop empty include stack}} 27 # 42 'f' // expected-error {{invalid filename for line marker directive}} 28 # 42 1 3 // expected-error {{invalid filename for line marker directive}} 29 # 42 "foo" 3 1 // expected-error {{invalid flag line marker directive}} 30 # 42 "foo" 42 // expected-error {{invalid flag line marker directive}} 31 # 42 "foo" 1 2 // expected-error {{invalid flag line marker directive}} 89 _LINE__ == 42 ? 1: -1]; /* line marker is location of first _ */
|