HomeSort by relevance Sort by last modified time
    Searched full:markup (Results 1 - 25 of 353) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/manual-tests/inspector/
highlight-source-line.html 2 <p>To test, open the Inspector and reload this page. Then open the Inspector's Console and click the link for the markup error. You should see the line containing the error briefly highlighted in the source view.</p>
4 <p>This line contains a markup error</i>.</p>
  /external/webkit/WebCore/platform/chromium/
ClipboardUtilitiesChromium.cpp 57 String markup("<a href=\"");
58 markup.append(url.string());
59 markup.append("\">");
62 markup.append(title);
63 markup.append("</a>");
64 return markup;
PasteboardChromium.cpp 43 #include "markup.h"
167 String markup; local
169 ChromiumBridge::clipboardReadHTML(buffer, &markup, &srcURL);
172 createFragmentFromMarkup(frame->document(), markup, srcURL, FragmentScriptingNotAllowed);
178 String markup = ChromiumBridge::clipboardReadPlainText(buffer); local
179 if (!markup.isEmpty()) {
183 createFragmentFromText(context.get(), markup);
ClipboardChromium.cpp 41 #include "markup.h"
251 StringBuilder markup; local
252 markup.append("<img src=\"");
253 markup.append(url);
254 markup.append("\"");
263 markup.append(" ");
264 markup.append(attr->localName());
265 markup.append("=\"");
268 markup.append(escapedAttr);
269 markup.append("\"")
    [all...]
  /external/bluetooth/glib/tests/
.gitignore 29 markup-collect
30 markup-escape-test
31 markup-test
run-markup-tests.sh 23 ./markup-test $I > /dev/null 2> $error_out && fail "failed to generate error on $I"
34 ./markup-test $F > actual 2> $error_out || fail "failed on $F"
Makefile.am 116 markup-collect \
117 markup-escape-test \
146 test_scripts = run-markup-tests.sh run-collate-tests.sh run-bookmark-test.sh
148 test_script_support_programs = markup-test unicode-collate bookmarkfile-test
  /external/webkit/WebCore/platform/gtk/
PasteboardGtk.cpp 32 #include "markup.h"
40 PasteboardSelectionData(gchar* text, gchar* markup)
42 , m_markup(markup) { }
50 const gchar* markup() const { return m_markup; } function in class:WebCore::PasteboardSelectionData
63 reinterpret_cast<const guchar*>(clipboardData->markup()),
64 g_utf8_strlen(clipboardData->markup(), -1));
101 gchar* markup = g_strdup(createMarkup(selectedRange, 0, AnnotateForInterchange).utf8().data()); local
102 PasteboardSelectionData* data = new PasteboardSelectionData(text, markup);
DataObjectGtk.cpp 22 #include "markup.h"
34 String DataObjectGtk::markup() function in class:WebCore::DataObjectGtk
  /frameworks/base/core/java/android/text/
SpannedString.java 21 * This is the class for text whose content and markup are immutable.
22 * For mutable markup, see {@link SpannableString}; for mutable text,
Spanned.java 20 * This is the interface for text that has markup objects attached to
21 * ranges of it. Not all text classes have mutable markup or text;
22 * see {@link Spannable} for mutable markup and {@link Editable} for
147 * Return an array of the markup objects attached to the specified
156 * markup object is attached, or -1 if the object is not attached.
162 * markup object is attached, or -1 if the object is not attached.
168 * used to attach the specified markup object, or 0 if the specified
175 * where a markup object of class <code>type</code> begins or ends,
Spannable.java 20 * This is the interface for text to which markup objects can be
28 * Attach the specified markup object to the range <code>start&hellip;end</code>
SpanWatcher.java 21 * will be called to notify it that other markup objects have been
SpannableString.java 22 * markup objects can be attached and detached.
  /external/chromium/third_party/icu/source/i18n/
inputext.cpp 29 : fInputBytes(NEW_ARRAY(uint8_t, BUFFER_SIZE)), // The text to be checked. Markup will have been
78 * it by removing what appears to be html markup.
91 // html / xml markup stripping.
124 // essentially nothing but markup abandon the markup stripping.
inputext.h 39 // The text to be checked. Markup will have been
  /external/icu4c/i18n/
inputext.cpp 29 : fInputBytes(NEW_ARRAY(uint8_t, BUFFER_SIZE)), // The text to be checked. Markup will have been
78 * it by removing what appears to be html markup.
91 // html / xml markup stripping.
124 // essentially nothing but markup abandon the markup stripping.
inputext.h 39 // The text to be checked. Markup will have been
  /external/webkit/WebKit/qt/Api/
qwebelement.h 61 void setOuterXml(const QString& markup);
64 void setInnerXml(const QString& markup);
104 void appendInside(const QString& markup);
108 void prependInside(const QString& markup);
112 void appendOutside(const QString& markup);
116 void prependOutside(const QString& markup);
121 void encloseContentsWith(const QString& markup);
122 void encloseWith(const QString& markup);
125 void replace(const QString& markup);
  /external/webkit/WebKit/gtk/WebCoreSupport/
PasteboardHelperGtk.cpp 88 GOwnPtr<gchar> markup(g_strdup(dataObject->markup().utf8().data()));
90 reinterpret_cast<const guchar*>(markup.get()),
91 strlen(markup.get()));
  /libcore/luni/src/main/java/javax/xml/transform/
SourceLocator.java 32 * entity or of the external parsed entity in which the markup that
45 * entity or of the external parsed entity in which the markup that
67 * markup that triggered the event appears.</p>
84 * markup that triggered the event appears.</p>
  /external/webkit/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 34 #include "markup.h"
158 void markupToCF_HTML(const String& markup, const String& srcURL, Vector<char>& result)
160 if (markup.isEmpty())
179 CString markupUTF8 = markup.utf8();
207 Vector<UChar> markup; local
208 append(markup, "<a href=\"");
209 append(markup, url.string());
210 append(markup, "\">");
211 append(markup, title);
212 append(markup, "</a>")
416 String markup = cf_html.substring(fragmentStart, fragmentEnd - fragmentStart).stripWhiteSpace(); local
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
BeautifulSoup.py 105 # First, the classes that represent markup elements.
842 """Encapsulates a number of ways of matching a markup element (tag or
867 markup = None
869 markup = markupName
870 markupAttrs = markup
    [all...]
  /external/webkit/WebCore/manual-tests/gtk/
paste-richtext-from-firefox.html 10 [Gtk] Paste of rich text from firefox results garbled markup
  /external/webkit/WebCore/xml/
XMLSerializer.cpp 25 #include "markup.h"

Completed in 296 milliseconds

1 2 3 4 5 6 7 8 91011>>