HomeSort by relevance Sort by last modified time
    Searched defs:Scan (Results 1 - 11 of 11) sorted by null

  /external/chromium_org/sandbox/win/tools/finder/
finder.cc 44 DWORD Finder::Scan() {
  /external/chromium_org/tools/code_coverage/
croc_scan.py 86 def Scan(self, filename):
90 filename: Path to file to scan.
150 filename: Path to file to scan.
159 return PythonScanner().Scan(filename)
161 return CppScanner().Scan(filename)
croc_scan_test.py 74 # TODO: Test Scan(). Low priority, since it just wraps ScanLines().
153 def Scan(self, filename):
154 """Mock Scan() method."""
155 return 'scan %s %s' % (self.language, filename)
178 self.assertEqual(croc_scan.ScanFile('foo', 'python'), 'scan py foo')
179 self.assertEqual(croc_scan.ScanFile('bar1', 'C'), 'scan cpp bar1')
180 self.assertEqual(croc_scan.ScanFile('bar2', 'C++'), 'scan cpp bar2')
181 self.assertEqual(croc_scan.ScanFile('bar3', 'ObjC'), 'scan cpp bar3')
182 self.assertEqual(croc_scan.ScanFile('bar4', 'ObjC++'), 'scan cpp bar4')
  /external/chromium_org/media/audio/
audio_power_monitor.cc 33 void AudioPowerMonitor::Scan(const AudioBus& buffer, int num_frames) {
  /external/chromium_org/tools/cr/cr/
loader.py 5 """Module scan and load system.
7 The main interface to this module is the Scan function, which triggers a
8 recursive scan of all packages and modules below cr, with modules being
30 """Scan the modules for things that need wiring up automatically."""
53 # First scan, add the scanned marker set.
56 for scan in scan_hooks:
57 if scan not in scanner_tags:
58 scanner_tags.add(scan)
59 scan(module)
63 """Scan a package for child packages and modules.""
    [all...]
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
Intents.java 29 public static final class Scan {
49 private Scan() {
  /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, *I);
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...]
  /external/chromium_org/v8/src/
dateparser-inl.h 164 DateParser::DateToken DateParser::DateStringTokenizer<CharType>::Scan() {
scanner.cc 38 // after a newline and scan first token.
41 Scan();
223 Scan();
338 void Scanner::Scan() {
595 Scan();
782 // scan exponent, if any
786 // scan exponent
933 // Scan identifier start character.
950 // Scan the rest of the identifier characters.
977 // Scan the rest of the identifier characters
    [all...]
  /art/runtime/gc/accounting/
card_table-inl.h 52 inline size_t CardTable::Scan(ContinuousSpaceBitmap* bitmap, byte* scan_begin, byte* scan_end,
55 // scan_end is the byte after the last byte we scan.
  /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...]

Completed in 285 milliseconds