OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AbbrevID
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Bitcode/
BitstreamReader.h
136
/// Record - This is a record with a specific
AbbrevID
.
157
static BitstreamEntry getRecord(unsigned
AbbrevID
) {
158
BitstreamEntry E; E.Kind = Record; E.ID =
AbbrevID
; return E;
472
/// SkipBlock - Having read the ENTER_SUBBLOCK
abbrevid
and a BlockID, skip
492
/// EnterSubBlock - Having read the ENTER_SUBBLOCK
abbrevid
, enter
534
/// getAbbrev - Return the abbreviation for the specified
AbbrevId
.
535
const BitCodeAbbrev *getAbbrev(unsigned
AbbrevID
) {
536
unsigned AbbrevNo =
AbbrevID
-bitc::FIRST_APPLICATION_ABBREV;
542
void skipRecord(unsigned
AbbrevID
);
544
unsigned readRecord(unsigned
AbbrevID
, SmallVectorImpl<uint64_t> &Vals
[
all
...]
/external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp
56
/// EnterSubBlock - Having read the ENTER_SUBBLOCK
abbrevid
, enter
136
void BitstreamCursor::skipRecord(unsigned
AbbrevID
) {
138
if (
AbbrevID
== bitc::UNABBREV_RECORD) {
147
const BitCodeAbbrev *Abbv = getAbbrev(
AbbrevID
);
194
unsigned BitstreamCursor::readRecord(unsigned
AbbrevID
,
197
if (
AbbrevID
== bitc::UNABBREV_RECORD) {
205
const BitCodeAbbrev *Abbv = getAbbrev(
AbbrevID
);
/external/clang/lib/Serialization/
ASTWriter.cpp
[
all
...]
Completed in 81 milliseconds