Home
last modified time | relevance | path

Searched refs:makePublication (Results 1 – 3 of 3) sorted by relevance

/dports/converters/bibtexconv/bibtexconv-1.2.0/src/
H A Dgrammar.yy82 { $$ = makePublication("Comment", $1, NULL); free($1); }
84 { $$ = makePublication("Article", $4, $6); free($4); }
86 { $$ = makePublication("Book", $4, $6); free($4); }
88 { $$ = makePublication("Booklet", $4, $6); free($4); }
90 { $$ = makePublication("InBook", $4, $6); free($4); }
96 { $$ = makePublication("Manual", $4, $6); free($4); }
100 { $$ = makePublication("Misc", $4, $6); free($4); }
102 { $$ = makePublication("PhDThesis", $4, $6); free($4); }
104 { $$ = makePublication("TechReport", $4, $6); free($4); }
106 { $$ = makePublication("Proceedings", $4, $6); free($4); }
[all …]
H A Dnode.h57 struct Node* makePublication(const char* type, const char* label,
H A Dnode.cc291 Node* makePublication(const char* type, const char* label, Node* publicationInfo) in makePublication() function