HomeSort by relevance Sort by last modified time
    Searched refs:markup (Results 26 - 50 of 65) sorted by null

12 3

  /external/webkit/Source/WebKit/gtk/tests/
testcopyandpaste.c 95 // Verify that the markup starts with the proper content-type meta tag prefix.
99 char* markup = g_strndup((const char*) gtk_selection_data_get_data(selectionData), local
101 g_assert(strlen(markupPrefix) <= strlen(markup));
102 g_assert(!strncmp(markupPrefix, markup, strlen(markupPrefix)));
103 g_free(markup);
259 g_test_add("/webkit/copyandpaste/paste-markup", CopyAndPasteFixture,
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_install_dialog_gtk.cc 32 char* markup = g_markup_printf_escaped(format, str.c_str()); local
33 gtk_label_set_markup(GTK_LABEL(label), markup); local
34 g_free(markup);
extension_installed_bubble_gtk.cc 221 char* markup = g_markup_printf_escaped("<span size=\"larger\">%s</span>", local
223 gtk_label_set_markup(GTK_LABEL(heading_label), markup); local
224 g_free(markup);
  /external/chromium/chrome/browser/ui/gtk/
about_chrome_dialog.cc 60 char* markup = g_markup_printf_escaped(format, str.c_str()); local
61 gtk_label_set_markup(GTK_LABEL(label), markup); local
62 g_free(markup);
first_run_dialog.cc 354 char* markup = g_markup_printf_escaped( local
357 gtk_label_set_markup(GTK_LABEL(logo_label), markup); local
358 g_free(markup);
gtk_chrome_link_button.cc 216 GtkWidget* gtk_chrome_link_button_new_with_markup(const char* markup) {
218 GTK_CHROME_LINK_BUTTON(lb)->text = g_strdup(markup);
gtk_util.cc 259 char* markup = g_markup_printf_escaped(kBoldLabelMarkup, text.c_str()); local
260 gtk_label_set_markup(GTK_LABEL(label), markup); local
261 g_free(markup);
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_textwithnomarkup.js 78 If there is not any markup inside an Element or Attr node
85 multiple text lines without markup, so they should be
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_textwithnomarkup.js 78 If there is not any markup inside an Element or Attr node
85 multiple text lines without markup, so they should be
  /external/webkit/Source/WebCore/html/
HTMLElement.cpp 48 #include "markup.h"
277 PassRefPtr<DocumentFragment> HTMLElement::deprecatedCreateContextualFragment(const String& markup, FragmentScriptingPermission scriptingPermission)
287 return Element::deprecatedCreateContextualFragment(markup, scriptingPermission);
341 static PassRefPtr<DocumentFragment> createFragmentFromSource(const String& markup, Element* contextElement, ExceptionCode& ec)
348 fragment->parseHTML(markup, contextElement);
352 bool wasValid = fragment->parseXML(markup, contextElement);
586 void HTMLElement::insertAdjacentHTML(const String& where, const String& markup, ExceptionCode& ec)
594 fragment->parseHTML(markup, contextElement);
596 if (!fragment->parseXML(markup, contextElement))
    [all...]
  /external/chromium/chrome/browser/ui/gtk/notifications/
balloon_view_gtk.cc 262 char* markup = g_markup_printf_escaped(kLabelMarkup, local
265 gtk_label_set_markup(GTK_LABEL(source_label_), markup); local
266 g_free(markup);
  /external/chromium/webkit/glue/
webkit_glue.h 198 void ClipboardReadHTML(ui::Clipboard::Buffer buffer, string16* markup,
  /external/webkit/Source/WebCore/platform/gtk/
PasteboardGtk.cpp 32 #include "markup.h"
133 RefPtr<DocumentFragment> fragment = createFragmentFromMarkup(frame->document(), dataObject->markup(), "", FragmentScriptingNotAllowed);
ClipboardGtk.cpp 33 #include "markup.h"
161 return m_dataObject->markup();
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentgetxmlstandalone01.js 79 should return false since the default for standalone is no when external markup decls
  /external/webkit/Source/WebKit/mac/DOM/
WebDOMOperations.mm 47 #import <WebCore/markup.h>
  /external/webkit/Source/WebCore/platform/win/
ClipboardUtilitiesWin.cpp 33 #include "markup.h"
239 // Find the markup between "<!--StartFragment -->" and "<!--EndFragment -->", accounting for browser quirks.
251 void markupToCFHTML(const String& markup, const String& srcURL, Vector<char>& result)
253 if (markup.isEmpty())
272 CString markupUTF8 = markup.utf8();
570 String markup = extractMarkupFromCFHTML(cfhtml); local
571 return createFragmentFromMarkup(doc, markup, srcURL, FragmentScriptingNotAllowed);
ClipboardWin.cpp 54 #include "markup.h"
636 String markup("<img src=\"");
637 markup.append(url);
638 markup.append("\"/>");
639 return markup;
  /dalvik/docs/
prettify.js 164 /** token style for a markup declaration such as a DOCTYPE. */
174 * A class that indicates a section of markup that is not code, e.g. to allow
433 /** split markup into chunks of html tags (style null) and
624 /** split markup on tags, comments, application directives, and other top
829 /** identify regions of markup that are really source code, and recursivley
837 // Recurse using the non-markup lexer
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebViewCore.cpp 124 #include "markup.h"
2236 String markup; local
2785 String markup = String(); local
    [all...]
WebViewCore.h 639 void advanceAnchorNode(DOMSelection* selection, int direction, String& markup, bool ignoreFirstNode, ExceptionCode& ec);
  /external/v8/test/mjsunit/
debug-liveedit-patch-positions.js 32 // positions patched. Accoring to a special markup of function text
  /external/expat/xmlwf/
xmlwf.c 298 markup(void *userData, const XML_Char *s, int len) function
827 XML_SetDefaultHandler(parser, markup);
  /external/webkit/Source/WebCore/svg/
SVGUseElement.cpp 620 String markup = serializer->serializeToString(shadowRoot, ec); local
623 fprintf(stderr, "Dumping <use> shadow tree markup:\n%s\n", markup.latin1().data());
    [all...]
  /frameworks/base/core/tests/coretests/src/android/webkit/
AccessibilityInjectorTest.java     [all...]

Completed in 1284 milliseconds

12 3