HomeSort by relevance Sort by last modified time
    Searched refs:Scan (Results 1 - 25 of 297) 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>>&);
  /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...]
  /system/connectivity/shill/cellular/
mm1_modem_modem3gpp_proxy_interface.h 42 virtual void Scan(Error* error,
mock_mm1_modem_modem3gpp_proxy.cc 29 ON_CALL(*this, Scan(_, _, _))
mock_mm1_modem_modem3gpp_proxy.h 39 MOCK_METHOD3(Scan, void(Error* error,
mock_modem_gsm_network_proxy.cc 32 ON_CALL(*this, Scan(_, _, _))
mock_modem_gsm_network_proxy.h 42 MOCK_METHOD3(Scan, void(Error* error, const ScanResultsCallback& callback,
  /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...]
  /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...]
  /external/llvm/utils/TableGen/
DAGISelMatcherOpt.cpp 192 // Recursively scan for a PatternPredicate.
220 // chain and scan for the new insertion point.
233 /// FindNodeWithKind - Scan a series of matchers looking for a matcher with a
261 // If this is not a push node, just scan for one.
309 unsigned Scan = OptionIdx;
311 // If we ran out of stuff to scan, we're done.
312 if (Scan == e) break;
314 Matcher *ScanMatcher = OptionsToMatch[Scan];
322 OptionsToMatch.erase(OptionsToMatch.begin()+Scan);
330 ++Scan;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
example_test.go 28 // The Scan function is rarely used directly;
41 // The Scan function is rarely used directly;
  /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)
  /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/cmd/compile/internal/big/
example_test.go 28 // The Scan function is rarely used directly;
41 // The Scan function is rarely used directly;
  /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)
  /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()
  /system/connectivity/shill/dbus/
chromeos_mm1_modem_modem3gpp_proxy.h 43 void Scan(Error* error,
53 // Callbacks for Scan async call.
  /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);
  /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.
196 for lineNum := 0; s.Scan(); lineNum++ {
232 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.
196 for lineNum := 0; s.Scan(); lineNum++ {
232 for lineNum := 0; s.Scan(); lineNum++
    [all...]
  /system/bt/service/test/
gatt_client_unittest.cpp 38 MOCK_METHOD1(Scan, bt_status_t(bool));
177 EXPECT_CALL(*mock_handler_, Scan(true))
181 EXPECT_CALL(*mock_handler_, Scan(false))

Completed in 1332 milliseconds

1 2 3 4 5 6 7 8 91011>>