HomeSort by relevance Sort by last modified time
    Searched refs:BlockID (Results 1 - 13 of 13) sorted by null

  /external/clang/lib/StaticAnalyzer/Core/
BlockCounter.cpp 26 unsigned BlockID;
30 : CallSite(CS), BlockID(ID) {}
33 return (CallSite == RHS.CallSite) && (BlockID == RHS.BlockID);
37 return (CallSite == RHS.CallSite) ? (BlockID < RHS.BlockID)
43 ID.AddInteger(BlockID);
60 unsigned BlockID) const {
62 CountMap::data_type* T = M.lookup(CountKey(CallSite, BlockID));
77 unsigned BlockID) {
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
BlockCounter.h 41 unsigned BlockID) const;
52 unsigned BlockID);
  /external/llvm/include/llvm/Bitcode/
BitstreamWriter.h 58 unsigned BlockID;
198 BlockInfo *getBlockInfo(unsigned BlockID) {
199 // Common case, the most recent entry matches BlockID.
200 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID)
205 if (BlockInfoRecords[i].BlockID == BlockID)
210 void EnterSubblock(unsigned BlockID, unsigned CodeLen) {
212 // [ENTER_SUBBLOCK, blockid, newcodelen, <align4bytes>, blocklen]
214 EmitVBR(BlockID, bitc::BlockIDWidth)
    [all...]
BitstreamReader.h 35 unsigned BlockID;
101 const BlockInfo *getBlockInfo(unsigned BlockID) const {
102 // Common case, the most recent entry matches BlockID.
103 if (!BlockInfoRecords.empty() && BlockInfoRecords.back().BlockID == BlockID)
108 if (BlockInfoRecords[i].BlockID == BlockID)
113 BlockInfo &getOrCreateBlockInfo(unsigned BlockID) {
114 if (const BlockInfo *BI = getBlockInfo(BlockID))
119 BlockInfoRecords.back().BlockID = BlockID
    [all...]
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 82 static const char *GetBlockName(unsigned BlockID,
85 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
86 if (BlockID == bitc::BLOCKINFO_BLOCK_ID)
93 StreamFile.getBlockInfo(BlockID)) {
101 switch (BlockID) {
117 static const char *GetCodeName(unsigned CodeID, unsigned BlockID,
120 if (BlockID < bitc::FIRST_APPLICATION_BLOCKID) {
121 if (BlockID == bitc::BLOCKINFO_BLOCK_ID) {
134 StreamFile.getBlockInfo(BlockID)) {
143 switch (BlockID) {
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 293 unsigned BlockID = 0;
295 BlockID, true);
309 switch (BlockID) {
341 unsigned BlockID = Stream.ReadSubBlockID();
342 if (BlockID == llvm::bitc::BLOCKINFO_BLOCK_ID) {
349 blockOrRecordID = BlockID;
  /external/clang/include/clang/Analysis/
CFG.h 327 /// BlockID - A numerical ID assigned to a CFGBlock during construction
329 unsigned BlockID;
352 explicit CFGBlock(unsigned blockid, BumpVectorContext &C, CFG *parent)
354 BlockID(blockid), Preds(C, 1), Succs(C, 1), HasNoReturnElement(false),
495 unsigned getBlockID() const { return BlockID; }
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 534 unsigned BlockID = Block->getBlockID();
536 if (SuccsVisited[BlockID] && SuccsVisited[BlockID] < Block->succ_size() &&
  /external/clang/include/clang/Serialization/
ASTReader.h     [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_3_0/
BitcodeReader.cpp     [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp     [all...]

Completed in 211 milliseconds