Searched defs:html (Results 1 - 25 of 71) sorted by relevance

123

/external/sonivox/jet_tools/JetCreator/
H A DJetHelp.py24 import wx.html namespace
29 html1 = wx.html.HtmlWindow(frame, -1)
/external/clang/include/clang/Rewrite/Core/
H A DHTMLRewrite.h27 namespace html { namespace in namespace:clang
78 } // end html namespace
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHyperRef.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DIContent.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DElementList.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DHTMLWriter.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DIElementList.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DText.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DTextContent.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DAttributeSet.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DIElement.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
H A DISimpleElement.java5 * and is available at http://www.eclipse.org/legal/cpl-v10.html
9 package com.vladium.emma.report.html.doc;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DCssUrlValidateFunction.java17 package com.google.clearsilver.jsilver.functions.html;
35 * <li>CSS 2.1 URLs: http://www.w3.org/TR/CSS21/syndata.html#url
H A DBaseUrlValidateFunction.java17 package com.google.clearsilver.jsilver.functions.html;
H A DHtmlUrlValidateFunction.java17 package com.google.clearsilver.jsilver.functions.html;
H A DHtmlStripFunction.java17 package com.google.clearsilver.jsilver.functions.html;
27 * This class implements the html_strip function. It removes html tags from text, and expands
28 * numbered and named html entities to their corresponding special characters.
36 // inside a html tag.
H A DTextHtmlFunction.java17 package com.google.clearsilver.jsilver.functions.html;
30 * It converts plain text into html, including adding 'tt' tags to ascii art and linking email and
33 * Note this implementation differs from ClearSilver, in that it html escapes the contents of links
38 // These regular expressions are adapted from html.c in the ClearSilver
63 // We don't have access to the global html escaper here, so create a new one.
66 // Escapes a small set of non-safe html characters, and does a a very small
199 * has_space_formatting in html.c in the ClearSilver source.
/external/chromium/chrome/browser/autofill/
H A Dform_structure_browsertest.cc22 const FilePath::CharType kFileNamePattern[] = FILE_PATH_LITERAL("*.html");
24 // Convert the |html| snippet to a data URI.
25 GURL HTMLToDataURI(const std::string& html) { argument
26 return GURL(std::string("data:text/html;charset=utf-8,") + html);
/external/chromium/chrome/browser/history/
H A Dhistory_publisher.h49 const char16* html; member in struct:history::HistoryPublisher::PageData
/external/chromium/webkit/glue/
H A Dwebframe_unittest.cc49 WebString::fromUTF8("/html/body/iframe"));
76 const std::string html = frame->contentAsMarkup().utf8(); local
78 // Load again with the output html.
79 frame->loadHTMLString(html, test_url);
82 EXPECT_EQ(html, UTF16ToUTF8(frame->contentAsMarkup()));
H A Dcpp_bound_class_unittest.cc99 // Wraps the given JavaScript snippet in <html><body><script> tags, then
102 std::string html = "<html><body>"; local
103 html.append(TestShellTest::kJavascriptDelayExitScript);
104 html.append("<script>");
105 html.append(javascript);
106 html.append("</script></body></html>");
108 webframe_->loadHTMLString(html, GURL("about:blank"));
/external/webkit/Source/WebCore/platform/chromium/
H A DDataTransferItemChromium.cpp101 String html; local
103 PlatformBridge::clipboardReadHTML(PasteboardPrivate::StandardBuffer, &html, &ignoredSourceURL);
104 callback->scheduleCallback(m_context, html);
/external/chromium/chrome/browser/ui/webui/
H A Dflags_ui.cc53 return "text/html";
93 base::StringPiece html = local
97 html = ResourceBundle::GetSharedInstance().GetRawDataResource(
107 static const base::StringPiece flags_html(html);
/external/webkit/Tools/DumpRenderTree/win/
H A DDRTDesktopNotificationPresenter.cpp75 BOOL html; local
77 if (!notification->isHTML(&html) && html) {
101 BOOL html; local
102 notification->isHTML(&html);
103 if (html)
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
H A DHtmlTooltipHelper.java6 * http://www.eclipse.org/legal/epl-v10.html
62 String html = "<table cellspacing=2 cellpadding=0 border=0 margins=0 id=_wbp_tooltip_body>";
64 html += "<tr align=center><td><b>" + header + "</b></td></tr>";
66 html += "<tr><td align=justify>" + details + "</td></tr>";
67 html += "</table>";
68 control = createTooltipControl_Browser(parent, html, heightLimit);
91 String html,
118 "<html>",
124 html,
126 "</html>");
90 createTooltipControl_Browser(Composite parent, String html, final int heightLimitChars) argument
269 getTextLength(String html) argument
300 createTooltipControl_Label(Composite parent, String html) argument
[all...]

Completed in 400 milliseconds

123