HomeSort by relevance Sort by last modified time
    Searched full:hdf (Results 26 - 50 of 75) sorted by null

12 3

  /docs/source.android.com/
Android.mk 15 -hdf android.whichdoc online \
16 -hdf sac true
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
HDFDataFactory.java 27 * Loads data in Hierarchical Data Format (HDF) into Data objects.
61 throw new JSilverBadSyntaxException("HDF parsing error : '" + errorMessage + "'",
Parser.java 25 * Parses data in HierachicalDataFormat (HDF), generating callbacks for data encountered in the
53 * @param ignoreAttributes whether to store parsed HDF attributes in the Data object or not.
ChainedData.java 26 * order for a value before giving up. Behaves like local HDF and global HDF in the JNI
37 // This mode allows developers to locate occurrences where they set the same HDF
100 // style of VariableLocator that does not iteratively ask for each HDF path element
TypeConverter.java 56 * HDF values. JSilver uses the same code for both cases.
58 * In ClearSilver HDF: Numbers are parsed sequentially and partial results are returned when an
61 * Additionally, ClearSilver doesn't do hex in HDF values, so {@code "a.b=0x123"} will just
69 * In JSilver: Positive hex values are supported for both HDF and templates but negative values
NewHdfParser.java 29 * Parser for HDF based on the following grammar by Brandon Long.
51 * Object used to hold the name and attributes of an HDF node before we are ready to commit it to
155 * @param internPool - {@link StringInternStrategy} instance used to optimize the HDF parsing.
179 * objects created by the factory and used to optimize the HDF parsing process by reusing the
182 * @param stringInternStrategy - {@link StringInternStrategy} instance used to optimize the HDF
282 reportError(state, "Invalid HDF name");
295 reportError(state, "Invalid HDF name");
325 * This method parses out an HDF element name and any optional attributes into a caller-supplied
332 reportError(state, "Invalid HDF name");
348 * Parses a valid hdf path name
    [all...]
NestedMapData.java 30 * This is the JSilver equivalent to ClearSilver's HDF object.
62 // Holds the attributes for this HDF node.
155 * Returns the name of this HDF node. The root node has no name, so calling this on the root node
187 * Returns the value of this HDF node, or null if this node has no value. Every node in the tree
313 * Retrieves the HDF object that is the root of the subtree at hdfpath, create the subtree if it
462 * Write out the String representation of this HDF node.
DefaultHdfParser.java 28 * Parses data in HierachicalDataFormat (HDF), generating callbacks for data encountered in the
78 errorHandler.error(lineReader.getLineNumber(), line, dataFileName, "Bad HDF syntax");
DefaultDataContext.java 26 * Data objects that hold local variables. By definition, local variables are limited to single HDF
  /external/jsilver/src/com/google/clearsilver/jsilver/
JSilverOptions.java 47 * A pool of strings used to optimize HDF parsing.
125 * If set, then HDF attributes in HDF files will be ignored and not stored in the Data object
126 * filled by the parser. Default is {@code false}. Many applications use HDF attributes only in
129 * for storing HDF structures read from files.
211 * by setting appropriate HDF variables before loading a template. If Config.AutoEscape is 1, auto
243 * Sets the {@link StringInternStrategy} object that will be used to optimize HDF parsing.
258 * Returns {@link StringInternStrategy} object that is used for optimization of HDF parsing.
322 * Use this method to disable wrapping the global HDF with an UnmodifiableData object which
334 * @param allowGlobalDataModification {@code true} if you want to avoid wrapping the global HDF s
    [all...]
JSilver.java 110 * @param defaultResourceLoader Where resources (templates, HDF files) should be loaded from. e.g.
216 * @param defaultResourceLoader Where resources (templates, HDF files) should be loaded from. e.g.
230 * @param defaultResourceLoader Where resources (templates, HDF files) should be loaded from. e.g.
363 * Determine the escaping to apply based on Config variables in HDF. If there is no escaping
364 * specified in the HDF, check whether JSilverOptions has any escaping configured.
366 * @param data HDF Data to check
422 * Loads data in Hierarchical Data Format (HDF) into an existing Data object.
431 * Loads data in Hierarchical Data Format (HDF) into a new Data object.
454 * Returns the TemplateLoader used by this JSilver template renderer. Needed for HDF/CS
  /external/jsilver/src/org/clearsilver/
FactoryLoader.java 26 * This class holds static methods for getting and setting the CS and HDF
30 * need to create {@link HDF} and {@link CS} instances.
51 // applications to subclass the CS and HDF objects used in Java Clearsilver
  /build/tools/droiddoc/test/stubs/
func.sh 49 -hdf page.build MAIN-eng.joeo.20080710.121320 -hdf page.now "10 Jul 2008 12:13" \
  /external/doclava/src/com/google/doclava/
ClearPage.java 120 data.setValue("hdf.loadpaths." + i, dir);
126 data.setValue("hdf.loadpaths." + i, dir);
130 data.setValue("hdf.loadpaths." + i, "templates");
Doclava.java 161 } else if (a[0].equals("-hdf")) {
519 if (option.equals("-hdf")) {
899 Data hdf = Doclava.makeHDF(); local
903 // Get each line to add the key-value to hdf
915 hdf.setValue(key, value);
922 // Insert the goods into HDF data (title, link, tags, type)
923 String title = hdf.getValue("page.title", "");
935 String tagList = hdf.getValue("page.tags", "");
954 !hdf.getBooleanValue("excludeFromSuggestions")) {
    [all...]
DoclavaDiff.java 76 * Creates an HDF with this structure:
  /external/doclava/
build.xml 99 -hdf project.name "Junction"
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverBadSyntaxException.java 20 * Thrown when resource (e.g. template or HDF) contains bad syntax.
  /external/genext2fs/
device_table.txt 44 #/dev/hdf b 640 0 0 33 64 0 0 -
45 #/dev/hdf b 640 0 0 33 65 1 1 15
  /external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
EscapeMode.java 53 * to the Config.AutoEscape HDF variable.
  /build/core/
droiddoc.mk 131 $(full_target): PRIVATE_CURRENT_BUILD := -hdf page.build $(BUILD_ID)-$(BUILD_NUMBER)
132 $(full_target): PRIVATE_CURRENT_TIME := -hdf page.now "$(shell date "+%d %b %Y %k:%M")"
  /frameworks/base/
Android.mk 566 -hdf android.hasSamples 1 \
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/values/
Value.java 28 * external data structures such as HDF).
  /external/libvpx/libvpx/examples/includes/geshi/geshi/
matlab.php 99 'griddata','gsvd','gtext','hadamard','hankel','hdf','helpdlg',
  /prebuilts/tools/common/m2/repository/com/google/jsilver/jsilver/1.0.0/
jsilver-1.0.0.pom 311 -hdf project.name "${project.name}"

Completed in 444 milliseconds

12 3