Home
last modified time | relevance | path

Searched refs:Trail (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/llvm/test/YAMLParser/
H A Dspec-09-23.test12 # text
… # Trail
/llvm-project-15.0.7/clang/lib/AST/
H A DDeclCXX.cpp3118 auto *Trail = Result->getTrailingObjects<NamedDecl *>(); in CreateDeserialized() local
3120 new (Trail + I) NamedDecl*(nullptr); in CreateDeserialized()
3257 auto *Trail = Result->getTrailingObjects<BindingDecl *>(); in CreateDeserialized() local
3259 new (Trail + I) BindingDecl*(nullptr); in CreateDeserialized()
H A DExpr.cpp1147 uint32_t Trail = getCodeUnit(I + 1); in outputString() local
1148 if (Trail >= 0xdc00 && Trail <= 0xdfff) { in outputString()
1149 Char = 0x10000 + ((Char - 0xd800) << 10) + (Trail - 0xdc00); in outputString()