/external/flatbuffers/src/ |
idl_gen_fbs.cpp | 45 auto &schema = *_schema; local 46 schema += "namespace "; 49 if (it != name_space.components.begin()) schema += "."; 50 schema += *it; 52 schema += ";\n\n"; 55 // Generate a flatbuffer schema from the Parser's internal representation. 68 std::string schema; local 69 schema += "// Generated from " + file_name + ".proto\n\n"; 78 schema += "include \"" + basename + ".fbs\";\n"; 82 if (num_includes) schema += "\n" [all...] |
/external/libxml2/ |
testRelax.c | 60 xmlRelaxNGPtr schema = NULL; local 84 if (schema == NULL) { 107 schema = xmlRelaxNGParse(ctxt); 118 schema = xmlRelaxNGParse(ctxt); 121 if (schema == NULL) { 122 printf("Relax-NG schema %s failed to compile\n", argv[i]); 129 xmlRelaxNGDump(stdout, schema); 132 xmlRelaxNGDumpTree(stdout, schema); 145 ctxt = xmlRelaxNGNewValidCtxt(schema); 166 if (schema != NULL [all...] |
testSchemas.c | 2 * testSchemas.c : a small tester program for Schema validation 60 xmlSchemaPtr schema = NULL; local 80 if (schema == NULL) { 103 schema = xmlSchemaParse(ctxt); 114 schema = xmlSchemaParse(ctxt); 120 xmlSchemaDump(stdout, schema); 123 if (schema == NULL) 136 ctxt = xmlSchemaNewValidCtxt(schema); 157 if (schema != NULL) 158 xmlSchemaFree(schema); [all...] |
/frameworks/base/test-runner/src/android/test/ |
DatabaseTestUtils.java | 34 * Compares the schema of two databases and asserts that they are equal. 35 * @param expectedDb the db that is known to have the correct schema 36 * @param db the db whose schema should be checked 40 Set<String> schema = getSchemaSet(db); local 41 MoreAsserts.assertEquals(expectedSchema, schema);
|
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/ |
spirv_definition.h | 62 uint32_t schema; // NOTE: Reserved member in struct:spv_header_t
|
disassemble.cpp | 78 uint32_t schema); 140 uint32_t id_bound, uint32_t schema) { 159 << "; Schema: " << schema << "\n"; local 388 uint32_t schema) { 392 schema);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/ |
XMPMetaFactory.java | 31 private static XMPSchemaRegistry schema = new XMPSchemaRegistryImpl(); field in class:XMPMetaFactory 49 return schema; 241 * Resets the schema registry to its original state (creates a new one). 247 schema = new XMPSchemaRegistryImpl();
|
/hardware/interfaces/audio/2.0/vts/functional/utility/ |
ValidateXml.cpp | 99 "\nAgainst the schema: " + xsdFilePathExpr + 105 auto schema = make_xmlUnique(xmlSchemaParse(schemaParserCtxt.get())); local 106 if (schema == nullptr) { 107 return ::testing::AssertionFailure() << "Failed to parse schema (xsd)\n" 123 auto schemaCtxt = make_xmlUnique(xmlSchemaNewValidCtxt(schema.get()));
|
/external/libxml2/os400/ |
xmllintcl.c | 46 vary2 * schema; /* Schema file name or URL. */ member in struct:__anon24744 47 vary2 * schemakind; /* --schema/--relaxng/--schematron. */ 159 if (args->schema && args->schema->len) { 161 vary4vargquote(&cmd, args->schema);
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
ElementType.java | 17 This class represents an element type in the schema. 19 a flags vector, default attributes, and a schema to which it belongs. 20 @see Schema 33 private Schema theSchema; // schema to which this belongs 37 but it's better to use Schema.element() instead. 46 @param schema The schema with which this element type will be 50 public ElementType(String name, int model, int memberOf, int flags, Schema schema) { 164 public Schema schema() {return theSchema;} method in class:ElementType [all...] |
/external/wpa_supplicant_8/src/utils/ |
xml_libxml2.c | 60 xmlSchemaPtr schema; local 83 schema = xmlSchemaParse(pctx); 86 vctx = xmlSchemaNewValidCtxt(schema); 94 xmlSchemaFree(schema);
|
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/glslang/SPIRV/ |
disassemble.cpp | 108 // schema 109 unsigned int schema; member in class:spv::SpirvStream 141 // Reserved schema, must be 0 for now 142 schema = stream[word++]; 143 if (schema != 0) 144 Kill(out, "bad schema, must be 0");
|
/prebuilts/ndk/r13/sources/third_party/vulkan/glslang/SPIRV/ |
disassemble.cpp | 108 // schema 109 unsigned int schema; member in class:spv::SpirvStream 141 // Reserved schema, must be 0 for now 142 schema = stream[word++]; 143 if (schema != 0) 144 Kill(out, "bad schema, must be 0");
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
XSLTElementDef.java | 55 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, 66 schema.addAvailableElement(new QName(namespace, name)); 68 schema.addAvailableElement(new QName(namespace, nameAlias)); 84 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, 96 schema.addAvailableElement(new QName(namespace, name)); 98 schema.addAvailableElement(new QName(namespace, nameAlias)); 116 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, 121 this(schema, namespace, name, nameAlias, 142 XSLTElementDef(XSLTSchema schema, String namespace, String name, String nameAlias, 148 this(schema, namespace, name, nameAlias [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPNormalizer.java | 129 // make sure the DC schema is existing, because it might be needed within the normalization 133 // Do the special case fixes within each schema. 183 * @param dcSchema the DC schema node 320 // Find the base path, look for the base schema and root node. 325 // find or create schema 411 * Moves an alias node of array form to another schema into an array 412 * @param propertyIt the property iterator of the old schema (used to delete the property) 440 * @param exifSchema the EXIF schema node 497 // Delete empty schema nodes. Do this last, other cleanup can make empty 498 // schema 502 XMPNode schema = (XMPNode) it.next(); local [all...] |
XMPSerializerRDF.java | 365 XMPNode schema = (XMPNode) it.next(); local 366 declareUsedNamespaces(schema, usedPrefixes, 4); 373 XMPNode schema = (XMPNode) it.next(); local 374 allAreAttrs &= serializeCompactRDFAttrProps (schema, 3); 386 return; // ! Done if all properties in all schema are written as attributes. 389 // Write the remaining properties for each schema. 392 XMPNode schema = (XMPNode) it.next(); local 393 serializeCompactRDFElementProps (schema, 3); 766 * Serializes one schema with all contained properties in pretty-printed 768 * Each schema's properties are written in a separat [all...] |
XMPUtilsImpl.java | 64 * The schema namespace URI for the array. Must not be null or 153 * The schema namespace URI for the array. Must not be null or 394 * Optional schema namespace URI for the properties to be 405 * "named schema" case above. 417 // the named schema might not actually exist. So don't lookup the 418 // schema node. 422 throw new XMPException("Property name requires schema namespace", 439 // remove empty schema node 449 // Remove all properties from the named schema. Optionally include 451 // there might not be an actual schema node 495 XMPNode schema = (XMPNode) it.next(); local [all...] |
/prebuilts/devtools/tools/lib/ |
dvlib.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/22.9.2/ |
dvlib-22.9.2.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/23.0.1/ |
dvlib-23.0.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/23.0.2/ |
dvlib-23.0.2.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/23.1.0/ |
dvlib-23.1.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/23.1.3/ |
dvlib-23.1.3.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/23.1.4/ |
dvlib-23.1.4.jar | |
/prebuilts/gradle-plugin/com/android/tools/dvlib/23.2.0/ |
dvlib-23.2.0.jar | |