/system/media/camera/docs/ |
D | metadata-validate | 28 schema=$thisdir/metadata_definitions.xsd 31 xmllint --noout --schema $schema $doc || exit 1
|
D | README.md | 15 * XML Lint - Validates XML against XSD schema.
|
/system/bt/gd/dumpsys/internal/test_data/ |
D | mkfiles | 1 ../../../../../out/host/linux-x86/bin/flatc -b --schema --cpp string.fbs 3 ../../../../../out/host/linux-x86/bin/flatc -b --schema --cpp integer.fbs 5 ../../../../../out/host/linux-x86/bin/flatc -b --schema --cpp float.fbs 7 ../../../../../out/host/linux-x86/bin/flatc -b --schema --cpp struct.fbs
|
/system/bt/gd/dumpsys/ |
D | filter.cc | 73 virtual void FilterTable(const reflection::Schema* schema, flatbuffers::Table* table){}; in FilterTable() argument 92 void FilterTable(const reflection::Schema* schema, flatbuffers::Table* table) override; 132 void UserPrivacyFilter::FilterTable(const reflection::Schema* schema, flatbuffers::Table* table) { in FilterTable() argument 133 if (schema == nullptr) { in FilterTable() 138 const reflection::Object* object = schema->root_table(); in FilterTable() 159 reflection_schema_.FindInReflectionSchema(schema->objects()->Get(index)->name()->str()); in FilterTable() 165 const flatbuffers::String* name = schema->objects()->Get(index)->name(); in FilterTable() 166 … const reflection::Object* sub_object = internal::FindReflectionObject(schema->objects(), name); in FilterTable()
|
D | Android.bp | 24 cmd: "$(location flatc) -I system/bt/gd -b --schema -o $(genDir) --cpp $(in) ", 46 cmd: "$(location flatc) -I system/bt/gd -b --schema -o $(genDir) --cpp $(in) ", 110 cmd: "$(location flatc) -I system/bt/gd -b --schema -o $(genDir) --cpp $(in) ",
|
D | bluetooth_flatbuffer_test.fbs | 1 // Bluetooth module test schema
|
/system/tools/xsdc/tests/resources/ |
D | unsupported_attribute.xsd | 1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" 5 </xs:schema>
|
D | unsupported_tag.xsd | 1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" 5 </xs:schema>
|
/system/tools/xsdc/tests/resources/reference/ |
D | reference.xsd | 1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="reference" 12 </xs:schema>
|
/system/extras/libjsonpb/ |
D | README.md | 17 - If the Protobuf schema uses 64-bit integers (`(s|fixed|u|)int64`): 24 - If the Protobuf schema uses special floating point values: 56 - Whether there are fields unknown to the schema. All fields in the JSON file 57 must be well defined in the schema. 76 ## Defining a JSON schema using Protobuf 79 before defining a Protobuf object as a JSON schema. In general: 83 - JSON numbers should be `(s|fixed|u|)int32`, `float`, or `double` in the schema 94 - Don't use `Any`; it defeats the purpose of having the schema.
|
/system/tools/xsdc/tests/resources/group/ |
D | group.xsd | 1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="attr_group_simple" elementF… 18 </xs:schema>
|
/system/tools/xsdc/tests/resources/attr_group_simple/ |
D | attr_group_simple.xsd | 1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="attr_group_simple" elementF… 18 </xs:schema>
|
/system/tools/xsdc/tests/resources/nested_type/ |
D | nested_type.xsd | 1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="nested_type" elementFormDef… 36 </xs:schema>
|
/system/bt/gd/dumpsys/bundler/ |
D | bundler.cc | 98 const reflection::Schema* schema = reflection::GetSchema(raw_schema.data()); in CreateBinarySchemaBundle() local 99 if (schema->root_table() == nullptr) { in CreateBinarySchemaBundle() 104 bundled_names->push_back(schema->root_table()->name()->str()); in CreateBinarySchemaBundle() 105 auto name = builder->CreateString(schema->root_table()->name()->str()); in CreateBinarySchemaBundle() 110 fprintf(stdout, "Bundled binary schema file:%s\n", schema->root_table()->name()->c_str()); in CreateBinarySchemaBundle()
|
D | bundler.fbs | 3 // Describes a collection of binary flatbuffer schema.
|
D | Android.bp | 22 cmd: "$(location flatc) -I system/bt/gd -b --schema -o $(genDir) --cpp $(in) ",
|
/system/bt/gd/ |
D | dumpsys_data.fbs | 1 // Top level module dumpsys data schema
|
/system/bt/gd/shim/ |
D | dumpsys.cc | 96 const reflection::Schema* schema = reflection_schema_.FindInReflectionSchema(root_name); in PrintAsJson() local 97 if (schema == nullptr) { in PrintAsJson() 105 if (!parser.Deserialize(schema)) { in PrintAsJson()
|
/system/tools/xsdc/ |
D | README.md | 6 for the schema of a xml file used between the system and vendor partition. 10 Add the schema (attribute, element or new complexType …) you want to add to the 76 After adding “Deprecated” annotation, we need to update the api or schema just 92 "xsd:schema" [
|
/system/tools/xsdc/tests/resources/simple_type/ |
D | simple_type.xsd | 1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" targetNamespa… 55 </xs:schema>
|
/system/chre/platform/shared/idl/ |
D | README.md | 1 This folder contains FlatBuffers schema used in the communications protocol
|
/system/tools/xsdc/tests/resources/simple_complex_content/ |
D | simple_complex_content.xsd | 1 <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="simple_complex_content" xml… 69 </xs:schema>
|
/system/tools/aidl/ |
D | aidl_language.cpp | 134 for (const Schema& schema : AllSchemas()) { in TypeToString() local 135 if (type == schema.type) return schema.name; in TypeToString() 144 const Schema* schema = nullptr; in Parse() local 147 schema = &a_schema; in Parse() 151 if (schema == nullptr) { in Parse() 163 return new AidlAnnotation(location, *schema, {}); in Parse() 166 return new AidlAnnotation(location, *schema, std::move(*parameter_list)); in Parse() 170 const AidlLocation& location, const Schema& schema, in AidlAnnotation() argument 172 : AidlNode(location), schema_(schema), parameters_(std::move(parameters)) {} in AidlAnnotation()
|
/system/extras/libjsonpb/verify/ |
D | Android.bp | 16 // using Protobuf as schema for JSON files. The reason is that the JSON parser that
|
/system/update_engine/fuzz/ |
D | xml.dict | 104 string_schema=":schema"
|