/external/clang/test/CXX/conv/conv.qual/ |
H A D | pr6089.cpp | 16 void first_finder( const char*& Search ) 18 make_range( Search, is_char_ptr(Search) );
|
/external/libvpx/libvpx/tools/ |
H A D | cpplint.py | 506 # The regexp compilation caching is inlined in both Match and Search for 517 The compiled regex is kept in a cache shared by Match and Search. 532 def Search(pattern, s): function 1610 if Search(r'\bVLOG\((INFO|ERROR|WARNING|DFATAL|FATAL)\)', line): 1720 if Search('(^|[^:]):($|[^:])', clean_lines.elided[linenum]): 2115 if Search(r'printf\s*\(.*".*%[-+ ]?\d*q', line): 2119 if Search(r'printf\s*\(.*".*%\d+\$', line): 2126 if Search(r'("|\').*\\(%|\[|\(|{)', line): 2133 if Search(r'\b(const|volatile|void|char|short|int|long' 2149 if Search( [all...] |
/external/compiler-rt/lib/sanitizer_common/scripts/ |
H A D | cpplint.py | 411 # The regexp compilation caching is inlined in both Match and Search for 419 def Search(pattern, s): function 1423 if Search('(^|[^:]):($|[^:])', clean_lines.elided[linenum]): 1782 if Search(r'printf\s*\(.*".*%[-+ ]?\d*q', line): 1786 if Search(r'printf\s*\(.*".*%\d+\$', line): 1793 if Search(r'("|\').*\\(%|\[|\(|{)', line): 1800 if Search(r'\b(const|volatile|void|char|short|int|long' 1816 if Search(r'(\w+|[+-]?\d+(\.\d*)?)\s*(<|>)\?=?\s*(\w+|[+-]?\d+)(\.\d*)?', 1821 if Search(r'^\s*const\s*string\s*&\s*\w+\s*;', line): 1876 match = Search(patter [all...] |
/external/llvm/include/llvm/ADT/ |
H A D | DeltaAlgorithm.h | 63 /// Search - Search for a subset (or subsets) in \p Sets which can be 69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
|
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
H A D | DeltaAlgorithm.h | 63 /// Search - Search for a subset (or subsets) in \arg Sets which can be 69 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
|
/external/toolchain-utils/bestflags/ |
H A D | flags.py | 41 # Search the numeric flag pattern. 42 def Search(spec): function 101 numeric_flag_match = Search(spec)
|
H A D | flags_util.py | 42 numeric_flag_match = flags.Search(climb_spec)
|
H A D | testing_batch.py | 58 numeric_flag_match = flags.Search(spec) 92 numeric_flag_match = flags.Search(spec) 162 numeric_flag_match = flags.Search(other_spec) 212 numeric_flag_match = flags.Search(spec)
|
H A D | iterative_elimination.py | 60 numeric_flag_match = flags.Search(spec)
|
/external/llvm/lib/Support/ |
H A D | DeltaAlgorithm.cpp | 55 if (Search(Changes, Sets, Res)) 69 bool DeltaAlgorithm::Search(const changeset_ty &Changes, function in class:DeltaAlgorithm
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
H A D | DeltaAlgorithm.cpp | 55 if (Search(Changes, Sets, Res)) 69 bool DeltaAlgorithm::Search(const changeset_ty &Changes, function in class:DeltaAlgorithm
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
H A D | SearchIterator.java | 95 final class Search { class in class:SearchIterator 157 Search search_ = new Search(); 494 * Search will begin at the start of the text string if a forward
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/ |
H A D | SearchIterator.java | 98 final class Search { class in class:SearchIterator 160 Search search_ = new Search(); 511 * Search will begin at the start of the text string if a forward
|
/external/regex-re2/re2/ |
H A D | bitstate.cc | 36 // The usual Search prototype. 37 // Can only call Search once per BitState. 38 bool Search(const StringPiece& text, const StringPiece& context, 48 // Search parameters 58 // Search state 292 // Search text (within context) for prog_. 293 bool BitState::Search(const StringPiece& text, const StringPiece& context, function in class:re2::BitState 296 // Search parameters. 371 if (!b.Search(text, context, anchored, longest, match, nmatch))
|
/external/regex-re2/re2/testing/ |
H A D | backtrack.cc | 53 bool Search(const StringPiece& text, const StringPiece& context, 62 // Search parameters 72 // Search state 94 bool Backtracker::Search(const StringPiece& text, const StringPiece& context, function in class:re2::Backtracker 123 // to text, so have to reallocate on each call to Search. 247 if (!b.Search(text, context, anchored, longest, match, nmatch))
|
H A D | regexp_benchmark.cc | 61 fprintf(stderr, "Search: %7lld bytes (peak=%lld)\n", mc.HeapGrowth(), mc.PeakHeapGrowth()); 150 void Search(int iters, int nbytes, const char* regexp, SearchImpl* search) { function in namespace:re2 179 void Search_Easy0_CachedDFA(int i, int n) { Search(i, n, EASY0, SearchCachedDFA); } 180 void Search_Easy0_CachedNFA(int i, int n) { Search(i, n, EASY0, SearchCachedNFA); } 181 void Search_Easy0_CachedPCRE(int i, int n) { Search(i, n, EASY0, SearchCachedPCRE); } 182 void Search_Easy0_CachedRE2(int i, int n) { Search(i, n, EASY0, SearchCachedRE2); } 191 void Search_Easy1_CachedDFA(int i, int n) { Search(i, n, EASY1, SearchCachedDFA); } 192 void Search_Easy1_CachedNFA(int i, int n) { Search(i, n, EASY1, SearchCachedNFA); } 193 void Search_Easy1_CachedPCRE(int i, int n) { Search(i, n, EASY1, SearchCachedPCRE); } 194 void Search_Easy1_CachedRE2(int i, int n) { Search( [all...] |
/external/webrtc/webrtc/base/ |
H A D | fileutils_mock.h | 77 return FakeDirectoryIterator::Search(std::string("")); 83 return FakeDirectoryIterator::Search(current_name); 86 bool Search(const std::string& current_name) { function in class:rtc::FakeDirectoryIterator
|
/external/ImageMagick/www/api/ |
H A D | deprecate.php | 48 <a class="magick-nav-item " href="../script/search.php">Search</a>
|
H A D | magick-deprecate.php | 48 <a class="magick-nav-item " href="../script/search.php">Search</a>
|
H A D | magick.php | 48 <a class="magick-nav-item " href="../script/search.php">Search</a>
|
/external/libpng/contrib/gregbook/ |
H A D | makevms.com | 100 $ If F$Search(P1) .Eqs. "" Then Goto Makeit 113 $ AFile = F$Search(File)
|
/external/libpng/contrib/pngminus/ |
H A D | makevms.com | 60 $ If F$Search(P1) .Eqs. "" Then Goto Makeit 73 $ AFile = F$Search(File)
|
/external/llvm/lib/Support/Windows/ |
H A D | Process.inc | 203 // Search for matching files.
|
/external/v8/src/ |
H A D | transitions.cc | 81 : array->Search(details.kind(), *name, details.attributes(), 128 : array->Search(details.kind(), *name, details.attributes(), 175 int transition = transitions->Search(kind, name, attributes); 509 new_transitions->Search(details.kind(), key, details.attributes()); 545 int TransitionArray::Search(PropertyKind kind, Name* name,
|
/external/libpng/scripts/ |
H A D | makevms.com | 20 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS" 110 $ If F$Search(P1) .Eqs. "" Then Goto Makeit 123 $ AFile = F$Search(File)
|