Home
last modified time | relevance | path

Searched refs:ignoreAttributes (Results 1 – 5 of 5) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/data/
DHDFDataFactory.java31 private final boolean ignoreAttributes; field in HDFDataFactory
33 public HDFDataFactory(boolean ignoreAttributes) { in HDFDataFactory() argument
34 this(ignoreAttributes, new NoOpStringInternStrategy()); in HDFDataFactory()
37 public HDFDataFactory(boolean ignoreAttributes, StringInternStrategy stringInternStrategy) { in HDFDataFactory() argument
38 this(NewHdfParser.newFactory(stringInternStrategy), ignoreAttributes); in HDFDataFactory()
41 public HDFDataFactory(ParserFactory hdfParserFactory, boolean ignoreAttributes) { in HDFDataFactory() argument
42 this.ignoreAttributes = ignoreAttributes; in HDFDataFactory()
64 }, resourceLoader, dataFileName, ignoreAttributes); in loadData()
DNewHdfParser.java105 final boolean ignoreAttributes; field in NewHdfParser.ParseState
115 boolean ignoreAttributes, HdfNameAttrs hdfNameAttrs, UniqueStack<String> includeStack) { in ParseState() argument
123 this.ignoreAttributes = ignoreAttributes; in ParseState()
130 String parsedFileName, boolean ignoreAttributes) { in createNewParseState() argument
139 hdfParser, parsedFileName, ignoreAttributes, new HdfNameAttrs(), includeStack); in createNewParseState()
146 originalState.parsedFileName, originalState.ignoreAttributes, new HdfNameAttrs(), in createParseStateForIncludedFile()
191 ResourceLoader resourceLoader, String dataFileName, boolean ignoreAttributes) in parse() argument
195 dataFileName, ignoreAttributes)); in parse()
373 if (state.ignoreAttributes) { in parseAttributes()
DParser.java57 String dataFileName, boolean ignoreAttributes) throws IOException; in parse() argument
DDefaultHdfParser.java36 ResourceLoader resourceLoader, String dataFileName, boolean ignoreAttributes) in parse() argument
/external/jsilver/src/com/google/clearsilver/jsilver/
DJSilverOptions.java40 private boolean ignoreAttributes = false; field in JSilverOptions
131 public JSilverOptions setIgnoreAttributes(boolean ignoreAttributes) { in setIgnoreAttributes() argument
132 this.ignoreAttributes = ignoreAttributes; in setIgnoreAttributes()
140 return ignoreAttributes; in getIgnoreAttributes()