HomeSort by relevance Sort by last modified time
    Searched defs:Scan (Results 1 - 12 of 12) 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 32 void AudioPowerMonitor::Scan(const AudioBus& buffer, int num_frames) {
  /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.
82 Scan(M, (*I)->getBody());
85 // Scan for @synthesized property methods that act as setters/getters
89 Scan(M, *I)
    [all...]
  /external/chromium_org/v8/src/
dateparser-inl.h 187 DateParser::DateToken DateParser::DateStringTokenizer<CharType>::Scan() {
scanner.cc 55 // after a newline and scan first token.
58 Scan();
240 Scan();
354 void Scanner::Scan() {
611 Scan();
798 // scan exponent, if any
802 // scan exponent
949 // Scan identifier start character.
966 // Scan the rest of the identifier characters.
993 // Scan the rest of the identifier characters
    [all...]
  /external/v8/src/
dateparser-inl.h 183 DateParser::DateToken DateParser::DateStringTokenizer<CharType>::Scan() {
scanner.cc 54 // after a newline and scan first token.
57 Scan();
239 Scan();
353 void Scanner::Scan() {
610 Scan();
776 // scan exponent, if any
780 // scan exponent
927 // Scan identifier start character.
944 // Scan the rest of the identifier characters.
971 // Scan the rest of the identifier characters
    [all...]
  /art/runtime/gc/accounting/
card_table-inl.h 45 inline size_t CardTable::Scan(SpaceBitmap* bitmap, byte* scan_begin, byte* scan_end,
48 DCHECK(bitmap->HasAddress(scan_end - 1)); // scan_end is the byte after the last byte we scan.
  /external/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...]

Completed in 588 milliseconds