HomeSort by relevance Sort by last modified time
    Searched refs:scan (Results 226 - 250 of 991) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 86 void scan(const Function &);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Analysis/
CFLAndersAliasAnalysis.h 86 void scan(const Function &);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Analysis/
CFLSteensAliasAnalysis.h 59 void scan(Function *Fn);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Analysis/
CFLSteensAliasAnalysis.h 59 void scan(Function *Fn);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Analysis/
CFLSteensAliasAnalysis.h 59 void scan(Function *Fn);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Analysis/
CFLSteensAliasAnalysis.h 59 void scan(Function *Fn);
  /prebuilts/misc/darwin-x86/analyzer/tools/scan-build/
scan-build 27 my $Prog = "scan-build";
326 # ScanFile - Scan a report file for various identifying attributes.
357 # Scan the report file for tags.
484 # Postprocess - Postprocess the results of an analysis scan.
525 # Scan each report file and build an index.
530 # Scan the failures directory and use the information in the .info files
849 Diag("Run '$Top/prebuilts/misc/linux-x86/analyzer/tools/scan-view/scan-view $Dir' to examine bug reports.\n");
1084 By default the output of scan-build is a set of HTML files. This option
1089 By default the output of scan-build is a set of HTML files. This optio
    [all...]
  /prebuilts/misc/linux-x86/analyzer/tools/scan-build/
scan-build 27 my $Prog = "scan-build";
326 # ScanFile - Scan a report file for various identifying attributes.
357 # Scan the report file for tags.
484 # Postprocess - Postprocess the results of an analysis scan.
525 # Scan each report file and build an index.
530 # Scan the failures directory and use the information in the .info files
849 Diag("Run '$Top/prebuilts/misc/linux-x86/analyzer/tools/scan-view/scan-view $Dir' to examine bug reports.\n");
1084 By default the output of scan-build is a set of HTML files. This option
1089 By default the output of scan-build is a set of HTML files. This optio
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/bgen/bgen/
scantools.py 55 <title>Bgen scan report</title>
58 <h1>Bgen scan report</h1>
60 <p>This scan report is intended to help you debug the regular expressions
427 def setinput(self, scan = sys.stdin):
428 if not type(scan) in (TupleType, ListType):
429 scan = [scan]
430 self.allscaninputs = scan
436 scan = self.allscaninputs[0]
439 if scan:
477 def scan(self): member in class:Scanner
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
JarFinder.java 70 scanner.scan(entry.getKey(), entry.getValue());
108 void scan(URI uri, ClassLoader classloader) throws IOException { method in class:JarFinder.Scanner
152 scan(uri, classloader); method
  /external/dtc/
fdtdump.c 154 {"scan", no_argument, NULL, 's'},
159 "Scan for an embedded fdt in file",
183 bool scan = false; local
199 scan = true;
212 if (scan) {
  /external/emma/core/java12/com/vladium/util/
IProperties.java 181 PropertiesImpl scan = _clone; local
201 scan.setDelegate (_delegateClone);
202 scan = _delegateClone;
  /external/python/cpython2/Tools/bgen/bgen/
scantools.py 55 <title>Bgen scan report</title>
58 <h1>Bgen scan report</h1>
60 <p>This scan report is intended to help you debug the regular expressions
427 def setinput(self, scan = sys.stdin):
428 if not type(scan) in (TupleType, ListType):
429 scan = [scan]
430 self.allscaninputs = scan
436 scan = self.allscaninputs[0]
439 if scan
477 def scan(self): member in class:Scanner
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
floatconv.go 29 // scan is like Parse but reads the longest possible prefix representing a valid
33 func (z *Float) scan(r io.ByteScanner, base int) (f *Float, b int, err error) { func
50 z.mant, b, fcount, err = z.mant.scan(r, base, true)
251 // scan doesn't handle ħInf
262 if f, b, err = z.scan(r, base); err != nil {
284 // Scan is a support routine for fmt.Scanner; it sets z to the value of
286 // fmt.Scan for floating point values, which are:
288 // Scan doesn't handle ħInf.
289 func (z *Float) Scan(s fmt.ScanState, ch rune) error {
291 _, _, err := z.scan(byteReader{s}, 0
    [all...]
intconv.go 161 // scan sets z to the integer value corresponding to the longest possible prefix
172 func (z *Int) scan(r io.ByteScanner, base int) (*Int, int, error) { func
180 z.abs, base, _, err = z.abs.scan(r, base, false)
225 // Scan is a support routine for fmt.Scanner; it sets z to the value of
228 func (z *Int) Scan(s fmt.ScanState, ch rune) error {
241 // let scan determine the base
243 return errors.New("Int.Scan: invalid verb")
245 _, _, err := z.scan(byteReader{s}, base)
  /prebuilts/go/linux-x86/src/math/big/
floatconv.go 29 // scan is like Parse but reads the longest possible prefix representing a valid
33 func (z *Float) scan(r io.ByteScanner, base int) (f *Float, b int, err error) { func
50 z.mant, b, fcount, err = z.mant.scan(r, base, true)
251 // scan doesn't handle ħInf
262 if f, b, err = z.scan(r, base); err != nil {
284 // Scan is a support routine for fmt.Scanner; it sets z to the value of
286 // fmt.Scan for floating point values, which are:
288 // Scan doesn't handle ħInf.
289 func (z *Float) Scan(s fmt.ScanState, ch rune) error {
291 _, _, err := z.scan(byteReader{s}, 0
    [all...]
intconv.go 161 // scan sets z to the integer value corresponding to the longest possible prefix
172 func (z *Int) scan(r io.ByteScanner, base int) (*Int, int, error) { func
180 z.abs, base, _, err = z.abs.scan(r, base, false)
225 // Scan is a support routine for fmt.Scanner; it sets z to the value of
228 func (z *Int) Scan(s fmt.ScanState, ch rune) error {
241 // let scan determine the base
243 return errors.New("Int.Scan: invalid verb")
245 _, _, err := z.scan(byteReader{s}, base)
  /external/wpa_supplicant_8/src/drivers/
driver_privsep.c 105 struct privsep_cmd_scan scan; local
109 os_memset(&scan, 0, sizeof(scan));
110 scan.num_ssids = params->num_ssids;
114 scan.ssid_lens[i] = params->ssids[i].ssid_len;
115 os_memcpy(scan.ssids[i], params->ssids[i].ssid,
116 scan.ssid_lens[i]);
121 scan.freqs[i] = params->freqs[i];
122 scan.num_freqs = i;
124 return wpa_priv_cmd(drv, PRIVSEP_CMD_SCAN, &scan, sizeof(scan)
    [all...]
  /prebuilts/go/darwin-x86/src/bufio/
scan_test.go 47 for i = 0; s.Scan(); i++ {
72 if !s.Scan() {
81 if s.Scan() {
82 t.Errorf("#%d: scan ran too long, got %q", n, s.Text())
115 if !s.Scan() {
123 if s.Scan() {
124 t.Errorf("#%d: scan ran too long, got %q", n, s.Text())
137 // reads in Scanner.Scan.
195 for lineNum := 0; s.Scan(); lineNum++ {
231 for lineNum := 0; s.Scan(); lineNum++
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
scan_test.go 47 for i = 0; s.Scan(); i++ {
72 if !s.Scan() {
81 if s.Scan() {
82 t.Errorf("#%d: scan ran too long, got %q", n, s.Text())
115 if !s.Scan() {
123 if s.Scan() {
124 t.Errorf("#%d: scan ran too long, got %q", n, s.Text())
137 // reads in Scanner.Scan.
195 for lineNum := 0; s.Scan(); lineNum++ {
231 for lineNum := 0; s.Scan(); lineNum++
    [all...]
  /external/clang/tools/scan-build/bin/
scan-build 29 my $Prog = "scan-build";
52 HtmlTitle => basename($CurrentDir)." - scan-build results",
367 # ScanFile - Scan a report file for various identifying attributes.
398 # Scan the report file for tags.
466 my $JS = Cwd::realpath("$RealBin/../share/scan-build/sorttable.js");
476 my $CSS = Cwd::realpath("$RealBin/../share/scan-build/scanview.css");
535 # Postprocess - Postprocess the results of an analysis scan.
578 # Scan each report file and build an index.
583 # Scan the failures directory and use the information in the .info files
911 Diag("Run 'scan-view $Dir' to examine bug reports.\n")
    [all...]
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
WificondControlTest.java 299 assertFalse(mWificondControl.scan(
302 verify(mWifiScannerImpl, never()).scan(any());
651 * Verifies that scan result's carrier network info {@link ScanResult#isCarrierAp} and
682 // Verify returned scan result.
696 // Verify returned scan result.
746 * Verifies that Scan() can convert input parameters to SingleScanSettings correctly.
750 when(mWifiScannerImpl.scan(any(SingleScanSettings.class))).thenReturn(true);
751 assertTrue(mWificondControl.scan(
754 verify(mWifiScannerImpl).scan(argThat(new ScanMatcher(
760 * Verifies that Scan() can handle null input parameters correctly
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3289846/tools/scan-build/bin/
scan-build 29 my $Prog = "scan-build";
52 HtmlTitle => basename($CurrentDir)." - scan-build results",
367 # ScanFile - Scan a report file for various identifying attributes.
398 # Scan the report file for tags.
466 my $JS = Cwd::realpath("$RealBin/../share/scan-build/sorttable.js");
476 my $CSS = Cwd::realpath("$RealBin/../share/scan-build/scanview.css");
535 # Postprocess - Postprocess the results of an analysis scan.
578 # Scan each report file and build an index.
583 # Scan the failures directory and use the information in the .info files
911 Diag("Run 'scan-view $Dir' to examine bug reports.\n")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3859424/tools/scan-build/bin/
scan-build 29 my $Prog = "scan-build";
52 HtmlTitle => basename($CurrentDir)." - scan-build results",
368 # ScanFile - Scan a report file for various identifying attributes.
399 # Scan the report file for tags.
471 my $JS = Cwd::realpath("$RealBin/../share/scan-build/sorttable.js");
481 my $CSS = Cwd::realpath("$RealBin/../share/scan-build/scanview.css");
540 # Postprocess - Postprocess the results of an analysis scan.
583 # Scan each report file and build an index.
588 # Scan the failures directory and use the information in the .info files
925 Diag("Run 'scan-view $Dir' to examine bug reports.\n")
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/tools/scan-build/bin/
scan-build 29 my $Prog = "scan-build";
52 HtmlTitle => basename($CurrentDir)." - scan-build results",
368 # ScanFile - Scan a report file for various identifying attributes.
399 # Scan the report file for tags.
471 my $JS = Cwd::realpath("$RealBin/../share/scan-build/sorttable.js");
481 my $CSS = Cwd::realpath("$RealBin/../share/scan-build/scanview.css");
540 # Postprocess - Postprocess the results of an analysis scan.
583 # Scan each report file and build an index.
588 # Scan the failures directory and use the information in the .info files
925 Diag("Run 'scan-view $Dir' to examine bug reports.\n")
    [all...]

Completed in 1644 milliseconds

1 2 3 4 5 6 7 8 91011>>