Home
last modified time | relevance | path

Searched defs:Pattern (Results 1 – 25 of 1021) sorted by relevance

12345678910>>...41

/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/ranges/range.adaptors/range.lazy.split/
H A Dconstraints.compile.pass.cpp41 using Pattern = ForwardView; typedef
56 using Pattern = ForwardTinyView; typedef
90 using Pattern = ForwardTinyView; typedef
105 using Pattern = ForwardView; typedef
120 using Pattern = InputView; typedef
141 using Pattern = IntForwardView; typedef
156 using Pattern = ForwardView; typedef
179 using Pattern = AlmostTinyRange; typedef
202 using Pattern = ForwardView; typedef
/aosp_15_r20/external/rust/android-crates-io/crates/os_str_bytes/src/
Draw_str.rs311 P: Pattern, in contains()
331 P: Pattern, in ends_with()
369 pub fn find<P>(&self, pat: P) -> Option<usize> in find()
434 pub fn rfind<P>(&self, pat: P) -> Option<usize> in rfind()
486 P: Pattern, in rsplit_once()
542 P: Pattern, in split()
601 P: Pattern, in split_once()
621 P: Pattern, in starts_with()
663 pub fn strip_prefix<P>(&self, pat: P) -> Option<&Self> in strip_prefix()
689 pub fn strip_suffix<P>(&self, pat: P) -> Option<&Self> in strip_suffix()
[all …]
Dpattern.rs36 pub trait Pattern: private::Sealed { trait
57 impl Pattern for &str { impl
65 impl<'a> Pattern for &'a String { impl
/aosp_15_r20/external/mesa3d/bin/ci/
H A Dci_run_n_monitor.py116 target_jobs_regex: re.Pattern,
117 include_stage_regex: re.Pattern,
118 exclude_stage_regex: re.Pattern,
465 target_jobs_regex: re.Pattern,
466 include_stage_regex: re.Pattern,
467 exclude_stage_regex: re.Pattern,
/aosp_15_r20/frameworks/minikin/libs/minikin/
H A DHyphenator.cpp65 struct Pattern { struct
66 uint32_t version;
67 uint32_t n_entries;
68 uint32_t pattern_offset;
69 uint32_t pattern_size;
70 uint32_t data[1]; // actually flexible array, size is known at runtime
73 static uint32_t len(uint32_t entry) { return entry >> 26; } in len()
74 static uint32_t shift(uint32_t entry) { return (entry >> 20) & 0x3f; } in shift()
75 const uint8_t* buf(uint32_t entry) const { in buf()
/aosp_15_r20/external/rust/android-crates-io/crates/glob/src/
Dlib.rs492 pub struct Pattern { struct
494 tokens: Vec<PatternToken>, argument
499 impl fmt::Display for Pattern { argument
505 impl FromStr for Pattern { implementation
541 impl Pattern { impl
813 patterns: &[Pattern], in fill_todo()
/aosp_15_r20/external/llvm/lib/DebugInfo/PDB/Raw/
H A DRawSession.cpp106 llvm::StringRef Pattern, in findSourceFiles()
113 llvm::StringRef Pattern, in findOneSourceFile()
119 RawSession::findCompilandsForSourceFile(llvm::StringRef Pattern, in findCompilandsForSourceFile()
125 RawSession::findOneCompilandForSourceFile(llvm::StringRef Pattern, in findOneCompilandForSourceFile()
/aosp_15_r20/trusty/vendor/google/aosp/scripts/
Drun_tests.py243 def test_should_run(testname: str, test_filters: Optional[list[re.Pattern]]):
265 test_filters: list[re.Pattern],
307 test_filters: Optional[list[re.Pattern]] = None,
523 test_filters: Optional[list[re.Pattern]] = None,
/aosp_15_r20/external/clang/lib/Sema/
H A DSemaTemplateVariadic.cpp468 Sema::CheckPackExpansion(TypeSourceInfo *Pattern, SourceLocation EllipsisLoc, in CheckPackExpansion()
485 QualType Sema::CheckPackExpansion(QualType Pattern, SourceRange PatternRange, in CheckPackExpansion()
501 ExprResult Sema::ActOnPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc) { in ActOnPackExpansion()
505 ExprResult Sema::CheckPackExpansion(Expr *Pattern, SourceLocation EllipsisLoc, in CheckPackExpansion()
648 QualType Pattern = cast<PackExpansionType>(T)->getPattern(); in getNumArgumentsInExpansion() local
897 TypeLoc Pattern = Expansion.getPatternLoc(); in getTemplateArgumentPackExpansionPattern() local
914 Expr *Pattern = Expansion->getPattern(); in getTemplateArgumentPackExpansionPattern() local
H A DSemaTemplateInstantiateDecl.cpp569 TypeAliasDecl *Pattern = D->getTemplatedDecl(); in VisitTypeAliasTemplateDecl() local
966 EnumDecl *Enum, EnumDecl *Pattern) { in InstantiateEnumDefinition()
1048 CXXRecordDecl *Pattern = D->getTemplatedDecl(); in VisitClassTemplateDecl() local
1255 VarDecl *Pattern = D->getTemplatedDecl(); in VisitVarTemplateDecl() local
2080 TypeLoc Pattern = Expansion.getPatternLoc(); in VisitNonTypeTemplateParmDecl() local
3522 Stmt *Pattern = PatternDecl->getBody(PatternDecl); in InstantiateFunctionDefinition() local
4383 static bool isInstantiationOf(ClassTemplateDecl *Pattern, in isInstantiationOf()
4396 static bool isInstantiationOf(FunctionTemplateDecl *Pattern, in isInstantiationOf()
4410 isInstantiationOf(ClassTemplatePartialSpecializationDecl *Pattern, in isInstantiationOf()
4425 static bool isInstantiationOf(CXXRecordDecl *Pattern, in isInstantiationOf()
[all …]
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/
H A DNativeSession.cpp147 StringRef Pattern, in findSourceFiles()
154 StringRef Pattern, in findOneSourceFile()
160 NativeSession::findCompilandsForSourceFile(StringRef Pattern, in findCompilandsForSourceFile()
166 NativeSession::findOneCompilandForSourceFile(StringRef Pattern, in findOneCompilandForSourceFile()
/aosp_15_r20/external/llvm/unittests/DebugInfo/PDB/
H A DPDBApiTest.cpp91 findSourceFiles(const PDBSymbolCompiland *Compiland, llvm::StringRef Pattern, in findSourceFiles()
97 llvm::StringRef Pattern, in findOneSourceFile()
102 findCompilandsForSourceFile(llvm::StringRef Pattern, in findCompilandsForSourceFile()
107 findOneCompilandForSourceFile(llvm::StringRef Pattern, in findOneCompilandForSourceFile()
/aosp_15_r20/external/rust/android-crates-io/crates/aho-corasick/src/packed/
Dpattern.rs226 pub struct Pattern<'a>(&'a [u8]); struct
228 impl<'a> fmt::Debug for Pattern<'a> { implementation
236 impl<'p> Pattern<'p> { implementation
/aosp_15_r20/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp205 llvm::StringRef Pattern, in findSourceFiles()
227 llvm::StringRef Pattern, in findOneSourceFile()
236 DIASession::findCompilandsForSourceFile(llvm::StringRef Pattern, in findCompilandsForSourceFile()
245 DIASession::findOneCompilandForSourceFile(llvm::StringRef Pattern, in findOneCompilandForSourceFile()
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/aho-corasick-1.1.3/src/packed/
H A Dpattern.rs209 pub(crate) struct Pattern<'a>(&'a [u8]); struct
211 impl<'a> fmt::Debug for Pattern<'a> { implementation
219 impl<'p> Pattern<'p> { impl
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/frameworks/native/headers/media_plugin/media/hardware/
H A DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/prebuilts/vndk/v31/arm/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/prebuilts/vndk/v34/x86_64/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/prebuilts/vndk/v31/x86/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/prebuilts/vndk/v32/x86_64/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/prebuilts/vndk/v34/arm64/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/prebuilts/vndk/v31/x86_64/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/prebuilts/vndk/v34/arm/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;
/aosp_15_r20/prebuilts/vndk/v33/arm/include/frameworks/native/headers/media_plugin/media/hardware/
DCryptoAPI.h58 struct Pattern { struct
61 uint32_t mEncryptBlocks;
65 uint32_t mSkipBlocks;

12345678910>>...41