Home
last modified time | relevance | path

Searched refs:CData (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
H A DContainerModeling.cpp128 const ContainerData &CData);
226 const auto CData = Cont.second; in checkLiveSymbols() local
227 if (CData.getBegin()) { in checkLiveSymbols()
228 SR.markLive(CData.getBegin()); in checkLiveSymbols()
229 if(const auto *SIE = dyn_cast<SymIntExpr>(CData.getBegin())) in checkLiveSymbols()
232 if (CData.getEnd()) { in checkLiveSymbols()
233 SR.markLive(CData.getEnd()); in checkLiveSymbols()
234 if(const auto *SIE = dyn_cast<SymIntExpr>(CData.getEnd())) in checkLiveSymbols()
314 const auto CData = getContainerData(State, ContReg); in handleAssignment() local
315 if (CData) { in handleAssignment()
[all …]
H A DIteratorRangeChecker.cpp307 const auto *CData = getContainerData(State, Cont); in isPastTheEnd() local
308 if (!CData) in isPastTheEnd()
311 const auto End = CData->getEnd(); in isPastTheEnd()
323 const auto *CData = getContainerData(State, Cont); in isAheadOfRange() local
324 if (!CData) in isAheadOfRange()
327 const auto Beg = CData->getBegin(); in isAheadOfRange()
339 const auto *CData = getContainerData(State, Cont); in isBehindPastTheEnd() local
340 if (!CData) in isBehindPastTheEnd()
343 const auto End = CData->getEnd(); in isBehindPastTheEnd()
/netbsd-src/external/gpl3/gcc/dist/libphobos/src/std/
H A Dxml.d677 CData[] cdatas; // The element's CData items
747 void opOpAssign(string op)(CData item) @safe pure
823 xml.onCData = (string s) { opOpAssign!("~")(new CData(s)); }; in parse()
1336 class CData : Item
1373 const t = cast(const CData) item; in opEquals()
1392 const t = cast(const CData) item; in opCmp()
/netbsd-src/external/gpl3/gcc.old/dist/libphobos/src/std/
H A Dxml.d674 CData[] cdatas; /// The element's CData items
743 void opCatAssign(CData item) @safe pure in opCatAssign()
815 xml.onCData = (string s) { opCatAssign(new CData(s)); }; in parse()
1327 class CData : Item
1364 const t = cast(const CData) item; in opEquals()
1383 const t = cast(const CData) item; in opCmp()