Searched refs:markup (Results 1 - 25 of 85) sorted by relevance

1234

/external/chromium_org/content/renderer/
H A Dclipboard_utils.cc16 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
[all...]
H A Dclipboard_client.h58 base::string16* markup,
H A Drenderer_clipboard_client.h30 base::string16* markup,
/external/chromium_org/content/public/android/java/src/org/chromium/content_public/browser/
H A DNavigationTransitionDelegate.java14 * @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);
22 didDeferAfterResponseStarted( String markup, String cssSelector, String enteringColor) argument
H A DWebContents.java144 * Inserts the provided markup sandboxed into the frame.
146 public void setupTransitionView(String markup); argument
/external/chromium_org/content/browser/
H A Dtransition_request_manager.h33 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) {}
97 AllowedEntry(const std::string& allowed_destination_host_pattern, const std::string& css_selector, const std::string& markup) argument
H A Dtransition_request_manager.cc115 const std::string& markup) {
118 markup));
134 transition_data->markup = allowed_entry.markup;
158 const std::string& markup) {
164 markup);
112 AddEntry( const std::string& allowed_destination_host_pattern, const std::string& css_selector, const std::string& markup) argument
153 AddPendingTransitionRequestData( int render_process_id, int render_frame_id, const std::string& allowed_destination_host_pattern, const std::string& css_selector, const std::string& markup) argument
/external/chromium_org/third_party/markupsafe/
H A D_speedups.c24 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."},
192 "escape_silent(s) -> markup\
[all...]
/external/llvm/lib/Target/ARM/InstPrinter/
H A DARMInstPrinter.cpp71 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("<im
[all...]
/external/llvm/lib/Target/X86/InstPrinter/
H A DX86ATTInstPrinter.cpp38 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/
H A DDOMPatchSupport.h53 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/
H A DPasteboard.cpp116 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) argument
136 blink::Platform::current()->clipboard()->writeHTML(markup, documentURL, text, canSmartCopyOrDelete);
H A DPasteboard.h59 // 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/
H A Dselection_utils.cc220 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/
H A Dannotate.c27 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/
H A DBeautifulSoup.py111 # First, the classes that represent markup elements.
887 """Encapsulates a number of ways of matching a markup element (tag or
912 markup = None
914 markup = markupName
915 markupAttrs = markup
921 or (markup and self._matches(markup, self.name)) \
922 or (not markup and self._matches(markupName, self.name)):
941 if markup:
942 found = markup
[all...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A Dmarkup.h51 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);
H A Dmarkup.cpp30 #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 t
659 createFragmentFromMarkup(Document& document, const String& markup, const String& baseURL, ParserContentPolicy parserContentPolicy) argument
712 createFragmentFromMarkupWithContext(Document& document, const String& markup, unsigned fragmentStart, unsigned fragmentEnd, const String& baseURL, ParserContentPolicy parserContentPolicy) argument
905 StringBuilder markup; local
914 createFragmentForInnerOuterHTML(const String& markup, Element* contextElement, ParserContentPolicy parserContentPolicy, const char* method, ExceptionState& exceptionState) argument
982 createContextualFragment(const String& markup, Element* element, ParserContentPolicy parserContentPolicy, ExceptionState& exceptionState) argument
[all...]
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/webcontents/
H A DWebContentsImpl.java174 * Inserts the provided markup sandboxed into the frame.
177 public void setupTransitionView(String markup) { argument
178 nativeSetupTransitionView(mNativeWebContentsAndroid, markup);
191 private void didDeferAfterResponseStarted(String markup, String cssSelector, argument
194 mNavigationTransitionDelegate.didDeferAfterResponseStarted(markup,
256 String markup);
255 nativeSetupTransitionView(long nativeWebContentsAndroid, String markup) argument
/external/owasp/sanitizer/src/tests/org/owasp/html/
H A DHtmlLexerTest.java148 private static void assertTokens(String markup, String... golden) { argument
149 HtmlLexer lexer = new HtmlLexer(markup);
153 actual.add(t.type + ": " + markup.substring(t.start, t.end));
/external/chromium_org/third_party/WebKit/public/web/
H A DWebLocalFrame.h53 virtual void navigateToSandboxedMarkup(const WebData& markup) = 0;
/external/chromium_org/ui/base/clipboard/
H A Dscoped_clipboard_writer.h43 void WriteHTML(const base::string16& markup, const std::string& source_url);
H A Dclipboard_unittest.cc120 base::string16 markup(ASCIIToUTF16("<string>Hi!</string>")), markup_result;
127 clipboard_writer.WriteHTML(markup, url);
135 EXPECT_PRED2(MarkupMatches, markup, markup_result);
166 base::string16 markup(ASCIIToUTF16("<string>Selection</string>"));
176 clipboard_writer.WriteHTML(markup, url);
200 EXPECT_PRED2(MarkupMatches, markup, markup_result);
205 base::string16 markup(ASCIIToUTF16("<em>Bye!<!--EndFragment --></em>")),
213 clipboard_writer.WriteHTML(markup, url);
221 EXPECT_PRED2(MarkupMatches, markup, markup_result);
231 base::string16 markup(UTF8ToUTF1
[all...]
/external/llvm/include/llvm/MC/
H A DMCInstPrinter.h88 StringRef markup(StringRef s) const;
89 StringRef markup(StringRef a, StringRef b) const;
/external/llvm/lib/MC/
H A DMCInstPrinter.cpp46 StringRef MCInstPrinter::markup(StringRef s) const { function in class:MCInstPrinter
52 StringRef MCInstPrinter::markup(StringRef a, StringRef b) const { function in class:MCInstPrinter

Completed in 407 milliseconds

1234