/aosp_15_r20/external/clang/lib/AST/ |
H A D | StmtProfile.cpp | 71 void StmtProfiler::VisitStmt(const Stmt *S) { in VisitStmt() 82 void StmtProfiler::VisitDeclStmt(const DeclStmt *S) { in VisitDeclStmt() 88 void StmtProfiler::VisitNullStmt(const NullStmt *S) { in VisitNullStmt() 92 void StmtProfiler::VisitCompoundStmt(const CompoundStmt *S) { in VisitCompoundStmt() 96 void StmtProfiler::VisitSwitchCase(const SwitchCase *S) { in VisitSwitchCase() 100 void StmtProfiler::VisitCaseStmt(const CaseStmt *S) { in VisitCaseStmt() 104 void StmtProfiler::VisitDefaultStmt(const DefaultStmt *S) { in VisitDefaultStmt() 108 void StmtProfiler::VisitLabelStmt(const LabelStmt *S) { in VisitLabelStmt() 113 void StmtProfiler::VisitAttributedStmt(const AttributedStmt *S) { in VisitAttributedStmt() 118 void StmtProfiler::VisitIfStmt(const IfStmt *S) { in VisitIfStmt() [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/merge/tests/ |
D | derive.rs | 16 struct S { in test_one_option_field() struct 17 field1: Option<usize>, in test_one_option_field() 20 impl S { in test_one_option_field() impl 21 pub fn new(field1: Option<usize>) -> S { in test_one_option_field() 35 struct S { in test_two_option_fields() struct 36 field1: Option<usize>, in test_two_option_fields() 37 field2: Option<usize>, in test_two_option_fields() 40 impl S { in test_two_option_fields() impl 41 pub fn new(field1: Option<usize>, field2: Option<usize>) -> S { in test_two_option_fields() 138 struct S { in test_skip_valid() struct [all …]
|
/aosp_15_r20/external/vixl/test/aarch64/ |
H A D | test-disasm-neon-aarch64.cc | 348 #define DISASM_INST(M, S) \ in TEST() argument 369 #define DISASM_INST(M, S) \ in TEST() argument 466 #define DISASM_INST(M, S) \ in TEST() argument 485 #define DISASM_INST(M, S) \ in TEST() argument 1480 #define DISASM_INST(M, S) \ in TEST() argument 1485 #define DISASM_INST(M, S) \ in TEST() argument 1490 #define DISASM_INST(M, S) \ in TEST() argument 1495 #define DISASM_INST(M, S) \ in TEST() argument 1500 #define DISASM_INST(M, S) \ in TEST() argument 1505 #define DISASM_INST(M, S) \ in TEST() argument [all …]
|
/aosp_15_r20/external/llvm/lib/DebugInfo/CodeView/ |
H A D | SymbolDumper.cpp | 62 DictScope S(W, "LocalVariableAddrRange"); in printLocalVariableAddrRange() local 73 ListScope S(W, "LocalVariableAddrGap"); in printLocalVariableAddrGap() local 89 DictScope S(W, "BlockStart"); in visitBlockSym() local 105 DictScope S(W, "Thunk32"); in visitThunk32Sym() local 117 DictScope S(W, "Trampoline"); in visitTrampolineSym() local 127 DictScope S(W, "Section"); in visitSectionSym() local 142 DictScope S(W, "COFF Group"); in visitCoffGroupSym() local 154 DictScope S(W, "BPRelativeSym"); in visitBPRelativeSym() local 163 DictScope S(W, "BuildInfo"); in visitBuildInfoSym() local 170 DictScope S(W, "CallSiteInfo"); in visitCallSiteInfoSym() local [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/regex-automata/src/ |
D | dense.rs | 178 fn repr(&self) -> &Repr<T, S> { in repr() argument 244 pub fn as_ref<'a>(&'a self) -> DenseDFA<&'a [S], S> { in as_ref() argument 270 pub fn to_owned(&self) -> DenseDFA<Vec<S>, S> { in to_owned() 329 pub fn to_sparse(&self) -> Result<SparseDFA<Vec<u8>, S>> { in to_sparse() argument 518 pub unsafe fn from_bytes(buf: &'a [u8]) -> DenseDFA<&'a [S], S> { in from_bytes() argument 535 fn repr_mut(&mut self) -> &mut Repr<Vec<S>, S> { in repr_mut() 550 fn start_state(&self) -> S { in start_state() 575 fn next_state(&self, current: S, input: u8) -> S { in next_state() 588 unsafe fn next_state_unchecked(&self, current: S, input: u8) -> S { in next_state_unchecked() 679 fn start_state(&self) -> S { in start_state() [all …]
|
D | sparse.rs | 187 pub(crate) fn from_dense_sized<T: AsRef<[S]>, A: StateID>( in from_dense_sized() 188 dfa: &dense::Repr<T, S>, in from_dense_sized() argument 198 pub fn as_ref<'a>(&'a self) -> SparseDFA<&'a [u8], S> { in as_ref() argument 217 pub fn to_owned(&self) -> SparseDFA<Vec<u8>, S> { in to_owned() argument 241 fn repr(&self) -> &Repr<T, S> { in repr() argument 410 pub unsafe fn from_bytes(buf: &'a [u8]) -> SparseDFA<&'a [u8], S> { in from_bytes() argument 419 fn start_state(&self) -> S { in start_state() 444 fn next_state(&self, current: S, input: u8) -> S { in next_state() 453 unsafe fn next_state_unchecked(&self, current: S, input: u8) -> S { in next_state_unchecked() 516 fn start_state(&self) -> S { in start_state() [all …]
|
/aosp_15_r20/external/clang/test/SemaTemplate/ |
H A D | instantiation-depth-defarg.cpp | 3 template<int N> struct S { struct 4 typedef typename S<N-1>::type type; argument 12 template<> struct S<0> { struct 16 // Incrementally instantiate up to S<2048>. argument 17 template struct S<128>; variable 18 template struct S<256>; variable 19 template struct S<384>; variable 20 template struct S<512>; variable 21 template struct S<640>; variable 22 template struct S<768>; variable [all …]
|
H A D | constexpr-instantiate.cpp | 48 template<int n> struct S { }; struct 62 template<typename T> struct S { static const int k; }; argument 71 template<typename T> struct S { struct 72 static volatile int &r; 95 template<typename T> struct S { struct 96 S() : n(0) {} in S() function 97 S(const S&) : n(T::error) {} in S() function 98 int n; 104 template<typename T> struct S { struct 105 constexpr S() : n(0) {} in S() function [all …]
|
/aosp_15_r20/external/clang/lib/Sema/ |
H A D | SemaDeclAttr.cpp | 181 static bool checkAttributeNumArgsImpl(Sema &S, const AttributeList &Attr, in checkAttributeNumArgsImpl() 194 static bool checkAttributeNumArgs(Sema &S, const AttributeList &Attr, in checkAttributeNumArgs() 203 static bool checkAttributeAtLeastNumArgs(Sema &S, const AttributeList &Attr, in checkAttributeAtLeastNumArgs() 212 static bool checkAttributeAtMostNumArgs(Sema &S, const AttributeList &Attr, in checkAttributeAtMostNumArgs() 221 static bool checkUInt32Argument(Sema &S, const AttributeList &Attr, in checkUInt32Argument() 251 static bool checkAttrMutualExclusion(Sema &S, Decl *D, SourceRange Range, in checkAttrMutualExclusion() 266 static bool checkFunctionOrMethodParameterIndex(Sema &S, const Decl *D, in checkFunctionOrMethodParameterIndex() 349 static void handleSimpleAttribute(Sema &S, Decl *D, in handleSimpleAttribute() 356 static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D, in handleSimpleAttributeWithExclusions() 365 static void handleSimpleAttributeWithExclusions(Sema &S, Decl *D, in handleSimpleAttributeWithExclusions() [all …]
|
/aosp_15_r20/external/clang/test/Parser/ |
H A D | cxx-ambig-init-templ.cpp | 7 struct S { struct 12 int k5 = T1 < b, &S::operator=(int); // expected-error {{extra qualification}} argument 16 int k9 = T3 < a < b, c >> (d), e5 = 1 > (e4); 17 int k10 = 0 < T3 < a < b, c >> (d 20 int k11 = 0 < 1, c<3>::*ptr; 21 int k12 = e < 0, int a<b<c>::* >(), e11; 47 static constexpr int (S::*f3_test)(int) = &S::f3; argument 78 template<int, int &(S::*)(int)> struct T2 { static const int val = 0; }; argument 101 struct S { struct 106 template<typename, typename> struct X { operator int(); }; [all …]
|
/aosp_15_r20/external/clang/test/CodeGenCXX/ |
H A D | mangle-local-classes-nested.cpp | 16 struct S { in L1() struct 17 void L2() { in L1() 19 struct S { in L1() struct 20 void L3a() {} in L1() 25 struct S { in L1() struct 26 void L3b() {} in L1() 35 struct S { in L1() struct 36 void L2() { in L1() 38 struct S { in L1() struct 39 void L3c() {} in L1() [all …]
|
H A D | bitfield.cpp | 12 struct __attribute__((packed)) S { struct 13 unsigned b00 : 14; 14 unsigned b01 : 2; 15 unsigned b20 : 6; 16 unsigned b21 : 2; 17 unsigned b30 : 30; 18 unsigned b31 : 2; 19 unsigned b70 : 6; 20 unsigned b71 : 2; 163 struct S { struct [all …]
|
/aosp_15_r20/external/clang/test/CodeGenObjC/ |
H A D | block-var-layout.m | 5 struct S { struct 6 int i1; 7 id o1; 11 } v1; 12 int i3; 13 id o3; 17 void x(id y) {} 18 void y(int a) {} 20 extern id opaque_id(); 45 // FIXME: do these really have to be named L_OBJC_CLASS_NAME_xxx? argument [all …]
|
/aosp_15_r20/external/lua/src/ |
H A D | lundump.c | 40 static l_noret error (LoadState *S, const char *why) { in error() 50 #define loadVector(S,b,n) loadBlock(S,b,(n)*sizeof((b)[0])) argument 52 static void loadBlock (LoadState *S, void *b, size_t size) { in loadBlock() 58 #define loadVar(S,x) loadVector(S,&x,1) argument 61 static lu_byte loadByte (LoadState *S) { in loadByte() 69 static size_t loadUnsigned (LoadState *S, size_t limit) { in loadUnsigned() 83 static size_t loadSize (LoadState *S) { in loadSize() 88 static int loadInt (LoadState *S) { in loadInt() 93 static lua_Number loadNumber (LoadState *S) { in loadNumber() 100 static lua_Integer loadInteger (LoadState *S) { in loadInteger() [all …]
|
/aosp_15_r20/external/libcxx/test/std/algorithms/alg.sorting/alg.merge/ |
H A D | inplace_merge.pass.cpp | 25 struct S { struct 26 S() : i_(0) {} in S() argument 27 S(int i) : i_(i) {} in S() function 29 S(const S& rhs) : i_(rhs.i_) {} in S() function 30 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; } in S() function 32 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; } in operator =() argument 33 S& operator =( S&& rhs) { i_ = rhs.i_; rhs.i_ = -2; assert(this != &rhs); return *this; } in operator =() argument 34 S& operator =(int i) { i_ = i; return *this; } in operator =() argument 36 bool operator <(const S& rhs) const { return i_ < rhs.i_; } in operator <() argument 37 bool operator ==(const S& rhs) const { return i_ == rhs.i_; } in operator ==() argument [all …]
|
H A D | inplace_merge_comp.pass.cpp | 35 struct S { struct 36 S() : i_(0) {} in S() function 37 S(int i) : i_(i) {} in S() argument 39 S(const S& rhs) : i_(rhs.i_) {} in S() argument 40 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; } in S() argument 42 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; } in operator =() argument 43 S& operator =( S&& rhs) { i_ = rhs.i_; rhs.i_ = -2; assert(this != &rhs); return *this; } in operator =() argument 44 S& operator =(int i) { i_ = i; return *this; } in operator =() argument 46 bool operator <(const S& rhs) const { return i_ < rhs.i_; } in operator <() argument 47 bool operator >(const S& rhs) const { return i_ > rhs.i_; } in operator >() argument [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.sorting/alg.merge/ |
H A D | inplace_merge.pass.cpp | 29 struct S { struct 30 S() : i_(0) {} in S() argument 31 S(int i) : i_(i) {} in S() argument 33 S(const S& rhs) : i_(rhs.i_) {} in S() argument 34 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; } in S() function 36 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; } in operator =() argument 37 S& operator =( S&& rhs) { i_ = rhs.i_; rhs.i_ = -2; assert(this != &rhs); return *this; } in operator =() argument 38 S& operator =(int i) { i_ = i; return *this; } in operator =() argument 40 bool operator <(const S& rhs) const { return i_ < rhs.i_; } in operator <() argument 41 bool operator ==(const S& rhs) const { return i_ == rhs.i_; } in operator ==() argument [all …]
|
H A D | inplace_merge_comp.pass.cpp | 34 struct S { struct 35 S() : i_(0) {} in S() argument 36 S(int i) : i_(i) {} in S() argument 38 S(const S& rhs) : i_(rhs.i_) {} in S() function 39 S( S&& rhs) : i_(rhs.i_) { rhs.i_ = -1; } in S() argument 41 S& operator =(const S& rhs) { i_ = rhs.i_; return *this; } in operator =() argument 42 S& operator =( S&& rhs) { i_ = rhs.i_; rhs.i_ = -2; assert(this != &rhs); return *this; } in operator =() argument 43 S& operator =(int i) { i_ = i; return *this; } in operator =() argument 45 bool operator <(const S& rhs) const { return i_ < rhs.i_; } in operator <() argument 46 bool operator >(const S& rhs) const { return i_ > rhs.i_; } in operator >() argument [all …]
|
/aosp_15_r20/external/rust/android-crates-io/crates/aho-corasick/src/ |
D | dfa.rs | 21 fn repr(&self) -> &Repr<S> { in repr() 50 pub fn start_state(&self) -> S { in start_state() 60 state_id: &mut S, in overlapping_find_at() 101 state_id: &mut S, in earliest_find_at() 147 fn repr(&self) -> &Repr<S> { in repr() 167 fn start_state(&self) -> S { in start_state() 185 id: S, in get_match() 196 fn next_state(&self, current: S, input: u8) -> S { in next_state() 206 fn repr(&self) -> &Repr<S> { in repr() 226 fn start_state(&self) -> S { in start_state() [all …]
|
/aosp_15_r20/external/cronet/third_party/libc++/src/test/std/algorithms/alg.sorting/alg.min.max/ |
H A D | ranges.max.pass.cpp | 87 struct S { int i; }; in test_2_arguments() argument 120 struct S { int check; int other; }; in test_2_arguments() struct 156 struct S { int i; }; in test_initializer_list() argument 163 struct S { int check; int other; }; in test_initializer_list() struct 169 struct S { int check; int other; }; in test_initializer_list() argument 243 struct S { int i; }; in test_range() argument 251 struct S { int check; int other; }; in test_range() argument 258 struct S { int check; int other; }; in test_range() struct
|
/aosp_15_r20/external/clang/test/SemaCXX/ |
H A D | lambda-expressions.cpp | 180 struct S : Ts { in local_class() struct 181 void f(Ts t) { in local_class() 185 Ts g() { return *this; }; in local_class() 257 struct S {}; struct 288 template<typename T> struct S { int a = 0; int b = a; }; argument 291 auto x = []{ struct S { int n, m = n; }; }; in __anon78dbb1944b02() argument 292 …auto y = [&]{ struct S { int n, m = n; }; }; // expected-error {{non-local lambda expression canno… in __anon78dbb1944c02() struct 293 void g() { auto z = [&]{ struct S { int n, m = n; }; }; } in __anon78dbb1944d02() argument 309 struct S { struct 311 int n = 0; [all …]
|
H A D | warn-unused-local-typedef.cpp | 3 struct S { struct 4 typedef int Foo; // no diag 123 struct S { in sneaky() struct 125 typedef int t; in sneaky() 129 typedef int s; in sneaky() 132 typedef int p; // expected-warning{{unused typedef 'p'}} in sneaky() 140 struct S { in static_sneaky() struct 141 typedef int t; in static_sneaky() 143 typedef int s; // expected-warning {{unused typedef 's'}} in static_sneaky() 151 struct S { in sneaky_with_friends() struct [all …]
|
/aosp_15_r20/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
H A D | RelocationResolver.cpp | 42 static uint64_t resolveX86_64(RelocationRef R, uint64_t S, uint64_t A) { in resolveX86_64() 71 static uint64_t resolveAArch64(RelocationRef R, uint64_t S, uint64_t A) { in resolveAArch64() 92 static uint64_t resolveBPF(RelocationRef R, uint64_t S, uint64_t A) { in resolveBPF() 115 static uint64_t resolveMips64(RelocationRef R, uint64_t S, uint64_t A) { in resolveMips64() 140 static uint64_t resolvePPC64(RelocationRef R, uint64_t S, uint64_t A) { in resolvePPC64() 161 static uint64_t resolveSystemZ(RelocationRef R, uint64_t S, uint64_t A) { in resolveSystemZ() 184 static uint64_t resolveSparc64(RelocationRef R, uint64_t S, uint64_t A) { in resolveSparc64() 206 static uint64_t resolveAmdgpu(RelocationRef R, uint64_t S, uint64_t A) { in resolveAmdgpu() 227 static uint64_t resolveX86(RelocationRef R, uint64_t S, uint64_t A) { in resolveX86() 244 static uint64_t resolvePPC32(RelocationRef R, uint64_t S, uint64_t A) { in resolvePPC32() [all …]
|
/aosp_15_r20/external/aws-sdk-java-v2/services/dynamodb/src/main/resources/codegen-resources/dynamodb/ |
H A D | examples-1.json | 12 "S": "No One You Know" string 15 "S": "Call Me Today" string 20 "S": "Acme Band" string 23 "S": "Happy Day" string 28 "S": "No One You Know" string 31 "S": "Scared of My Shadow" string 44 "S": "Somewhat Famous" string 49 "S": "Blue Sky Blues" string 54 "S": "Louder Than Ever" string 80 "S": "Somewhat Famous" string [all …]
|
/aosp_15_r20/external/clang/test/CodeGenObjCXX/ |
H A D | block-var-layout.mm | 9 struct S { struct 10 int i1; 11 id o1; 15 } v1; 16 int i3; 17 id o3; 21 void x(id y) {} 22 void y(int a) {} 24 extern id opaque_id(); 26 void f() { [all …]
|