HomeSort by relevance Sort by last modified time
    Searched refs:json_type (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/
CodeGeneratorFrontend.py 72 def get_js(json_type):
73 if json_type == "boolean":
75 elif json_type == "string":
77 elif json_type == "array":
79 elif json_type == "object":
81 elif json_type == "integer":
83 elif json_type == "number":
85 elif json_type == "any":
88 raise Exception("Unknown type: %s" % json_type)
92 def __init__(self, json_type)
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
model.py 192 json_type = json.get('type', None)
193 if json_type == 'array':
200 elif 'enum' in json and json_type == 'string':
204 elif json_type == 'any':
206 elif json_type == 'binary':
208 elif json_type == 'boolean':
210 elif json_type == 'integer':
212 elif (json_type == 'double' or
213 json_type == 'number'):
215 elif json_type == 'string'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
CodeGeneratorInspector.py 130 def get(json_type):
131 if json_type == "boolean":
133 elif json_type == "string":
135 elif json_type == "array":
137 elif json_type == "object":
139 elif json_type == "integer":
141 elif json_type == "number":
143 elif json_type == "any":
146 raise Exception("Unknown type: %s" % json_type)
628 json_type = type_data.get_json_type(
    [all...]

Completed in 106 milliseconds