HomeSort by relevance Sort by last modified time
    Searched refs:sanitize (Results 51 - 75 of 419) sorted by null

1 23 4 5 6 7 8 91011>>

  /bionic/benchmarks/tests/
interface_test.cpp 43 std::vector<const char*> extra_args = {}, bool sanitize = true);
107 int expected_exitcode, std::vector<const char*> extra_args, bool sanitize) {
136 if (sanitize) {
    [all...]
  /external/harfbuzz_ng/src/
hb-face.cc 167 hb_face_for_data_closure_t *closure = _hb_face_for_data_closure_create (OT::Sanitizer<OT::OpenTypeFontFile>::sanitize (hb_blob_reference (blob)), index);
427 hb_blob_t *head_blob = OT::Sanitizer<OT::head>::sanitize (reference_table (HB_OT_TAG_head));
471 hb_blob_t *maxp_blob = OT::Sanitizer<OT::maxp>::sanitize (reference_table (HB_OT_TAG_maxp));
  /build/make/core/
config_sanitizers.mk 143 # Support for local sanitize blacklist paths.
250 my_cflags += -fno-sanitize-recover=all
256 my_cflags += -fno-sanitize-trap=address,thread
343 my_cflags += -fno-sanitize-trap=integer
344 my_cflags += -fno-sanitize-recover=integer
362 my_cflags += -fno-sanitize-trap=$(notrap_arg)
  /external/skia/infra/bots/recipe_modules/flavor/
gn_flavor.py 213 sanitize = ''
216 sanitize = t
218 assert sanitize == ''
219 sanitize = 'safe-stack'
224 'sanitize': sanitize,
  /external/skqp/infra/bots/recipe_modules/flavor/
gn_flavor.py 197 sanitize = ''
200 sanitize = t
202 assert sanitize == ''
203 sanitize = 'safe-stack'
208 'sanitize': sanitize,
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
ScoringParamsTest.java 227 * Sanitize should hide garbage characters and truncate length
235 assertEquals(param100, mScoringParams.sanitize(param100));
236 assertEquals(101, mScoringParams.sanitize(param100 + "00000000000").length());
238 mScoringParams.sanitize(param100 + "00000000000").substring(0, 90));
239 assertEquals("q?=???", mScoringParams.sanitize("q\b= ~["));
240 assertEquals("", mScoringParams.sanitize(null));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ClipboardSupport.java 97 SelectionManager.sanitize(selection);
162 SelectionManager.sanitize(selection);
280 SelectionManager.sanitize(selection);
OutlineDragListener.java 73 SelectionManager.sanitize(mDragSelection);
  /external/owasp/sanitizer/src/main/org/owasp/html/
HtmlSanitizer.java 95 * @param html A snippet of HTML to sanitize. {@code null} is treated as the
102 public static void sanitize(@Nullable String html, final Policy policy) { method in class:HtmlSanitizer
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlPolicyBuilderTest.java 296 HtmlSanitizer.sanitize(src, policy);
HtmlSanitizerFuzzerTest.java 131 HtmlSanitizer.sanitize(fuzzyHtml, DO_NOTHING_POLICY);
  /frameworks/base/core/java/android/service/autofill/
TextValueSanitizer.java 68 public AutofillValue sanitize(@NonNull AutofillValue value) { method in class:TextValueSanitizer
70 Slog.w(TAG, "sanitize() called with null value");
74 if (sDebug) Slog.d(TAG, "sanitize() called with non-text value: " + value);
83 if (sDebug) Slog.d(TAG, "sanitize(): " + mRegex + " failed for " + value);
  /build/soong/cc/
toolchain_library.go 48 module.sanitize = nil
cc.go 323 sanitize *sanitize
364 if c.sanitize != nil {
365 c.AddProperties(c.sanitize.props()...)
544 sanitize := ctx.mod.sanitize
545 if sanitize != nil {
546 isVariantOnProductionDevice = sanitize.isVariantOnProductionDevice()
580 module.sanitize = &sanitize{}
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/result/
MetricsXMLResultReporter.java 161 String stackText = sanitize(testResult.getStackTrace());
199 private String sanitize(String text) { method in class:MetricsXMLResultReporter
XmlResultReporter.java 191 String stackText = sanitize(testResult.getStackTrace());
202 private String sanitize(String text) { method in class:XmlResultReporter
  /build/soong/androidmk/cmd/androidmk/
android.go 52 "LOCAL_SANITIZE": sanitize(""),
53 "LOCAL_SANITIZE_DIAG": sanitize("diag."),
122 "LOCAL_SANITIZE_RECOVER": "sanitize.recover",
412 func sanitize(sub string) func(ctx variableAssignmentContext) error { func
420 return fmt.Errorf("unsupported sanitize expression")
428 ctx.file.errorf(ctx.mkvalue, "unsupported sanitize expression")
435 err = setVariable(ctx.file, false, ctx.prefix, "sanitize."+sub+v.Value, bpTrue, true)
443 return fmt.Errorf("sanitize expected a string, got %s", v.Type())
448 err = setVariable(ctx.file, false, ctx.prefix, "sanitize."+sub+"misc_undefined", misc, true)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
ftplib.py 142 print '*welcome*', self.sanitize(self.welcome)
160 # Internal: "sanitize" a string for printing
161 def sanitize(self, s): member in class:FTP
172 if self.debugging > 1: print '*put*', self.sanitize(line)
177 if self.debugging: print '*cmd*', self.sanitize(line)
185 print '*get*', self.sanitize(line)
211 if self.debugging: print '*resp*', self.sanitize(resp)
235 if self.debugging > 1: print '*put urgent*', self.sanitize(line)
    [all...]
  /external/python/cpython2/Lib/
ftplib.py 145 print '*welcome*', self.sanitize(self.welcome)
163 # Internal: "sanitize" a string for printing
164 def sanitize(self, s): member in class:FTP
175 if self.debugging > 1: print '*put*', self.sanitize(line)
180 if self.debugging: print '*cmd*', self.sanitize(line)
190 print '*get*', self.sanitize(line)
216 if self.debugging: print '*resp*', self.sanitize(resp)
240 if self.debugging > 1: print '*put urgent*', self.sanitize(line)
    [all...]
  /external/python/cpython3/Lib/
ftplib.py 162 print('*welcome*', self.sanitize(self.welcome))
180 # Internal: "sanitize" a string for printing
181 def sanitize(self, s): member in class:FTP
191 print('*put*', self.sanitize(line))
196 if self.debugging: print('*cmd*', self.sanitize(line))
206 print('*get*', self.sanitize(line))
236 print('*resp*', self.sanitize(resp))
261 print('*put urgent*', self.sanitize(line))
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
ftplib.py 142 print '*welcome*', self.sanitize(self.welcome)
160 # Internal: "sanitize" a string for printing
161 def sanitize(self, s): member in class:FTP
172 if self.debugging > 1: print '*put*', self.sanitize(line)
177 if self.debugging: print '*cmd*', self.sanitize(line)
185 print '*get*', self.sanitize(line)
211 if self.debugging: print '*resp*', self.sanitize(resp)
235 if self.debugging > 1: print '*put urgent*', self.sanitize(line)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
ftplib.py 142 print '*welcome*', self.sanitize(self.welcome)
160 # Internal: "sanitize" a string for printing
161 def sanitize(self, s): member in class:FTP
172 if self.debugging > 1: print '*put*', self.sanitize(line)
177 if self.debugging: print '*cmd*', self.sanitize(line)
185 print '*get*', self.sanitize(line)
211 if self.debugging: print '*resp*', self.sanitize(resp)
235 if self.debugging > 1: print '*put urgent*', self.sanitize(line)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ftplib.py 142 print '*welcome*', self.sanitize(self.welcome)
160 # Internal: "sanitize" a string for printing
161 def sanitize(self, s): member in class:FTP
172 if self.debugging > 1: print '*put*', self.sanitize(line)
177 if self.debugging: print '*cmd*', self.sanitize(line)
185 print '*get*', self.sanitize(line)
211 if self.debugging: print '*resp*', self.sanitize(resp)
235 if self.debugging > 1: print '*put urgent*', self.sanitize(line)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ftplib.py 142 print '*welcome*', self.sanitize(self.welcome)
160 # Internal: "sanitize" a string for printing
161 def sanitize(self, s): member in class:FTP
172 if self.debugging > 1: print '*put*', self.sanitize(line)
177 if self.debugging: print '*cmd*', self.sanitize(line)
185 print '*get*', self.sanitize(line)
211 if self.debugging: print '*resp*', self.sanitize(resp)
235 if self.debugging > 1: print '*put urgent*', self.sanitize(line)
    [all...]
  /external/owasp/sanitizer/src/main/org/owasp/html/examples/
UrlTextExample.java 149 HtmlSanitizer.sanitize(input, policy);

Completed in 1202 milliseconds

1 23 4 5 6 7 8 91011>>