Searched defs:stringInternStrategy (Results 1 - 3 of 3) sorted by relevance

/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DHDFDataFactory.java37 public HDFDataFactory(boolean ignoreAttributes, StringInternStrategy stringInternStrategy) { argument
38 this(NewHdfParser.newFactory(stringInternStrategy), ignoreAttributes);
H A DNewHdfParser.java162 private final StringInternStrategy stringInternStrategy; field in class:NewHdfParser.NewHdfParserFactory
164 public NewHdfParserFactory(StringInternStrategy stringInternStrategy) { argument
165 this.stringInternStrategy = stringInternStrategy;
170 return new NewHdfParser(stringInternStrategy);
178 * Provided {@code stringInternStrategy} instance will be used by shared all {@link Parser}
182 * @param stringInternStrategy - {@link StringInternStrategy} instance used to optimize the HDF
186 public static ParserFactory newFactory(StringInternStrategy stringInternStrategy) { argument
187 return new NewHdfParserFactory(stringInternStrategy);
/external/jsilver/src/com/google/clearsilver/jsilver/
H A DJSilverOptions.java52 private StringInternStrategy stringInternStrategy = new NoOpStringInternStrategy(); field in class:JSilverOptions
248 * @param stringInternStrategy - {@link StringInternStrategy} object
250 public void setStringInternStrategy(StringInternStrategy stringInternStrategy) { argument
251 if (stringInternStrategy == null) {
254 this.stringInternStrategy = stringInternStrategy;
266 return stringInternStrategy;

Completed in 96 milliseconds