Lines Matching refs:string

33 EntryPoint * ApiGen::findEntryByName(const std::string & name)  in findEntryByName()
53 int ApiGen::genProcTypes(const std::string &filename, SideType side) in genProcTypes()
97 int ApiGen::genFuncTable(const std::string &filename, SideType side) in genFuncTable()
129 int ApiGen::genContext(const std::string & filename, SideType side) in genContext()
190 int ApiGen::genEntryPoints(const std::string & filename, SideType side) in genEntryPoints()
268 int ApiGen::genOpcodes(const std::string &filename) in genOpcodes()
288 int ApiGen::genAttributesTemplate(const std::string &filename ) in genAttributesTemplate()
307 int ApiGen::genEncoderHeader(const std::string &filename) in genEncoderHeader()
316 std::string classname = m_basename + "_encoder_context_t"; in genEncoderHeader()
449 int ApiGen::genEncoderImpl(const std::string &filename) in genEncoderImpl()
462 std::string classname = m_basename + "_encoder_context_t"; in genEncoderImpl()
682 int ApiGen::genDecoderHeader(const std::string &filename) in genDecoderHeader()
691 std::string classname = m_basename + "_decoder_context_t"; in genDecoderHeader()
714 int ApiGen::genContextImpl(const std::string &filename, SideType side) in genContextImpl()
723 std::string classname = m_basename + "_" + sideString(side) + "_context_t"; in genContextImpl()
747 int ApiGen::genDecoderImpl(const std::string &filename) in genDecoderImpl()
757 std::string classname = m_basename + "_decoder_context_t"; in genDecoderImpl()
789 std::string printString = ""; in genDecoderImpl()
801 std::string totalTmpBuffOffset = "0"; in genDecoderImpl()
802 std::string *tmpBufOffset = new std::string[e->vars().size()]; in genDecoderImpl()
805 std::string retvalType; in genDecoderImpl()
829 std::string varoffset = "8"; // skip the header in genDecoderImpl()
877 totalTmpBuffOffset += std::string(tmpPtrName); in genDecoderImpl()
956 int ApiGen::readSpec(const std::string & filename) in readSpec()
968 if (ref.parse(lc, std::string(line))) { in readSpec()
977 int ApiGen::readAttributes(const std::string & attribFilename) in readAttributes()
994 std::string line(buf); in readAttributes()
1000 if (state == ST_ATT && (first == std::string::npos || first == 0)) state = ST_NAME; in readAttributes()
1031 int ApiGen::setGlobalAttribute(const std::string & line, size_t lc) in setGlobalAttribute()
1035 std::string token = getNextToken(line, pos, &last, WHITESPACE); in setGlobalAttribute()
1039 std::string str = getNextToken(line, pos, &last, WHITESPACE); in setGlobalAttribute()
1046 std::string str = getNextToken(line, pos, &last, WHITESPACE); in setGlobalAttribute()
1054 std::string str = getNextToken(line, pos, &last, WHITESPACE); in setGlobalAttribute()
1062 std::string str = getNextToken(line, pos, &last, WHITESPACE); in setGlobalAttribute()
1070 std::string str = getNextToken(line, pos, &last, WHITESPACE); in setGlobalAttribute()