OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ignoreAttributes
(Results
1 - 5
of
5
) sorted by null
/external/jsilver/src/com/google/clearsilver/jsilver/data/
HDFDataFactory.java
31
private final boolean
ignoreAttributes
;
33
public HDFDataFactory(boolean
ignoreAttributes
) {
34
this(
ignoreAttributes
, new NoOpStringInternStrategy());
37
public HDFDataFactory(boolean
ignoreAttributes
, StringInternStrategy stringInternStrategy) {
38
this(NewHdfParser.newFactory(stringInternStrategy),
ignoreAttributes
);
41
public HDFDataFactory(ParserFactory hdfParserFactory, boolean
ignoreAttributes
) {
42
this.
ignoreAttributes
=
ignoreAttributes
;
64
}, resourceLoader, dataFileName,
ignoreAttributes
);
Parser.java
53
* @param
ignoreAttributes
whether to store parsed HDF attributes in the Data object or not.
57
String dataFileName, boolean
ignoreAttributes
) throws IOException;
NewHdfParser.java
105
final boolean
ignoreAttributes
;
115
boolean
ignoreAttributes
, HdfNameAttrs hdfNameAttrs, UniqueStack<String> includeStack) {
123
this.
ignoreAttributes
=
ignoreAttributes
;
130
String parsedFileName, boolean
ignoreAttributes
) {
139
hdfParser, parsedFileName,
ignoreAttributes
, new HdfNameAttrs(), includeStack);
146
originalState.parsedFileName, originalState.
ignoreAttributes
, new HdfNameAttrs(),
191
ResourceLoader resourceLoader, String dataFileName, boolean
ignoreAttributes
)
195
dataFileName,
ignoreAttributes
));
373
if (state.
ignoreAttributes
) {
[
all
...]
DefaultHdfParser.java
36
ResourceLoader resourceLoader, String dataFileName, boolean
ignoreAttributes
)
/external/jsilver/src/com/google/clearsilver/jsilver/
JSilverOptions.java
40
private boolean
ignoreAttributes
= false;
131
public JSilverOptions setIgnoreAttributes(boolean
ignoreAttributes
) {
132
this.
ignoreAttributes
=
ignoreAttributes
;
140
return
ignoreAttributes
;
Completed in 1699 milliseconds