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

1 2 3 4 5

  /external/chromium_org/content/renderer/
clipboard_utils.cc 16 std::string markup("<a href=\"");
17 markup.append(url.spec());
18 markup.append("\">");
20 markup.append(net::EscapeForHTML(base::UTF16ToUTF8(title)));
21 markup.append("</a>");
22 return markup;
27 std::string markup("<img src=\"");
28 markup.append(net::EscapeForHTML(url.spec()));
29 markup.append("\"");
31 markup.append(" alt=\"")
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content_public/browser/
NavigationTransitionDelegate.java 14 * @param markup The markup coming as part of response.
19 * the transition layer's markup after the entering stylesheets
23 String markup, String cssSelector, String enteringColor);
WebContents.java 144 * Inserts the provided markup sandboxed into the frame.
146 public void setupTransitionView(String markup);
  /external/chromium_org/content/browser/
transition_request_manager.h 33 std::string markup; member in struct:content::TransitionLayerData
72 const std::string& markup);
84 const std::string& markup);
95 std::string markup; member in struct:content::TransitionRequestManager::TransitionRequestData::AllowedEntry
99 const std::string& markup) :
102 markup(markup) {}
transition_request_manager.cc 115 const std::string& markup) {
118 markup));
134 transition_data->markup = allowed_entry.markup;
158 const std::string& markup) {
164 markup);
  /external/chromium_org/third_party/markupsafe/
_speedups.c 24 static PyObject* markup; variable
45 /* import markup type so that we can mark the return value */
49 markup = PyObject_GetAttrString(module, "Markup");
129 return PyObject_CallFunctionObjArgs(markup, text, NULL);
155 /* convert the unicode string into a markup object. */
156 rv = PyObject_CallFunctionObjArgs(markup, (PyObject*)s, NULL);
167 return PyObject_CallFunctionObjArgs(markup, NULL);
187 "escape(s) -> markup\n\n"
190 "such characters in HTML. Marks return value as markup string."}
    [all...]
__init__.py 6 Implements a Markup string.
16 __all__ = ['Markup', 'soft_unicode', 'escape', 'escape_silent']
23 class Markup(text_type):
26 of frameworks and web applications use. :class:`Markup` is a direct
28 it escapes arguments passed and always returns `Markup`.
30 The `escape` function returns markup objects so that double escaping can't
33 The constructor of the :class:`Markup` class can be used for three
39 >>> Markup("Hello <em>World</em>!")
40 Markup(u'Hello <em>World</em>!')
45 >>> Markup(Foo()
    [all...]
_native.py 11 from markupsafe import Markup
18 such characters in HTML. Marks return value as markup string.
22 return Markup(text_type(s)
33 markup string.
36 return Markup()
41 """Make a string unicode if it isn't already. That way a markup
  /external/llvm/lib/Target/ARM/InstPrinter/
ARMInstPrinter.cpp 71 OS << markup("<reg:")
73 << markup(">");
154 << markup("<imm:")
156 << markup(">");
306 O << markup("<imm:")
308 << markup(">");
347 O << markup("<mem:") << "[pc, ";
356 O << markup("<imm:")
358 << markup(">");
360 O << markup("<imm:"
    [all...]
  /external/llvm/lib/Target/X86/InstPrinter/
X86ATTInstPrinter.cpp 38 OS << markup("<reg:")
40 << markup(">");
169 O << markup("<imm:")
171 << markup(">");
178 O << markup("<imm:")
180 << markup(">");
191 O << markup("<mem:");
219 << markup("<imm:")
221 << markup(">");
227 O << markup(">");
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
DOMPatchSupport.h 53 static void patchDocument(Document&, const String& markup);
57 void patchDocument(const String& markup);
58 Node* patchNode(Node*, const String& markup, ExceptionState&);
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
Pasteboard.cpp 116 blink::WebString markup = blink::Platform::current()->clipboard()->readHTML(m_buffer, &webURL, &fragmentStart, &fragmentEnd); local
117 if (!markup.isEmpty()) {
125 return markup;
128 void Pasteboard::writeHTML(const String& markup, const KURL& documentURL, const String& plainText, bool canSmartCopyOrDelete)
136 blink::Platform::current()->clipboard()->writeHTML(markup, documentURL, text, canSmartCopyOrDelete);
Pasteboard.h 59 // fragmentStart and fragmentEnd are indexes into the returned markup that indicate
60 // the start and end of the returned markup. If there is no additional context,
61 // fragmentStart will be zero and fragmentEnd will be the same as the length of the markup.
64 void writeHTML(const String& markup, const KURL& documentURL, const String& plainText, bool canSmartCopyOrDelete);
  /external/chromium_org/ui/base/x/
selection_utils.cc 220 base::string16 markup; local
230 markup.assign(reinterpret_cast<const uint16_t*>(data) + 1,
233 base::UTF8ToUTF16(reinterpret_cast<const char*>(data), size, &markup); local
237 if (!markup.empty() && markup.at(markup.length() - 1) == '\0')
238 markup.resize(markup.length() - 1);
240 return markup;
243 return markup;
    [all...]
  /external/linux-tools-perf/perf-3.12.0/tools/perf/ui/gtk/
annotate.c 27 const char *markup; local
41 markup = perf_gtk__get_percent_color(percent);
42 if (markup)
43 ret += scnprintf(buf, size, "%s", markup);
45 if (markup)
68 const char *markup = "<span fgcolor='gray'>"; local
76 markup = NULL;
78 if (markup)
79 ret += scnprintf(buf, size, "%s", markup);
81 if (markup)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 111 # First, the classes that represent markup elements.
    [all...]
  /external/chromium_org/third_party/WebKit/public/web/
WebLocalFrame.h 53 virtual void navigateToSandboxedMarkup(const WebData& markup) = 0;
  /external/chromium_org/third_party/WebKit/Source/core/editing/
markup.h 51 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentFromMarkup(Document&, const String& markup, const String& baseURL, ParserContentPolicy = AllowScriptingContent);
52 PassRefPtrWillBeRawPtr<DocumentFragment> createFragmentFromMarkupWithContext(Document&, const String& markup, unsigned fragmentStart, unsigned fragmentEnd, const String& baseURL, ParserContentPolicy);
markup.cpp 30 #include "core/editing/markup.h"
176 StringBuilder markup; local
178 appendElement(markup, toElement(node), convertBlocksToInlines && isBlock(&node), rangeFullySelectsNode);
180 appendStartMarkup(markup, node, 0);
181 m_reversedPrecedingMarkup.append(markup.toString());
374 // This null check will prevent crashes (but create too much markup)
393 // Add the node to the markup if we're not skipping the descendants
424 // Surround the currently accumulated markup with markup for ancestors we never opened as we leave the subtree(s) rooted at those ancestors.
494 // Add an interchange newline if a paragraph break is selected and a br won't already be added to the markup to represent it
905 StringBuilder markup; local
    [all...]
  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/webcontents/
WebContentsImpl.java 174 * Inserts the provided markup sandboxed into the frame.
177 public void setupTransitionView(String markup) {
178 nativeSetupTransitionView(mNativeWebContentsAndroid, markup);
191 private void didDeferAfterResponseStarted(String markup, String cssSelector,
194 mNavigationTransitionDelegate.didDeferAfterResponseStarted(markup,
256 String markup);
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlLexerTest.java 148 private static void assertTokens(String markup, String... golden) {
149 HtmlLexer lexer = new HtmlLexer(markup);
153 actual.add(t.type + ": " + markup.substring(t.start, t.end));
  /external/chromium_org/ui/base/clipboard/
scoped_clipboard_writer.h 43 void WriteHTML(const base::string16& markup, const std::string& source_url);
  /external/llvm/include/llvm/MC/
MCInstPrinter.h 88 StringRef markup(StringRef s) const;
89 StringRef markup(StringRef a, StringRef b) const;
  /external/llvm/lib/MC/
MCInstPrinter.cpp 46 StringRef MCInstPrinter::markup(StringRef s) const { function in class:MCInstPrinter
52 StringRef MCInstPrinter::markup(StringRef a, StringRef b) const { function in class:MCInstPrinter
  /external/chromium_org/third_party/markdown/extensions/
headerid.py 69 Works with inline markup.
71 >>> text = '#Some *Header* with [markup](http://example.com).'
74 <h1 id="some-header-with-markup">Some <em>Header</em> with <a href="http://example.com">markup</a>.</h1>

Completed in 525 milliseconds

1 2 3 4 5