/external/markdown/docs/extensions/ |
footnotes.txt | 58 To configure the place marker for footnote definitions (just be sure not to 61 >>> html = markdown.markdown(text, ['footnotes(PLACE_MARKER=+++my marker+++)'])
|
/frameworks/wilhelm/src/ |
attr.h | 25 // marker position, position update period 28 // marker position, position update period
|
/packages/apps/UnifiedEmail/src/com/android/mail/utils/ |
HtmlUtils.java | 133 Object marker = null; local 136 marker = new StyleSpan(Typeface.BOLD); 139 marker = new StyleSpan(Typeface.ITALIC); 142 marker = new UnderlineSpan(); 150 marker = new URLSpan(attr.getValue()); 153 marker = new QuoteSpan(); 162 if (marker != null && start != end) { 163 mBuilder.setSpan(marker, start, end, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/ |
config.c | 36 /* -- ADDMODULE MARKER 1 -- */ 56 /* -- ADDMODULE MARKER 2 -- */
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/ |
config.c | 37 /* -- ADDMODULE MARKER 1 -- */ 58 /* -- ADDMODULE MARKER 2 -- */
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
AddPrefixFix.java | 34 private AddPrefixFix(String id, IMarker marker) { 35 super(id, marker);
|
DosLineEndingsFix.java | 27 protected DosLineEndingsFix(String id, IMarker marker) { 28 super(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...] |
LintList.java | 277 for (IMarker marker : markers) { 278 markerList.add(marker); 279 int severity = marker.getAttribute(IMarker.SEVERITY, 0); 288 // No need to sort the marker list here; it will be sorted by the tree table model 350 // marker of each type, and below we have all the duplicates of 354 for (IMarker marker : list) { 355 String id = EclipseLintClient.getId(marker); 356 types.put(id, marker); 408 public int getCount(IMarker marker) { 410 Integer count = mTypeCount.get(marker); [all...] |
EclipseLintClient.java | 167 * @return the marker for one of the issues found for the given node 384 IMarker marker = null; 391 marker = BaseProjectHelper.markResource(resource, MARKER_LINT, 397 int line = startPosition.getLine() + 1; // Marker API is 1-based 404 marker = BaseProjectHelper.markResource(file, MARKER_LINT, 410 if (marker == null) { 411 marker = BaseProjectHelper.markResource(mResources.get(0), MARKER_LINT, 415 if (marker != null) { 416 // Store marker id such that we can recognize it from the suppress quickfix 418 marker.setAttribute(MARKER_CHECKID_PROPERTY, issue.getId()) [all...] |
/external/jhead/ |
jpgfile.c | 43 // Process a COM marker. 44 // We want to print out the marker contents as legible text; 73 printf("COM marker comment: %s\n",Comment); 82 // Process a SOFn marker. This is useful for the image dimensions 84 static void process_SOFn (const uchar * Data, int marker) 99 ImageInfo.Process = marker; 127 // Parse the marker stream until SOS or EOI is seen; 141 int marker = 0; local 148 marker = fgetc(infile); 149 if (marker != 0xff) break 339 int marker = 0; local [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/ |
LookaheadStream.java | 135 public void release(int marker) { 139 public void rewind(int marker) { 141 seek(marker); // assume marker is top 142 // release(marker); // waste of call; it does nothing in this class 146 seek(lastMarker); // rewind but do not release marker
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
LookaheadStream.h | 144 public void release(int marker) { 148 public void rewind(int marker) { 150 seek(marker); // assume marker is top 151 // release(marker); // waste of call; it does nothing in this class 155 seek(lastMarker); // rewind but do not release marker
|
LookaheadStream.m | 144 public void release(int marker) { 148 public void rewind(int marker) { 150 seek(marker); // assume marker is top 151 // release(marker); // waste of call; it does nothing in this class 155 seek(lastMarker); // rewind but do not release marker
|
/external/chromium_org/chrome/browser/sync/test/integration/ |
quiesce_status_change_checker.cc | 115 // This is the same progress marker check as used by the 122 // this progress marker checking method. It tries to update the progress 123 // marker status only in the OnStateChanged() callback, where the snapshot is 126 // It also checks the progress marker status when it is first initialized, and 202 // Return false if there is a progress marker mismatch. 204 VLOG(1) << "Not quiesced: Progress marker mismatch.";
|
/hardware/ti/omap3/omx/image/src/openmax_il/jpeg_enc/inc/ |
OMX_JpegEnc_CustomCmd.h | 82 OMX_BOOL bMarkerEnabled; /* Boolean flag to enable/disable this marker on its whole */ 83 OMX_U8 *pMarkerBuffer; /* This pointer must point to the marker buffer allocated by application */ 84 OMX_U32 nMarkerSize; /* This variable holds the size of the marker buffer */ 90 OMX_BOOL bMarkerEnabled; /* Boolean flag to enable/disable this marker on its whole */ 91 OMX_U8 *pMarkerBuffer; /* This pointer must point to the marker buffer allocated by application */ 92 OMX_U32 nMarkerSize; /* This variable holds the size of the marker buffer */
|
/external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/ |
cloudstorage_api.py | 185 def listbucket(path_prefix, marker=None, prefix=None, max_keys=None, 207 marker: Another path prefix. Only objects whose fullpath starts 208 lexicographically after marker will be returned (exclusive). 227 listbucket("/bucket/f", marker="/bucket/foo/1") 247 The last name yielded can be used as next call's marker. 255 if marker and marker.startswith(bucket): 256 marker = marker[len(bucket) + 1:] 261 if marker [all...] |
/packages/apps/Camera2/src/com/android/camera/util/ |
XmpUtil.java | 57 private static final int M_SOI = 0xd8; // File start marker. 58 private static final int M_APP1 = 0xe1; // Marker for Exif or XMP. 59 private static final int M_SOS = 0xda; // Image data marker. 64 public int marker; field in class:XmpUtil.Section 222 os.write(section.marker); 261 xmpSection.marker = M_APP1; 268 if (sections.get(i).marker == M_APP1 278 int position = (sections.get(0).marker == M_APP1) ? 1 : 0; 331 * and XMP sections (with marker M_APP1) and ignore others; otherwise, keep 355 int marker = c local [all...] |
/external/jpeg/ |
transupp.c | 889 jpeg_saved_marker_ptr marker; local 896 for (marker = srcinfo->marker_list; marker != NULL; marker = marker->next) { 898 marker->marker == JPEG_APP0 && 899 marker->data_length >= 5 && 900 GETJOCTET(marker->data[0]) == 0x4A && 901 GETJOCTET(marker->data[1]) == 0x46 & [all...] |
/external/qemu/distrib/jpeg-6b/ |
transupp.c | 889 jpeg_saved_marker_ptr marker; local 896 for (marker = srcinfo->marker_list; marker != NULL; marker = marker->next) { 898 marker->marker == JPEG_APP0 && 899 marker->data_length >= 5 && 900 GETJOCTET(marker->data[0]) == 0x4A && 901 GETJOCTET(marker->data[1]) == 0x46 & [all...] |
/external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/ |
j2k.c | 191 * Reads the lookup table containing all the marker, status and action, and returns the handler associated 192 * with the marker value. 193 * @param p_id Marker value to look up 257 * @param p_header_size the size of the data contained in the COM marker. 298 * Updates the Tile Length Marker. 394 * Writes the SOC marker (Start Of Codestream) 405 * Reads a SOC marker (Start of Codestream) 415 * Writes the SIZ marker (image and tile size) 426 * Reads a SIZ marker (image and tile size) 429 * @param p_header_size the size of the data contained in the SIZ marker [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/ |
AaptQuickFix.java | 68 * marker resolution (Problem view handling), since there is a lot of overlap between 90 public boolean hasResolutions(IMarker marker) { 93 message = (String) marker.getAttribute(IMarker.MESSAGE); 104 public IMarkerResolution[] getResolutions(IMarker marker) { 105 IResource markerResource = marker.getResource(); 108 String message = (String) marker.getAttribute(IMarker.MESSAGE); 118 int start = marker.getAttribute(IMarker.CHAR_START, 0); 119 int end = marker.getAttribute(IMarker.CHAR_END, 0); 179 for (IMarker marker : markers) { 180 String message = marker.getAttribute(IMarker.MESSAGE, ""); //$NON-NLS-1 [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"; 122 // Save off the new sync marker. On our next sync, we only want to receive 167 * @param marker The high-water-mark we want to save. 169 private void setServerSyncMarker(Account account, long marker) { 170 mAccountManager.setUserData(account, SYNC_MARKER_KEY, Long.toString(marker));
|
/external/chromium_org/chrome/browser/chromeos/ |
boot_times_loader.h | 41 // Add a time marker for login. A timeline will be dumped to 43 // the time between this marker and the last will be sent to UMA with 47 // Add a time marker for logout. A timeline will be dumped to 49 // the time between this marker and the last will be sent to UMA with 164 static void AddMarker(std::vector<TimeMarker>* vector, TimeMarker marker);
|
/frameworks/base/core/java/android/view/inputmethod/ |
CursorAnchorInfo.java | 60 * Flags of the insertion marker. See {@link #FLAG_HAS_VISIBLE_REGION} for example. 64 * Horizontal position of the insertion marker, in the local coordinates that will be 71 * Vertical position of the insertion marker, in the local coordinates that will be 78 * Vertical position of the insertion marker, in the local coordinates that will be 85 * Vertical position of the insertion marker, in the local coordinates that will be 107 * insertion marker or character bounds have at least one visible region. 113 * insertion marker or character bounds have at least one invisible (clipped) region. 119 * insertion marker or character bounds is placed at right-to-left (RTL) character. 292 * @param horizontalPosition horizontal position of the insertion marker, in the local 296 * @param lineTop vertical position of the insertion marker, in the local coordinates tha [all...] |