The vhdljjparser.h
File Reference
Included Headers
#include <vector>
#include <memory>
#include <string>
#include "parserintf.h"
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <ctype.h>
#include "types.h"
#include "entry.h"
#include "vhdldocgen.h"
#include "config.h"
#include "util.h"
Classes Index
class | VHDLOutlineParser |
VHDL parser using state-based lexical scanning. More... | |
Enumerations Index
enum class | VhdlSection { ... } |
Functions Index
const EntryList & | getVhdlInstList () |
QCString | filter2008VhdlComment (const QCString &s) |
Enumerations
VhdlSection
| strong |
Definition at line 20 of file vhdljjparser.h.
20enum class VhdlSection { UNKNOWN = 0, GEN_SEC=0x1, PARAM_SEC,CONTEXT_SEC,PROTECTED_SEC } ;
Functions
filter2008VhdlComment()
|
Declaration at line 78 of file vhdljjparser.h, definition at line 868 of file vhdljjparser.cpp.
868QCString filter2008VhdlComment(const QCString &s)
869{
870 if (s.length()<4) return s;
871 GrowBuf growBuf;
872 const char *p=s.data()+3; // skip /*!
873 char c='\0';
874 while (*p == ' ' || *p == '\t') p++;
875 while ((c=*p++))
876 {
877 growBuf.addChar(c);
878 if (c == '\n')
879 {
880 // special handling of space followed by * at beginning of line
881 while (*p == ' ' || *p == '\t') p++;
882 while (*p == '*') p++;
883 // special attention in case character at end is /
884 if (*p == '/') p++;
885 }
886 }
887 // special attention in case */ at end of last line
888 size_t len = growBuf.getPos();
890 {
891 len -= 2;
892 while (len>0 && growBuf.at(len-1) == '*') len--;
893 while (len>0 && ((c = growBuf.at(len-1)) == ' ' || c == '\t')) len--;
894 growBuf.setPos(len);
895 }
896 growBuf.addChar(0);
897 return growBuf.get();
898}
References GrowBuf::addChar, GrowBuf::at, QCString::data, GrowBuf::get, GrowBuf::getPos, QCString::length and GrowBuf::setPos.
getVhdlInstList()
|
Declaration at line 76 of file vhdljjparser.h, definition at line 845 of file vhdljjparser.cpp.
Reference g_instFiles.
Referenced by VhdlDocGen::computeVhdlComponentRelations.
Generated via doxygen2docusaurus by Doxygen 1.14.0.