Home
last modified time | relevance | path

Searched refs:Search (Results 1 – 25 of 226) sorted by relevance

12345678910

/third_party/json/tools/cpplint/
Dcpplint.py973 matched = Search(r'\bNOLINT(NEXTLINE)?\b(\([^)]+\))?', raw_line)
1062 def Search(pattern, s): function
1985 if Search(r'\b(?:0[bBxX]?|[1-9])[0-9a-fA-F]*$', head):
2028 elif i > 0 and Search(r'\boperator\s*$', line[0:i]):
2057 (line[i - 1] == '-' or Search(r'\boperator\s*$', line[0:i - 1]))):
2153 Search(r'\boperator\s*$', line[0:i]))):
2389 if Search(r'//\s*NOLINT\(build/header_guard\)', i):
2394 if Search(r'^\s*#pragma\s+once', i):
2477 if Search(_TEST_FILE_SUFFIX, fileinfo.BaseName()):
2635 if Search(pattern, line):
[all …]
/third_party/typescript/tests/ts_extra_tests/test_ts_cases/spec/types/type_parameters/type_argument_lists/
Dtype_argument_lists_3.ts32 interface Search<T, Y extends Lengthwise> { interface
35 let fn: Search<string, Lengthwise> = getname;
39 let fn2: Search<number, Lengthwise> = getname;
43 let fn3: Search<boolean, Lengthwise> = getname;
/third_party/skia/site/docs/dev/tools/
Dcodesearch.md3 title: "Code Search"
4 linkTitle: "Code Search"
19 internal Code Search. In addition to the
20 main [skia](http://cs/#skia/skia/) repo, internal Code Search indexes the
36 Code search option |Search |XRef |History |Repos |Branches |Freshness
44 [2]: http://cs/#skia/ "Internal Code Search"
/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/
Dspan.go92 idxStart := sort.Search(len(*l), func(i int) bool { return (*l)[i].End.Compare(s.Start) >= 0 })
98 idxEnd := sort.Search(len(*l), func(i int) bool { return (*l)[i].Start.Compare(s.End) > 0 })
127 idxStart := sort.Search(len(*l), func(i int) bool { return (*l)[i].End.Compare(s.Start) > 0 })
128 idxEnd := sort.Search(len(*l), func(i int) bool { return (*l)[i].Start.Compare(s.End) >= 0 })
/third_party/node/deps/v8/src/objects/
Ddescriptor-array-inl.h59 InternalIndex DescriptorArray::Search(Name name, int valid_descriptors, in Search() function
62 return InternalIndex(internal::Search<VALID_ENTRIES>( in Search()
66 InternalIndex DescriptorArray::Search(Name name, Map map, in Search() function
71 return Search(name, number_of_own_descriptors, concurrent_search); in Search()
84 InternalIndex result = Search(name, number_of_own_descriptors); in SearchWithCache()
Ddescriptor-array.h126 V8_INLINE InternalIndex Search(Name name, int number_of_own_descriptors,
128 V8_INLINE InternalIndex Search(Name name, Map map,
/third_party/vk-gl-cts/external/vulkan-docs/src/config/chunkindex/
Daddscript.searchboxmarker1 …rchbox"><label for="searchbox">Search: </label><input id="searchbox" type="text" disabled="disable…
/third_party/openssl/doc/man1/
Dopenssl-storeutl.pod.in84 Search for an object having the subject name I<arg>.
103 Search for an object having the given issuer name and serial number.
112 Search for an object having the given alias.
116 Search for an object having the given fingerprint.
/third_party/node/deps/npm/lib/commands/
Dsearch.js36 class Search extends BaseCommand { class
113 module.exports = Search
/third_party/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
DSearchIterator.java98 final class Search { class in SearchIterator
160 Search search_ = new Search();
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
DSearchIterator.java95 final class Search { class in SearchIterator
157 Search search_ = new Search();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DDeltaAlgorithm.cpp55 if (Search(Changes, Sets, Res)) in Delta()
69 bool DeltaAlgorithm::Search(const changeset_ty &Changes, in Search() function in DeltaAlgorithm
DTargetParser.cpp108 GPUInfo Search = { {""}, {""}, AK, AMDGPU::FEATURE_NONE }; in getArchEntry() local
110 auto I = std::lower_bound(Table.begin(), Table.end(), Search, in getArchEntry()
/third_party/node/deps/npm/docs/content/commands/
Dnpm-search.md4 description: Search for packages
19 Search the registry for packages matching the search terms. `npm search`
32 Search also allows targeting of maintainers in search results, by prefixing
/third_party/libevdev/doc/html/search/
Dsearch.css1 /*---------------- Search Box */
80 /*---------------- Search filter selection */
138 /*---------------- Search results window */
/third_party/skia/third_party/externals/oboe/docs/reference/search/
Dsearch.css1 /*---------------- Search Box */
96 /*---------------- Search filter selection */
154 /*---------------- Search results window */
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMParallelDSP.cpp225 bool Search(Value *V, BasicBlock *BB, Reduction &R);
440 bool ARMParallelDSP::Search(Value *V, BasicBlock *BB, Reduction &R) { in Search() function in ARMParallelDSP
464 bool ValidLHS = Search(LHS, BB, R); in Search()
465 bool ValidRHS = Search(RHS, BB, R); in Search()
478 return Search(I->getOperand(0), BB, R); in Search()
534 if (!Search(&I, &BB, R)) in MatchSMLAD()
/third_party/skia/site/
Dsearch.md2 title: Search Results
/third_party/skia/third_party/externals/swiftshader/tests/regres/cmd/run_testlist/
Dmain.go226 if t := llvm.Search(content.LLVM).FindAtLeast(minVersion); t != nil {
233 if t := llvm.Search().FindAtLeast(minVersion); t != nil {
/third_party/typescript/src/services/
DfindAllReferences.ts974 … function getReferencesInContainerOrFiles(symbol: Symbol, state: State, search: Search): void {
1030 interface Search { interface
1113 …rtExport | undefined, searchOptions: { text?: string, allSearchSymbols?: Symbol[] } = {}): Search {
1183 let indirectSearch: Search | undefined;
1256 function searchForName(sourceFile: SourceFile, search: Search, state: State): void {
1521 …function getReferencesInSourceFile(sourceFile: SourceFile, search: Search, state: State, addRefere…
1531 …function getReferencesInContainer(container: Node, sourceFile: SourceFile, search: Search, state: …
1545 …function getReferencesAtLocation(sourceFile: SourceFile, position: number, search: Search, state: …
1619 search: Search,
1697 …portReferences(referenceLocation: Node, referenceSymbol: Symbol, search: Search, state: State): vo…
[all …]
/third_party/icu/docs/userguide/collation/
Dstring-search.md3 title: String Search
12 # String Search Service
66 ## ICU String Search Model
124 > "Medial Match" and "Maximal Match" are not yet implemented by the ICU String Search service.
127 described in *[Section 8.2 Asymmetric Search in UTS #10 Unicode Collation
271 ### Search Algorithm
326 ### Case Level Search
/third_party/skia/third_party/externals/freetype/src/tools/
Dupdate-copyright-year66 # First try: Search multiple copyright years.
96 # Second try: Search a single copyright year.
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DDeltaAlgorithm.h68 bool Search(const changeset_ty &Changes, const changesetlist_ty &Sets,
/third_party/libwebsockets/minimal-examples/api-tests/
DREADME.md8 api-test-fts|LWS Full-text Search api
/third_party/typescript/tests/baselines/reference/tsserver/watchEnvironment/
Dwatching-files-with-network-style-paths.js125 Info 19 [00:00:20.000] Search path: //vda1cs4850/myprojects/project
303 Info 51 [00:00:22.000] Search path: c:/users/username/myprojects/project

12345678910