aboutsummaryrefslogtreecommitdiff
path: root/absl/debugging/internal/demangle_test.cc
Commit message (Expand)AuthorAgeFilesLines
* Demangle transaction-safety notations GTt and Dx.Chris Mihelich2024-06-071-0/+15
* Demangle C++11 user-defined literal operator functions.Chris Mihelich2024-06-061-0/+14
* Demangle C++20 constrained friend names, F (<source-name> | <operator-name>).Chris Mihelich2024-06-061-0/+28
* Demangle dependent GNU vector extension types, Dv <expression> _ <type>.Chris Mihelich2024-06-061-0/+60
* Demangle elaborated type names, (Ts | Tu | Te) <name>.Chris Mihelich2024-06-061-0/+24
* Demangle delete-expressions with the global-scope operator, gs (dl | da) ....Chris Mihelich2024-06-061-0/+60
* Demangle new-expressions with braced-init-lists.Chris Mihelich2024-06-061-0/+46
* Demangle array new-expressions, [gs] na ....Chris Mihelich2024-06-061-0/+64
* Demangle object new-expressions, [gs] nw ....Chris Mihelich2024-06-051-0/+80
* Demangle preincrement and predecrement, pp_... and mm_....Chris Mihelich2024-06-051-0/+60
* Demangle throw and rethrow (tw... and tr).Chris Mihelich2024-06-051-0/+30
* Demangle ti... and te... expressions (typeid).Chris Mihelich2024-06-051-0/+34
* Demangle nx... syntax for noexcept(e) as an expression in a dependent signature.Chris Mihelich2024-06-051-0/+15
* Demangle alignof expressions, at... and az....Chris Mihelich2024-06-051-0/+30
* Demangle C++17 structured bindings, DC...E.Chris Mihelich2024-06-051-0/+15
* Demangle modern _ZGR..._ symbols.Chris Mihelich2024-06-051-0/+20
* Demangle sizeof...(pack captured from an alias template), sP ... E.Chris Mihelich2024-06-041-0/+16
* Demangle types nested under vendor extended types.Chris Mihelich2024-06-041-0/+21
* Demangle il ... E syntax (braced list other than direct-list-initialization).Chris Mihelich2024-06-041-0/+60
* Avoid signed overflow for Ed <number> _ manglings with large <number>s.Chris Mihelich2024-06-041-0/+27
* Demangle constrained auto types (Dk <type-constraint>).Chris Mihelich2024-05-301-0/+10
* Parse <discriminator> more accurately.Chris Mihelich2024-05-301-0/+47
* Demangle lambdas in class member functions' default arguments.Chris Mihelich2024-05-301-0/+28
* Demangle unofficial <unresolved-qualifier-level> encodings like S0_IT_E.Chris Mihelich2024-05-291-0/+15
* Demangle Clang's last-resort notation _SUBSTPACK_.Chris Mihelich2024-05-291-0/+19
* Demangle C++ requires-expressions with parameters (rQ ... E).Chris Mihelich2024-05-291-0/+8
* Demangle Clang's encoding of __attribute__((enable_if(condition, "message"))).Chris Mihelich2024-05-291-0/+36
* Demangle static_cast and friends.Chris Mihelich2024-05-291-0/+70
* Demangle decltype(expr)::nested_type (NDT...E).Chris Mihelich2024-05-281-0/+16
* Demangle C++17 fold-expressions.Chris Mihelich2024-05-281-0/+59
* Demangle thread_local helper functions.Chris Mihelich2024-05-281-0/+10
* Demangle lambdas with explicit template arguments (UlTy and similar forms).Chris Mihelich2024-05-281-0/+42
* Demangle &-qualified function types.Chris Mihelich2024-05-281-0/+20
* Demangle valueless literals LDnE (nullptr) and LA<number>_<type>E ("foo").Chris Mihelich2024-05-281-0/+20
* Correctly demangle the <unresolved-name> at the end of dt and pt (x.y, x->y).Chris Mihelich2024-05-281-0/+8
* Demangle C++ requires-expressions without parameters (rq ... E).Chris Mihelich2024-05-241-0/+91
* Recognize C++ vendor extended expressions (e.g., u9__is_same...E).Chris Mihelich2024-05-241-0/+12
* Demangle the C++ this pointer (fpT).Chris Mihelich2024-05-231-0/+8
* Stop eating an extra E in ParseTemplateArg for some L<type><value>E literals.Chris Mihelich2024-05-231-0/+8
* Demangle C++ direct-list-initialization (T{1, 2, 3}, tl ... E).Chris Mihelich2024-05-231-0/+51
* Demangle the C++ spaceship operator (ss, operator<=>).Chris Mihelich2024-05-231-0/+22
* Demangle C++ sZ encodings (sizeof...(pack)).Chris Mihelich2024-05-231-0/+20
* Demangle C++ so ... E encodings (typically array-to-pointer decay).Chris Mihelich2024-05-231-0/+29
* Recognize some simple Rust mangled names in Demangle.Chris Mihelich2024-05-061-0/+9
* `demangle`: Parse template template and C++20 lambda template param substitut...Dino Radakovic2024-02-151-0/+30
* `demangle`: Parse optional single template argument for built-in typesDino Radakovic2024-02-131-0/+32
* `demangle`: Parse `requires` clauses on template params, before function retu...Dino Radakovic2024-02-091-0/+36
* `demangle`: Parse `requires` clauses on functionsDino Radakovic2024-02-091-0/+11
* `demangle`: Parse C++20-compatible template param declarations, except those ...Dino Radakovic2024-02-081-2/+41
* `demangle`: Implement parsing for simplest constrained template argumentsDino Radakovic2024-02-071-0/+33