Searched refs:Genre (Results 1 - 25 of 37) sorted by relevance

12

/opengrok-jel/src/org/opensolaris/opengrok/analysis/archive/
H A DTarAnalyzerFactory.java28 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
37 super(null, SUFFIXES, null, null, null, Genre.XREFABLE);
H A DGZIPAnalyzer.java48 private Genre g;
50 public Genre getGenre() {
73 this.g = Genre.DATA;
76 if (fa.getGenre() == Genre.PLAIN || fa.getGenre() == Genre.XREFABLE) {
77 this.g = Genre.XREFABLE;
79 this.g = Genre.DATA;
84 if (g == Genre.XREFABLE) {
108 if ((fa != null) && (fa.getGenre() == Genre.PLAIN || fa.getGenre() == Genre
[all...]
H A DBZip2Analyzer.java46 private Genre g;
49 public Genre getGenre() {
81 if(fa.getGenre() == Genre.PLAIN || fa.getGenre() == Genre.XREFABLE) {
82 this.g = Genre.XREFABLE;
84 this.g = Genre.DATA;
89 if (g == Genre.XREFABLE) {
112 if ((fa != null) && (fa.getGenre() == Genre.PLAIN || fa.getGenre() == Genre.XREFABLE)) {
/opengrok-jel/src/org/opensolaris/opengrok/analysis/data/
H A DImageAnalyzerFactory.java28 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
40 super(null, SUFFIXES, null, null, null, Genre.IMAGE);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/executables/
H A DELFAnalyzerFactory.java28 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
37 super(null, null, MAGICS, null, null, Genre.XREFABLE);
H A DJarAnalyzerFactory.java28 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
41 super(null, SUFFIXES, null, null, null, Genre.XREFABLE);
H A DJavaClassAnalyzerFactory.java28 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
42 super(null, SUFFIXES, MAGICS, null, null, Genre.XREFABLE);
/opengrok-jel/src/org/opensolaris/opengrok/web/
H A DDiffData.java26 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
44 public Genre genre;
/opengrok-jel/src/org/opensolaris/opengrok/analysis/
H A DXrefHeader.java33 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
53 private Genre genre;
60 * @see XrefHeader#XrefHeader(Genre, boolean)
62 public XrefHeader(Genre genre) {
71 * @see XrefHeader#XrefHeader(Genre, boolean, int, long)
73 public XrefHeader(Genre genre, boolean compressed) {
86 public XrefHeader(Genre genre, boolean compressed, int lines, long chars) {
138 Genre[] values = Genre.values();
227 public Genre getGenr
[all...]
H A DFileAnalyzer.java65 public static enum Genre { enum in class:FileAnalyzer
78 private Genre(String typename) { method in class:FileAnalyzer.Genre
91 * Get the Genre for the given type name.
96 public static Genre get(String typeName) {
100 for (Genre g : values()) {
143 public Genre getGenre() {
H A DFileAnalyzerFactory.java32 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
59 private final Genre genre;
78 * Genre.DATA} is used)
83 Genre genre) {
94 this.genre = (genre == null) ? Genre.DATA : genre;
164 public final Genre getGenre() {
H A DXrefWriter.java38 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
61 public XrefWriter(String name, Genre genre) throws IOException {
73 public XrefWriter(String name, Genre genre, boolean compress) throws IOException {
85 public XrefWriter(File file, Genre genre) throws IOException {
126 public XrefWriter(File file, Genre genre, boolean compress) throws IOException {
/opengrok-jel/src/org/opensolaris/opengrok/analysis/c/
H A DCAnalyzerFactory.java31 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
53 super(null, SUFFIXES, null, null, "text/plain", Genre.PLAIN);
H A DCxxAnalyzerFactory.java30 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
49 super(null, SUFFIXES, null, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/csharp/
H A DCSharpAnalyzerFactory.java32 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
47 super(null, SUFFIXES, MAGICS, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/document/
H A DTroffAnalyzerFactory.java31 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
43 super(null, null, MAGICS, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/fortran/
H A DFortranAnalyzerFactory.java30 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
44 super(null, SUFFIXES, null, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/java/
H A DJavaAnalyzerFactory.java31 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
47 super(null, SUFFIXES, MAGICS, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/javascript/
H A DJavaScriptAnalyzerFactory.java31 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
46 super(null, SUFFIXES, MAGICS, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/lisp/
H A DLispAnalyzerFactory.java31 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
46 super(null, SUFFIXES, null, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/perl/
H A DPerlAnalyzerFactory.java31 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
56 super(null, SUFFIXES, MAGICS, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/php/
H A DPhpAnalyzerFactory.java27 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
49 super(null, SUFFIXES, MAGICS, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/plain/
H A DXMLAnalyzerFactory.java31 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
49 super(null, SUFFIXES, MAGICS, null, "text/html", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/python/
H A DPythonAnalyzerFactory.java31 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
56 super(null, SUFFIXES, MAGICS, null, "text/plain", Genre.PLAIN);
/opengrok-jel/src/org/opensolaris/opengrok/analysis/sh/
H A DShAnalyzerFactory.java30 import org.opensolaris.opengrok.analysis.FileAnalyzer.Genre;
73 super(NAMES, SUFFIXES, MAGICS, null, "text/plain", Genre.PLAIN);

Completed in 2397 milliseconds

12