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

1 2 3 4 5 6 7 8 91011

  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
Intents.java 29 public static final class Scan {
49 private Scan() {
CaptureActivity.java 48 * results when a scan is successful.
123 if (action.equals(Intents.Scan.ACTION)) {
124 if (intent.hasExtra(Intents.Scan.WIDTH) && intent.hasExtra(Intents.Scan.HEIGHT)) {
125 int width = intent.getIntExtra(Intents.Scan.WIDTH, 0);
126 int height = intent.getIntExtra(Intents.Scan.HEIGHT, 0);
132 characterSet = intent.getStringExtra(Intents.Scan.CHARACTER_SET);
  /system/extras/iotop/
tasklist.h 23 static bool Scan(std::map<pid_t, std::vector<pid_t>>&);
tasklist.cpp 48 bool TaskList::Scan(std::map<pid_t, std::vector<pid_t>>& tgid_map) {
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCUnusedIVarsChecker.cpp 33 static void Scan(IvarUsageMap& M, const Stmt *S) {
47 Scan(M, BE->getBody());
57 Scan(M, sub);
61 Scan(M, SubStmt);
64 static void Scan(IvarUsageMap& M, const ObjCPropertyImplDecl *D) {
78 static void Scan(IvarUsageMap& M, const ObjCContainerDecl *D) {
79 // Scan the methods for accesses.
81 Scan(M, I->getBody());
84 // Scan for @synthesized property methods that act as setters/getters
87 Scan(M, I)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vet/testdata/
method.go 17 func (t *MethodTest) Scan(x fmt.ScanState, c byte) { // ERROR "should have signature Scan"
  /prebuilts/go/linux-x86/src/cmd/vet/testdata/
method.go 17 func (t *MethodTest) Scan(x fmt.ScanState, c byte) { // ERROR "should have signature Scan"
  /prebuilts/go/darwin-x86/src/text/scanner/
scanner_test.go 268 tok := s.Scan()
273 tok = s.Scan()
289 s.Scan()
303 s.Scan()
317 tok := s.Scan()
322 tok = s.Scan()
336 tok := s.Scan()
341 tok = s.Scan()
369 checkTok(t, s, 1, s.Scan(), 'f', "f")
370 checkTok(t, s, 1, s.Scan(), Ident, "a"
    [all...]
example_test.go 24 tok = s.Scan()
  /prebuilts/go/linux-x86/src/text/scanner/
scanner_test.go 268 tok := s.Scan()
273 tok = s.Scan()
289 s.Scan()
303 s.Scan()
317 tok := s.Scan()
322 tok = s.Scan()
336 tok := s.Scan()
341 tok = s.Scan()
369 checkTok(t, s, 1, s.Scan(), 'f', "f")
370 checkTok(t, s, 1, s.Scan(), Ident, "a"
    [all...]
example_test.go 24 tok = s.Scan()
  /system/connectivity/wificond/tests/
mock_scan_utils.h 36 MOCK_METHOD4(Scan, bool(
  /external/kmod/
README.md 4 [![Coverity Scan Status](https://scan.coverity.com/projects/2096/badge.svg)](https://scan.coverity.com/projects/2096)
  /prebuilts/go/darwin-x86/src/bufio/
example_test.go 26 for scanner.Scan() {
44 for scanner.Scan() {
71 for scanner.Scan() {
98 // Returning bufio.ErrFinalToken here tells Scan there are no more tokens after this
99 // but does not trigger an error to be returned from Scan itself.
103 // Scan.
104 for scanner.Scan() {
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.
196 for lineNum := 0; s.Scan(); lineNum++ {
232 for lineNum := 0; s.Scan(); lineNum++
    [all...]
  /prebuilts/go/linux-x86/src/bufio/
example_test.go 26 for scanner.Scan() {
44 for scanner.Scan() {
71 for scanner.Scan() {
98 // Returning bufio.ErrFinalToken here tells Scan there are no more tokens after this
99 // but does not trigger an error to be returned from Scan itself.
103 // Scan.
104 for scanner.Scan() {
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.
196 for lineNum := 0; s.Scan(); lineNum++ {
232 for lineNum := 0; s.Scan(); lineNum++
    [all...]
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 161 /// FindNodeWithKind - Scan a series of matchers looking for a matcher with a
189 // If this is not a push node, just scan for one.
236 unsigned Scan = OptionIdx;
238 // If we ran out of stuff to scan, we're done.
239 if (Scan == e) break;
241 Matcher *ScanMatcher = OptionsToMatch[Scan];
249 OptionsToMatch.erase(OptionsToMatch.begin()+Scan);
257 ++Scan;
271 OptionsToMatch[Scan] = M2;
280 if (Scan != e &
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
DAGISelMatcherOpt.cpp 184 // Recursively scan for a PatternPredicate.
212 // chain and scan for the new insertion point.
225 /// FindNodeWithKind - Scan a series of matchers looking for a matcher with a
253 // If this is not a push node, just scan for one.
301 unsigned Scan = OptionIdx;
303 // If we ran out of stuff to scan, we're done.
304 if (Scan == e) break;
306 Matcher *ScanMatcher = OptionsToMatch[Scan];
314 OptionsToMatch.erase(OptionsToMatch.begin()+Scan);
322 ++Scan;
    [all...]
  /prebuilts/go/darwin-x86/src/go/scanner/
example_test.go 23 // Repeated calls to Scan yield the token sequence found in the input.
25 pos, tok, lit := s.Scan()
  /prebuilts/go/linux-x86/src/go/scanner/
example_test.go 23 // Repeated calls to Scan yield the token sequence found in the input.
25 pos, tok, lit := s.Scan()
  /prebuilts/go/darwin-x86/src/database/sql/
example_test.go 24 if err := rows.Scan(&name); err != nil {
37 err := db.QueryRow("SELECT username FROM users WHERE id=?", id).Scan(&username)
82 if err := rows.Scan(&id, &name); err != nil {
100 if err := rows.Scan(&id, &role); err != nil {
  /prebuilts/go/linux-x86/src/database/sql/
example_test.go 24 if err := rows.Scan(&name); err != nil {
37 err := db.QueryRow("SELECT username FROM users WHERE id=?", id).Scan(&username)
82 if err := rows.Scan(&id, &name); err != nil {
100 if err := rows.Scan(&id, &role); err != nil {
  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
scan.js 43 console.log('Scan failed: ' + chrome.runtime.lastError.message);
47 console.log('Scan completed with ' + numImages + ' images.');
50 console.log('Scan ' + i + ' data length ' +
62 chrome.documentScan.scan(scanProperties, onScanCompleted);
  /system/connectivity/wificond/scanning/
scan_utils.h 52 // Send 'get scan results' request to kernel and get the latest scan results.
53 // |interface_index| is the index of interface we want to get scan results
61 // Send scan request to kernel for interface with index |interface_index|.
63 // address during scan.
66 // |ssids| is a vector of ssids we request to scan, which mostly is used
68 // If |ssids| is an empty vector, it will do a passive scan.
69 // If |ssids| contains an empty string, it will a scan for all ssids.
70 // |freqs| is a vector of frequencies we request to scan.
71 // If |freqs| is an empty vector, it will scan all supported frequencies
    [all...]

Completed in 502 milliseconds

1 2 3 4 5 6 7 8 91011