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

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/tests/src/com/android/mail/utils/
AdvancedHtmlSanitizerTest.java 12 sanitize("<html>\n" +
49 sanitize("'';!--\"<XSS>=&{()}", "&#39;&#39;;!--&#34;&#61;&amp;{()}");
50 sanitize("<img src=javascript:alert(String.fromCharCode(88,83,83))>", "");
51 sanitize("\\\";alert('XSS');//", "\\&#34;;alert(&#39;XSS&#39;);//");
52 sanitize("<br size=\"&{alert('XSS')}\">", "<br />");
53 sanitize("<xss style=\"xss:expression(alert('XSS'))\">", "");
54 sanitize("<xss style=\"behavior: url(xss.htc);\">", "");
55 sanitize("¼script¾alert(¢XSS¢)¼/script¾", "¼script¾alert(¢XSS¢)¼/script¾");
56 sanitize("<xml><i><b><img src=\"javas<!-- -->cript:alert('XSS')\"></b></i></xml>",
58 sanitize("<xml src=\"xsstest.xml\" id=I></xml>", "")
534 private void sanitize(String dirtyHTML, String expectedHTML) { method in class:AdvancedHtmlSanitizerTest
    [all...]
BasicHtmlSanitizerTest.java 13 sanitize("<div dir=\"ltr\">something</div>", "<div dir=\"ltr\">something</div>");
14 sanitize("<div dir=\"rtl\">something</div>", "<div dir=\"rtl\">something</div>");
15 sanitize("<div dir=\"LTR\">something</div>", "<div dir=\"ltr\">something</div>");
16 sanitize("<div dir=\"RTL\">something</div>", "<div dir=\"rtl\">something</div>");
17 sanitize("<div dir=\"blah\">something</div>", "<div>something</div>");
22 sanitize("<a coords=\"something\"></a>", "<a coords=\"something\"></a>");
23 sanitize("<a href=\"http://www.here.com\"></a>", "<a href=\"http://www.here.com\"></a>");
24 sanitize("<a href=\"https://www.here.com\"></a>", "<a href=\"https://www.here.com\"></a>");
25 sanitize("<a name=\"something\"></a>", "<a name=\"something\"></a>");
26 sanitize("<a shape=\"something\"></a>", "<a shape=\"something\"></a>")
854 sanitize(attack, defend); method
1074 private void sanitize(String dirtyHTML, String expectedHTML) { method in class:BasicHtmlSanitizerTest
    [all...]
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
  /external/owasp/sanitizer/src/tests/org/owasp/html/
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...]
SanitizersTest.java 39 assertEquals("", Sanitizers.FORMATTING.sanitize(null));
40 assertEquals("", Sanitizers.FORMATTING.sanitize(""));
43 Sanitizers.FORMATTING.sanitize("Hello, World!"));
46 Sanitizers.FORMATTING.sanitize("Hello, <b>World</b>!"));
49 Sanitizers.FORMATTING.sanitize(
55 assertEquals("", Sanitizers.BLOCKS.sanitize(null));
58 Sanitizers.BLOCKS.sanitize("Hello, World!"));
61 Sanitizers.BLOCKS.sanitize("Hello, <b>World</b>!"));
64 Sanitizers.BLOCKS.sanitize(
76 assertEquals("", f.sanitize(null))
    [all...]
AntiSamyTest.java 92 private static String sanitize(String html) {
95 HtmlSanitizer.sanitize(html, makePolicy(sb));
177 sanitize(html);
241 if (sanitize(s).length() != 0) {
245 if (sanitize(s).length() != 0) {
249 sanitize("<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>");
250 sanitize("<IMG SRC=&#x6A&#x61&#x76&#x61&#x73&#x63&#x72&#x69&#x70&#x74&#x3A&#x61&#x6C&#x65&#x72&#x74&#x28&#x27&#x58&#x53&#x53&#x27&#x29>");
392 sanitize(testStr);
393 sanitize(testStr);
399 sanitize("<a . href=\"http://www.test.com\">"));
    [all...]
ExamplesTest.java 61 // Invoke with no arguments to sanitize empty input stream to output.
82 String sanitized = EbayPolicyExample.POLICY_DEFINITION.sanitize(input);
89 String sanitized = EbayPolicyExample.POLICY_DEFINITION.sanitize(input);
96 String sanitized = EbayPolicyExample.POLICY_DEFINITION.sanitize(input);
  /external/harfbuzz_ng/src/
hb-ot-layout-jstf-table.hh 57 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::JstfPriority
61 shrinkageEnableGSUB.sanitize (c, this) &&
62 shrinkageDisableGSUB.sanitize (c, this) &&
63 shrinkageEnableGPOS.sanitize (c, this) &&
64 shrinkageDisableGPOS.sanitize (c, this) &&
65 shrinkageJstfMax.sanitize (c, this) &&
66 extensionEnableGSUB.sanitize (c, this) &&
67 extensionDisableGSUB.sanitize (c, this) &&
68 extensionEnableGPOS.sanitize (c, this) &&
69 extensionDisableGPOS.sanitize (c, this) &
126 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::JstfLangSys
167 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::JstfScript
212 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::JSTF
    [all...]
hb-ot-var-hvar-table.hh 38 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::DeltaSetIndexMap
104 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::HVARVVAR
107 return_trace (version.sanitize (c) &&
109 varStore.sanitize (c, this) &&
110 advMap.sanitize (c, this) &&
111 lsbMap.sanitize (c, this) &&
112 rsbMap.sanitize (c, this));
147 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::VVAR
150 return_trace (static_cast<const HVARVVAR *> (this)->sanitize (c) &&
151 vorgMap.sanitize (c, this))
    [all...]
hb-ot-post-table.hh 45 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::postV2Tail
48 return_trace (numberOfGlyphs.sanitize (c) &&
67 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::post
75 return_trace (v2.sanitize (c));
hb-ot-layout-gdef-table.hh 74 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::AttachList
77 return_trace (coverage.sanitize (c, this) && attachPoint.sanitize (c, this));
105 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CaretValueFormat1
132 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CaretValueFormat2
156 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CaretValueFormat3
159 return_trace (c->check_struct (this) && deviceTable.sanitize (c, this));
188 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CaretValue
191 if (!u.format.sanitize (c)) return_trace (false);
193 case 1: return_trace (u.format1.sanitize (c))
231 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::LigGlyph
267 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::LigCaretList
290 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MarkGlyphSetsFormat1
315 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MarkGlyphSets
387 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::GDEF
    [all...]
hb-ot-math-table.hh 44 inline bool sanitize (hb_sanitize_context_t *c, const void *base) const function in struct:OT::MathValueRecord
47 return_trace (c->check_struct (this) && deviceTable.sanitize (c, base));
68 if (!mathValueRecords[i].sanitize (c, this))
74 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathConstants
168 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathItalicsCorrectionInfo
172 coverage.sanitize (c, this) &&
173 italicsCorrection.sanitize (c, this));
199 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathTopAccentAttachment
203 topAccentCoverage.sanitize (c, this) &&
204 topAccentAttachment.sanitize (c, this))
241 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathKern
298 inline bool sanitize (hb_sanitize_context_t *c, const void *base) const function in struct:OT::MathKernInfoRecord
331 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathKernInfo
365 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathGlyphInfo
420 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathGlyphVariantRecord
450 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathGlyphPartRecord
495 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathGlyphAssembly
540 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathGlyphConstruction
595 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MathVariants
688 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MATH
    [all...]
hb-ot-cbdt-table.hh 36 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::SmallGlyphMetrics
70 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::SBitLineMetrics
99 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::IndexSubtableHeader
115 inline bool sanitize (hb_sanitize_context_t *c, unsigned int glyph_count) const function in struct:OT::IndexSubtableFormat1Or3
145 inline bool sanitize (hb_sanitize_context_t *c, unsigned int glyph_count) const function in struct:OT::IndexSubtable
148 if (!u.header.sanitize (c)) return_trace (false);
150 case 1: return_trace (u.format1.sanitize (c, glyph_count));
151 case 3: return_trace (u.format3.sanitize (c, glyph_count));
191 inline bool sanitize (hb_sanitize_context_t *c, const void *base) const function in struct:OT::IndexSubtableRecord
196 offsetToSubtable.sanitize (c, this, lastGlyphIndex - firstGlyphIndex + 1))
226 inline bool sanitize (hb_sanitize_context_t *c, unsigned int count) const function in struct:OT::IndexSubtableArray
262 inline bool sanitize (hb_sanitize_context_t *c, const void *base) const function in struct:OT::BitmapSizeTable
320 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CBLC
367 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CBDT
    [all...]
hb-ot-glyf-table.hh 47 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::loca
73 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::glyf
hb-open-file-private.hh 56 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::TableRecord
106 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::OffsetTable
135 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::TTCHeaderVersion1
138 return_trace (table.sanitize (c, this));
175 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::TTCHeader
178 if (unlikely (!u.header.version.sanitize (c))) return_trace (false);
181 case 1: return_trace (u.version1.sanitize (c));
240 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::OpenTypeFontFile
243 if (unlikely (!u.tag.sanitize (c))) return_trace (false);
248 case TrueTypeTag: return_trace (u.fontFace.sanitize (c))
    [all...]
hb-ot-maxp-table.hh 51 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::maxp
hb-ot-cmap-table.hh 54 inline bool sanitize (hb_sanitize_context_t *c) const
146 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CmapSubtableFormat4
204 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CmapSubtableLongGroup
232 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CmapSubtableTrimmed
235 return_trace (c->check_struct (this) && glyphIdArray.sanitize (c));
265 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CmapSubtableLongSegmented
268 return_trace (c->check_struct (this) && groups.sanitize (c));
312 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::UnicodeValueRange
334 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::UVSMapping
374 inline bool sanitize (hb_sanitize_context_t *c, const void *base) cons function in struct:OT::VariationSelectorRecord
400 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CmapSubtableFormat14
436 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CmapSubtable
480 inline bool sanitize (hb_sanitize_context_t *c, const void *base) const function in struct:OT::EncodingRecord
516 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::cmap
    [all...]
hb-ot-layout-common-private.hh 80 inline bool sanitize (hb_sanitize_context_t *c, const void *base) const function in struct:OT::Record
84 return_trace (c->check_struct (this) && offset.sanitize (c, base, &closure));
137 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::RecordListOf
140 return_trace (RecordArrayOf<Type>::sanitize (c, this));
151 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::RangeRecord
216 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::LangSys
220 return_trace (c->check_struct (this) && featureIndex.sanitize (c));
256 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::Script
260 return_trace (defaultLangSys.sanitize (c, this) && langSys.sanitize (c, this))
280 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::FeatureParamsSize
392 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::FeatureParamsStylisticSet
426 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::FeatureParamsCharacterVariants
467 inline bool sanitize (hb_sanitize_context_t *c, hb_tag_t tag) const function in struct:OT::FeatureParams
509 inline bool sanitize (hb_sanitize_context_t *c, function in struct:OT::Feature
653 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::Lookup
711 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CoverageFormat1
802 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CoverageFormat2
905 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::Coverage
1018 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::ClassDefFormat1
1075 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::ClassDefFormat2
1133 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::ClassDef
1200 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::VarRegionAxis
1238 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::VarRegionList
1294 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::VarData
1334 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::VariationStore
1568 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::ConditionFormat1
1634 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::VariationDevice
1693 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::Device
    [all...]
hb-ot-var-avar-table.hh 37 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::AxisValueMap
96 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::avar
99 if (unlikely (!(version.sanitize (c) &&
108 if (unlikely (!map->sanitize (c)))
hb-ot-hmtx-table.hh 58 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::hmtxvmtx
hb-ot-layout-gpos-table.hh 168 if ((format & xPlaDevice) && !get_device (values++).sanitize (c, base)) return false;
169 if ((format & yPlaDevice) && !get_device (values++).sanitize (c, base)) return false;
170 if ((format & xAdvDevice) && !get_device (values++).sanitize (c, base)) return false;
171 if ((format & yAdvDevice) && !get_device (values++).sanitize (c, base)) return false;
215 /* Just sanitize referenced Device tables. Doesn't check the values themselves. */
243 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::AnchorFormat1
274 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::AnchorFormat2
304 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::AnchorFormat3
307 return_trace (c->check_struct (this) && xDeviceTable.sanitize (c, this) && yDeviceTable.sanitize (c, this))
340 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::Anchor
373 inline bool sanitize (hb_sanitize_context_t *c, unsigned int cols) const function in struct:OT::AnchorMatrix
399 inline bool sanitize (hb_sanitize_context_t *c, const void *base) const function in struct:OT::MarkRecord
449 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MarkArray
485 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::SinglePosFormat1
537 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::SinglePosFormat2
665 inline bool sanitize (hb_sanitize_context_t *c, const sanitize_closure_t *closure) const function in struct:OT::PairSet
715 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::PairPosFormat1
804 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::PairPosFormat2
879 inline bool sanitize (hb_sanitize_context_t *c, const void *base) const function in struct:OT::EntryExitRecord
1014 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::CursivePosFormat1
1099 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MarkBasePosFormat1
1216 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MarkLigPosFormat1
1330 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::MarkMarkPosFormat1
1489 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::PosLookup
1514 inline bool sanitize (hb_sanitize_context_t *c) const function in struct:OT::GPOS
    [all...]
  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 22 template <typename Type> static bool sanitize() { function
26 bool closure = sanitize<int>();
  /external/libcxx/test/support/
filesystem_dynamic_test_helper.py 20 def sanitize(p): function
45 root_p = sanitize(root_p)
51 root_p = sanitize(root_p)
57 with open(sanitize(fname), 'w') as f:
62 os.mkdir(sanitize(dname))
66 os.symlink(sanitize(source), sanitize(link))
70 os.link(sanitize(source), sanitize(link))
74 os.mkfifo(sanitize(source)
    [all...]
  /build/soong/cc/
sanitize.go 78 Sanitize struct {
116 type sanitize struct { type
123 func (sanitize *sanitize) props() []interface{} {
124 return []interface{}{&sanitize.Properties}
127 func (sanitize *sanitize) begin(ctx BaseModuleContext) {
128 s := &sanitize.Properties.Sanitize
248 sanitize.Properties.SanitizerEnabled = tru
    [all...]
  /cts/tests/tests/net/src/android/net/cts/
UrlQuerySanitizer_IllegalCharacterValueSanitizerTest.java 27 assertEquals("Joe User", sanitizer.sanitize("Joe<User"));

Completed in 301 milliseconds

1 2 3 4 5 6 7 8 91011>>