/external/python/google-api-python-client/googleapiclient/ |
D | schema.py | 15 """Schema processing for discovery based APIs 17 Schemas holds an APIs discovery schemas. It can return those schema as 19 conform to the schema. 21 For example, given the schema: 23 schema = \"\"\"{ 45 s = Schemas(schema) 57 The constructor takes a discovery document in which to look up named schema. 79 out the named schema. 88 """Get pretty printed object prototype from the schema name. 91 name: string, Name of schema in the discovery document. [all …]
|
/external/python/google-api-python-client/docs/dyn/ |
D | discovery_v1.apis.html | 105 …"properties": { # If this is a schema for an object, list the schema for each property of this obj… 106 …"a_key": # Object with schema name: JsonSchema # A single property of this object. The value is it… 109 …g", # The value type for this schema. A list of values can be found here: http://tools.ietf.org/ht… 111 …n the value. For more details see: http://tools.ietf.org/html/draft-zyp-json-schema-03#section-5.23 113 …"items": # Object with schema name: JsonSchema # If this is a schema for an array, this property i… 117 … interpret the entire entity. Its value must exist in a map of descriminant values to schema names. 118 "map": [ # The map of discriminant value to schema to use for parsing.. 127 "id": "A String", # Unique identifier for this schema. 135 …ionalProperties": # Object with schema name: JsonSchema # If this is a schema for an object, this … 142 …$ref": "A String", # A reference to another schema. The value of this property is the "id" of anot… [all …]
|
D | admin_directory_v1.schemas.html | 79 <p class="firstline">Delete schema</p> 82 <p class="firstline">Retrieve schema</p> 85 <p class="firstline">Create schema.</p> 91 <p class="firstline">Update schema. This method supports patch semantics.</p> 94 <p class="firstline">Update schema</p> 98 <pre>Delete schema 102 schemaKey: string, Name or immutable Id of the schema (required) 108 <pre>Retrieve schema 112 schemaKey: string, Name or immutable Id of the schema (required) 117 { # JSON template for Schema resource in Directory API. [all …]
|
D | tagmanager_v2.accounts.containers.workspaces.triggers.html | 111 # Object with schema name: Parameter 114 # Object with schema name: Parameter 127 # Object with schema name: Parameter 130 # Object with schema name: Parameter 143 # Object with schema name: Parameter 146 # Object with schema name: Parameter 159 # Object with schema name: Parameter 162 # Object with schema name: Parameter 175 # Object with schema name: Parameter 178 # Object with schema name: Parameter [all …]
|
D | androidenterprise_v1.managedconfigurationsfordevice.html | 118 …he app's developer would have defined configurable properties in the managed configurations schema. 121 …ions schema of the product. Exactly one of the value fields must be populated, and it must match t… 131 # Object with schema name: ManagedProperty 137 # Object with schema name: ManagedProperty 162 …he app's developer would have defined configurable properties in the managed configurations schema. 165 …ions schema of the product. Exactly one of the value fields must be populated, and it must match t… 175 # Object with schema name: ManagedProperty 181 # Object with schema name: ManagedProperty 205 …he app's developer would have defined configurable properties in the managed configurations schema. 208 …ions schema of the product. Exactly one of the value fields must be populated, and it must match t… [all …]
|
D | androidenterprise_v1.managedconfigurationsforuser.html | 116 …he app's developer would have defined configurable properties in the managed configurations schema. 119 …ions schema of the product. Exactly one of the value fields must be populated, and it must match t… 129 # Object with schema name: ManagedProperty 135 # Object with schema name: ManagedProperty 159 …he app's developer would have defined configurable properties in the managed configurations schema. 162 …ions schema of the product. Exactly one of the value fields must be populated, and it must match t… 172 # Object with schema name: ManagedProperty 178 # Object with schema name: ManagedProperty 201 …he app's developer would have defined configurable properties in the managed configurations schema. 204 …ions schema of the product. Exactly one of the value fields must be populated, and it must match t… [all …]
|
D | tagmanager_v1.accounts.containers.triggers.html | 114 # Object with schema name: Parameter 117 # Object with schema name: Parameter 133 # Object with schema name: Parameter 136 # Object with schema name: Parameter 149 # Object with schema name: Parameter 152 # Object with schema name: Parameter 165 # Object with schema name: Parameter 168 # Object with schema name: Parameter 183 # Object with schema name: Parameter 186 # Object with schema name: Parameter [all …]
|
/external/clang/test/Index/ |
D | comment-xml-schema.c | 3 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 5 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 6 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 7 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 8 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 9 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 10 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 11 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 12 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… 13 // RUN: xmllint --noout --relaxng %S/../../bindings/xml/comment-xml-schema.rng %S/Inputs/CommentXML… [all …]
|
/external/flatbuffers/src/ |
D | idl_gen_fbs.cpp | 46 auto &schema = *_schema; in GenNameSpace() local 47 schema += "namespace "; in GenNameSpace() 50 if (it != name_space.components.begin()) schema += "."; in GenNameSpace() 51 schema += *it; in GenNameSpace() 53 schema += ";\n\n"; in GenNameSpace() 56 // Generate a flatbuffer schema from the Parser's internal representation. 68 std::string schema; in GenerateFBS() local 69 schema += "// Generated from " + file_name + ".proto\n\n"; in GenerateFBS() 80 schema += "include \"" + basename + ".fbs\";\n"; in GenerateFBS() 83 if (num_includes) schema += "\n"; in GenerateFBS() [all …]
|
/external/python/pyasn1/docs/source/pyasn1/ |
D | contents.rst | 9 post-1995, revision (X.680) introduced some changes to the schema 14 As for ASN.1 schema language, pyasn1 package does 42 comprise a *schema* describing data structures of unbounded complexity. 60 ASN.1 schema can be "instantiated" by essentially putting some concrete value 61 into the type container. Such instantiated schema object can still be 62 used as a schema, but additionally it can play a role of a value in the 78 To tell instantiated schema object from just a schema, the *.isValue* 83 schema = RSAPublicKey() 85 # non-instantiated schema 86 assert schema.isValue == False [all …]
|
/external/flatbuffers/include/flatbuffers/ |
D | registry.h | 25 // Simply pre-populate it with all schema filenames that may be in use, and 27 // schema. 33 Schema schema; in Register() local 34 schema.path_ = schema_path; in Register() 35 schemas_[file_identifier] = schema; in Register() 50 // Load and parse the schema. in FlatBufferToText() 66 // Load and parse the schema. in TextToFlatBuffer() 90 // Find the schema, if not, exit. in LoadSchema() 97 auto &schema = it->second; in LoadSchema() local 98 // Load the schema from disk. If not, exit. in LoadSchema() [all …]
|
/external/python/google-api-python-client/docs/epy/ |
D | googleapiclient.schema.Schemas-class.html | 6 <title>googleapiclient.schema.Schemas</title> 41 <a href="googleapiclient.schema-module.html">Module schema</a> :: 52 >] | <a href="googleapiclient.schema.Schemas-class.html" 59 …><p class="nomargin-top"><span class="codelink"><a href="googleapiclient.schema-pysrc.html#Schemas… 92 …<td><span class="summary-sig"><a href="googleapiclient.schema.Schemas-class.html#__init__" class="… 96 …<span class="codelink"><a href="googleapiclient.schema-pysrc.html#Schemas.__init__">source co… 110 …<td><span class="summary-sig"><a href="googleapiclient.schema.Schemas-class.html#_prettyPrintByNam… 114 Get pretty printed object prototype from the schema name.</td> 116 …<span class="codelink"><a href="googleapiclient.schema-pysrc.html#Schemas._prettyPrintByName">sour… 130 …<td><span class="summary-sig"><a href="googleapiclient.schema.Schemas-class.html#prettyPrintByName… [all …]
|
D | googleapiclient.schema-pysrc.html | 6 <title>googleapiclient.schema</title> 41 Module schema 51 >] | <a href="googleapiclient.schema-pysrc.html" 57 …s="epydoc">Source Code for <a href="googleapiclient.schema-module.html">Module googleapiclient.sch… 73 …ss="py-lineno"> 15</tt> <tt class="py-line"><tt class="py-docstring">"""Schema processing for dis… 75 …ss="py-docstring">Schemas holds an APIs discovery schemas. It can return those schema as</tt> </tt> 77 …py-lineno"> 19</tt> <tt class="py-line"><tt class="py-docstring">conform to the schema.</tt> </tt> 79 …o"> 21</tt> <tt class="py-line"><tt class="py-docstring">For example, given the schema:</tt> </tt> 81 …lass="py-lineno"> 23</tt> <tt class="py-line"><tt class="py-docstring"> schema = \"\"\"{</tt> </t… 103 …="py-lineno"> 45</tt> <tt class="py-line"><tt class="py-docstring"> s = Schemas(schema)</tt> </tt> [all …]
|
D | googleapiclient.schema._SchemaToStruct-class.html | 6 <title>googleapiclient.schema._SchemaToStruct</title> 41 <a href="googleapiclient.schema-module.html">Module schema</a> :: 52 >] | <a href="googleapiclient.schema._SchemaToStruct-class.html" 59 …><p class="nomargin-top"><span class="codelink"><a href="googleapiclient.schema-pysrc.html#_Schema… 65 Convert schema to a prototype object. 92 …<td><span class="summary-sig"><a href="googleapiclient.schema._SchemaToStruct-class.html#__init__"… 93 <span class="summary-sig-arg">schema</span>, 98 …<span class="codelink"><a href="googleapiclient.schema-pysrc.html#_SchemaToStruct.__init__">source… 112 …<td><span class="summary-sig"><a href="googleapiclient.schema._SchemaToStruct-class.html#emit" cla… 116 …<span class="codelink"><a href="googleapiclient.schema-pysrc.html#_SchemaToStruct.emit">source&nbs… [all …]
|
/external/tensorflow/tensorflow/lite/schema/ |
D | upgrade_schema.py | 15 """Upgrade script to move from pre-release schema to new schema. 19 bazel run tensorflow/lite/schema/upgrade_schema -- in.json out.json 20 bazel run tensorflow/lite/schema/upgrade_schema -- in.bin out.bin 21 bazel run tensorflow/lite/schema/upgrade_schema -- in.bin out.json 22 bazel run tensorflow/lite/schema/upgrade_schema -- in.json out.bin 23 bazel run tensorflow/lite/schema/upgrade_schema -- in.tflite out.tflite 42 description="Script to move TFLite models from pre-release schema to " 43 "new schema.") 52 "the new schema. Extension must be `.json`, `.bin` or `.tflite`.") 66 """Converts TensorFlow flatbuffer models from old to new version of schema. [all …]
|
/external/libtextclassifier/actions/ |
D | lua-utils.h | 40 const reflection::Schema* entity_data_schema, 44 const reflection::Schema* entity_data_schema, 47 const reflection::Schema* entity_data_schema, 55 AnnotationIterator(const reflection::Schema* entity_data_schema, in AnnotationIterator() 68 const reflection::Schema* entity_data_schema_; 88 const reflection::Schema* entity_data_schema, LuaEnvironment* env); 89 int ReadAnnotations(const reflection::Schema* entity_data_schema, 93 const reflection::Schema* entity_data_schema, LuaEnvironment* env); 103 AnnotatedSpanIterator(const reflection::Schema* entity_data_schema, in AnnotatedSpanIterator() 121 const reflection::Schema* entity_data_schema, [all …]
|
/external/libxml2/ |
D | check-relaxng-test-suite.py | 70 def handle_valid(node, schema): argument 95 ctxt = schema.relaxNGNewValidCtxt() 111 def handle_invalid(node, schema): argument 135 ctxt = schema.relaxNGNewValidCtxt() 156 schema = "" 160 schema = schema + child.serialize() 164 rngp = libxml2.relaxNGNewMemParserCtxt(schema, len(schema)) 169 log.write("\nFailed to compile correct schema:\n-----\n") 170 log.write(schema) 182 schema = "" [all …]
|
D | check-xsddata-test-suite.py | 56 def handle_valid(node, schema): argument 87 ctxt = schema.relaxNGNewValidCtxt() 109 def handle_invalid(node, schema): argument 140 ctxt = schema.relaxNGNewValidCtxt() 168 schema = "" 172 schema = schema + child.serialize() 176 rngp = libxml2.relaxNGNewMemParserCtxt(schema, len(schema)) 181 log.write("\nFailed to compile correct schema:\n-----\n") 182 log.write(schema) 194 schema = "" [all …]
|
D | check-relaxng-test-suite2.py | 57 def handle_valid(node, schema): argument 88 ctxt = schema.relaxNGNewValidCtxt() 110 def handle_invalid(node, schema): argument 141 ctxt = schema.relaxNGNewValidCtxt() 170 schema = "" 174 schema = schema + child.serialize() 178 rngp = libxml2.relaxNGNewMemParserCtxt(schema, len(schema)) 183 log.write("\nFailed to compile correct schema:\n-----\n") 184 log.write(schema) 196 schema = "" [all …]
|
D | schematron.c | 2 * schematron.c : implementation of the Schematron schema validity checking 130 const xmlChar *name; /* schema name */ 163 xmlSchematronPtr schema; member 194 xmlSchematronPtr schema; member 295 * @ctxt: the schema parsing context 333 xmlSchematronPErrMemory(ctxt, "allocating schema test", node); in xmlSchematronAddTest() 380 * @ctxt: the schema parsing context 381 * @schema: a schema structure 391 xmlSchematronAddRule(xmlSchematronParserCtxtPtr ctxt, xmlSchematronPtr schema, in xmlSchematronAddRule() argument 398 if ((ctxt == NULL) || (schema == NULL) || (node == NULL) || in xmlSchematronAddRule() [all …]
|
D | xmlschemas.c | 2 * schemas.c : implementation of the XML Schema handling and 3 * schema validity checking 15 * - if we don't intend to use the schema for schemas, we 16 * need to validate all schema attributes (ref, type, name) 21 * - For xsi-driven schema acquisition, augment the IDCs after every 29 * - http://lists.w3.org/Archives/Public/www-xml-schema-comments/2005JulSep/0337.html 36 * Schema Component Constraint: 45 * is schema construction via an API is implemented. 211 * Macros for schema buckets. 305 #define WXS_SCHEMA(ctx) (ctx)->schema [all …]
|
/external/libxml2/test/schemas/ |
D | xml.xsd | 2 <!--!DOCTYPE xs:schema PUBLIC "-//W3C//DTD XMLSCHEMA 200102//EN" "XMLSchema.dtd" --> 3 <xs:schema targetNamespace="http://www.w3.org/XML/1998/namespace" xmlns:xs="http://www.w3.org/2001/… 10 This schema document describes the XML namespace, in a form 11 suitable for import by other schema documents. 49 <xs:documentation>This schema defines attributes and an attribute group 54 To enable this, such a schema must import this schema 56 <schema . . .> 68 will define a type which will schema-validate an instance 73 <xs:documentation>In keeping with the XML Schema WG's standard versioning 74 policy, this schema document will persist at [all …]
|
/external/flatbuffers/CMake/ |
D | BuildFlatBuffers.cmake | 18 # flatbuffers_schemas: A list of flatbuffer schema files to process. 20 # schema_include_dirs: A list of schema file include directories, which will be 38 # binary_schemas_dir: If you specify an optional binary schema directory, binary 43 # all schema include directories) copied into a directory (for example, if you 91 foreach(schema ${flatbuffers_schemas}) 92 get_filename_component(filename ${schema} NAME_WE) 93 # For each schema, do the things we requested. 101 -c ${schema} 102 DEPENDS ${FLATC_TARGET} ${schema} ${additional_dependencies} 111 COMMAND ${FLATC} -b --schema [all …]
|
/external/flatbuffers/docs/source/ |
D | Compiler.md | 1 Using the schema compiler {#flatbuffers_guide_using_schema_compiler} 11 the most recent schema specified. 14 FlatBuffer format conforming to the schema indicated before it. 19 For any schema input files, one or more generators can be specified: 52 if one is specified in the schema). 67 the schema file being parsed. 115 - `--gen-all` : Generate not just code for the current schema files, but 145 This may crash flatc given a mismatched schema. 160 - `--schema`: Serialize schemas instead of JSON (use with -b). This will 161 output a binary version of the specified schema that itself corresponds [all …]
|
D | Schemas.md | 1 Writing a schema {#flatbuffers_guide_writing_schema} 4 The syntax of the schema language (aka IDL, [Interface Definition Language][]) 53 - You can add new fields in the schema ONLY at the end of a table 58 schema, you can manually assign ids (much like Protocol Buffers), 61 - You cannot delete fields you don't use anymore from the schema, 72 See "Schema evolution examples" below for more on this 132 the schema. There are situations, however, where this may be 202 When using the `flatc` compiler to generate code for schema definitions, 215 needs you to know its schema to parse it correctly. But if you 226 You can specify in a schema, similar to `root_type`, that you intend [all …]
|