Searched refs:prettyPrintSchema (Results 1 – 4 of 4) sorted by relevance
/external/python/google-api-python-client/tests/ |
D | test_schema.py | 66 self.assertTrue("Unknown type" in self.sc.prettyPrintSchema({})) 69 self.assertEqual({}, eval(self.sc.prettyPrintSchema({"type": "object"}))) 73 type(""), type(eval(self.sc.prettyPrintSchema({"type": "string"}))) 78 type(20), type(eval(self.sc.prettyPrintSchema({"type": "integer"}))) 83 type(1.2), type(eval(self.sc.prettyPrintSchema({"type": "number"}))) 88 type(True), type(eval(self.sc.prettyPrintSchema({"type": "boolean"}))) 93 "foo", eval(self.sc.prettyPrintSchema({"type": "string", "default": "foo"})) 98 20, eval(self.sc.prettyPrintSchema({"type": "integer", "default": 20})) 103 1.2, eval(self.sc.prettyPrintSchema({"type": "number", "default": 1.2})) 109 eval(self.sc.prettyPrintSchema({"type": "boolean", "default": False})), [all …]
|
/external/python/google-api-python-client/googleapiclient/ |
D | schema.py | 147 def prettyPrintSchema(self, schema): member in Schemas
|
D | discovery.py | 964 docs.append(schema.prettyPrintSchema(methodDesc["response"]))
|
/external/python/google-api-python-client/docs/epy/ |
D | api-objects.txt | 347 googleapiclient.schema.Schemas.prettyPrintSchema googleapiclient.schema.Schemas-class.html#prettyPr…
|