HomeSort by relevance Sort by last modified time
    Searched defs:sanitize (Results 1 - 25 of 108) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
OpenTypeSanitizer.cpp 41 PassRefPtr<SharedBuffer> OpenTypeSanitizer::sanitize() function in class:WebCore::OpenTypeSanitizer
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-maxp-table.hh 50 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::maxp
hb-ot-hmtx-table.hh 55 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::hmtx
hb-ot-head-table.hh 54 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::head
hb-ot-hhea-table.hh 47 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::hhea
hb-ot-name-table.hh 59 inline bool sanitize (hb_sanitize_context_t *c, void *base) { function in struct:OT::NameRecord
109 if (!nameRecord[i].sanitize (c, string_pool)) return TRACE_RETURN (false);
113 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::name
hb-ot-layout-jstf-table.hh 57 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::JstfPriority
60 shrinkageEnableGSUB.sanitize (c, this) &&
61 shrinkageDisableGSUB.sanitize (c, this) &&
62 shrinkageEnableGPOS.sanitize (c, this) &&
63 shrinkageDisableGPOS.sanitize (c, this) &&
64 shrinkageJstfMax.sanitize (c, this) &&
65 extensionEnableGSUB.sanitize (c, this) &&
66 extensionDisableGSUB.sanitize (c, this) &&
67 extensionEnableGPOS.sanitize (c, this) &&
68 extensionDisableGPOS.sanitize (c, this) &
125 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::JstfLangSys
165 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::JstfScript
209 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::JSTF
    [all...]
  /external/harfbuzz_ng/src/
hb-ot-maxp-table.hh 50 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::maxp
hb-ot-hmtx-table.hh 55 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::hmtx
hb-ot-head-table.hh 54 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::head
hb-ot-hhea-table.hh 47 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::hhea
hb-ot-name-table.hh 59 inline bool sanitize (hb_sanitize_context_t *c, void *base) { function in struct:OT::NameRecord
109 if (!nameRecord[i].sanitize (c, string_pool)) return TRACE_RETURN (false);
113 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::name
hb-ot-layout-jstf-table.hh 57 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::JstfPriority
60 shrinkageEnableGSUB.sanitize (c, this) &&
61 shrinkageDisableGSUB.sanitize (c, this) &&
62 shrinkageEnableGPOS.sanitize (c, this) &&
63 shrinkageDisableGPOS.sanitize (c, this) &&
64 shrinkageJstfMax.sanitize (c, this) &&
65 extensionEnableGSUB.sanitize (c, this) &&
66 extensionDisableGSUB.sanitize (c, this) &&
67 extensionEnableGPOS.sanitize (c, this) &&
68 extensionDisableGPOS.sanitize (c, this) &
125 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::JstfLangSys
165 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::JstfScript
209 inline bool sanitize (hb_sanitize_context_t *c) { function in struct:OT::JSTF
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/
PolicyFactory.java 44 * provides a convenient <code>{@link PolicyFactory#sanitize sanitize}</code>
100 public String sanitize(@Nullable String html) { method in class:PolicyFactory
101 return sanitize(html, null, null);
107 * @param html the string of HTML to sanitize.
116 public <CTX> String sanitize( method in class:PolicyFactory
121 HtmlSanitizer.sanitize(
  /external/owasp/sanitizer/src/tests/org/owasp/html/
Benchmark.java 70 n += sanitize(html).length();
93 n += sanitize(html).length();
118 "Full sanitize custom : %12d", (t3 - t2)));
122 "Full sanitize w/ PB : %12d", (t5 - t4)));
132 private static String sanitize(String html) throws Exception { method in class:Benchmark
143 HtmlSanitizer.sanitize(html, new HtmlSanitizer.Policy() {
202 HtmlSanitizer.sanitize(html, policyBuilder.build(renderer));
HtmlChangeReporterTest.java 72 HtmlSanitizer.sanitize(
HtmlPolicyBuilderTest.java 296 HtmlSanitizer.sanitize(src, policy);
HtmlSanitizerTest.java 42 assertEquals("", sanitize(""));
43 assertEquals("", sanitize(null));
48 assertEquals("hello world", sanitize("hello world"));
53 assertEquals("&lt;hello world&gt;", sanitize("&lt;hello world&gt;"));
59 sanitize("<b>hello <i>world</i></b>"));
65 sanitize("<b>hello <bogus></bogus><i>world</i></b>"));
71 sanitize("<b>hello <i>world</i>"
79 sanitize("<b>hello <i onclick=\"takeOverWorld(this)\">world</i></b>"));
85 sanitize(
92 sanitize("<b id=\"foo\" / -->hello <i>world<</i></b>"))
343 private static String sanitize(@Nullable String html) throws Exception { method in class:HtmlSanitizerTest
    [all...]
  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 22 template <typename Type> static bool sanitize() { function
26 bool closure = sanitize<int>();
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
SlashdotPolicyExample.java 98 // Fetch the HTML to sanitize.
117 // Use the policy defined above to sanitize the HTML.
118 HtmlSanitizer.sanitize(html, POLICY_DEFINITION.apply(renderer));
EbayPolicyExample.java 214 // Fetch the HTML to sanitize.
233 // Use the policy defined above to sanitize the HTML.
234 HtmlSanitizer.sanitize(html, POLICY_DEFINITION.apply(renderer));
  /packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/
QuotedHtmlSanitizerTest.java 17 sanitize("<div class=\"garbage\"></div>", "<div></div>");
24 sanitize("<div class=\"gmail_quote\"></div>", "<div class=\"elided-text\"></div>");
31 sanitize("<div class=\"yahoo_quoted\"></div>", "<div class=\"elided-text\"></div>");
38 sanitize("<div id=\"AOLMsgPart_1_59da800c-ba5d-45c5-9ff7-29a8264a5bd9\"></div>",
40 sanitize("<div id=\"AOLMsgPart_1_b916b4c7-3047-43a9-b24d-83b7ffd2b9b7\"></div>",
44 private void sanitize(String dirtyHTML, String expectedHTML) { method in class:QuotedHtmlSanitizerTest
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
HtmlSanitizer.java 375 org.owasp.html.HtmlSanitizer.sanitize(rawHtml, policy);
  /frameworks/base/tools/layoutlib/rename_font/
build_font.py 217 return sanitize(string.split()[1])
220 def sanitize(string): function
build_font_single.py 201 return sanitize(string.split()[1])
204 def sanitize(string): function

Completed in 6773 milliseconds

1 2 3 4 5