HomeSort by relevance Sort by last modified time
    Searched defs:PropertyType (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/chrome/common/extensions/docs/server2/
reference_resolver.py 10 from third_party.json_schema_compiler.model import PropertyType
76 if prop.name in name and prop.type_.property_type == PropertyType.REF:
137 if prop.name in name and prop.type_.property_type == PropertyType.REF:
  /external/chromium_org/tools/json_schema_compiler/
cpp_util.py 10 from model import PropertyType
50 PropertyType.BOOLEAN: '%s->GetAsBoolean(%s)',
51 PropertyType.DOUBLE: '%s->GetAsDouble(%s)',
52 PropertyType.INTEGER: '%s->GetAsInteger(%s)',
53 PropertyType.STRING: '%s->GetAsString(%s)',
61 PropertyType.ARRAY: 'base::Value::TYPE_LIST',
62 PropertyType.BINARY: 'base::Value::TYPE_BINARY',
63 PropertyType.BOOLEAN: 'base::Value::TYPE_BOOLEAN',
64 # PropertyType.CHOICES can be any combination of types.
65 PropertyType.DOUBLE: 'base::Value::TYPE_DOUBLE'
    [all...]
cpp_type_generator.py 6 from model import PropertyType
78 if type_.property_type == PropertyType.REF:
83 elif type_.property_type == PropertyType.BOOLEAN:
85 elif type_.property_type == PropertyType.INTEGER:
87 elif type_.property_type == PropertyType.INT64:
89 elif type_.property_type == PropertyType.DOUBLE:
91 elif type_.property_type == PropertyType.STRING:
93 elif type_.property_type in (PropertyType.ENUM,
94 PropertyType.OBJECT,
95 PropertyType.CHOICES)
    [all...]
h_generator.py 8 from model import PropertyType
125 if (prop.type_ == PropertyType.REF and
162 is_ptr = prop.optional or prop.type_.property_type == PropertyType.ANY
190 elif type_.property_type == PropertyType.ARRAY:
199 elif type_.property_type == PropertyType.STRING:
204 elif type_.property_type == PropertyType.ENUM:
217 elif type_.property_type in (PropertyType.CHOICES,
218 PropertyType.OBJECT):
241 if type_.property_type is PropertyType.CHOICES else
248 if type_.property_type == PropertyType.CHOICES
    [all...]
cc_generator.py 6 from model import PropertyType
110 elif type_.property_type == PropertyType.ARRAY:
112 elif type_.property_type in (PropertyType.CHOICES,
113 PropertyType.OBJECT):
119 if type_.property_type == PropertyType.OBJECT:
136 elif type_.property_type == PropertyType.ENUM:
149 if real_t.property_type == PropertyType.ENUM:
155 elif t.property_type == PropertyType.INTEGER:
157 elif t.property_type == PropertyType.DOUBLE:
159 elif t.property_type == PropertyType.BOOLEAN
    [all...]
dart_generator.py 9 from model import Function, PropertyType
109 if type_.property_type is PropertyType.ENUM:
317 elif p.type_.property_type is PropertyType.ARRAY:
645 return type_.property_type == PropertyType.FUNCTION
656 if type_.property_type is PropertyType.CHOICES:
658 if type_.property_type is PropertyType.REF:
662 if (type_.property_type == PropertyType.OBJECT
671 or type_.property_type in [PropertyType.OBJECT, PropertyType.ANY])
681 if type_.property_type is PropertyType.CHOICES
    [all...]
model.py 165 - |property_type| the PropertyType of this Type
194 self.property_type = PropertyType.ARRAY
198 self.property_type = PropertyType.REF
201 self.property_type = PropertyType.ENUM
205 self.property_type = PropertyType.ANY
207 self.property_type = PropertyType.BINARY
209 self.property_type = PropertyType.BOOLEAN
211 self.property_type = PropertyType.INTEGER
214 self.property_type = PropertyType.DOUBLE
216 self.property_type = PropertyType.STRIN
    [all...]
  /external/chromium_org/v8/src/
property-details.h 47 enum PropertyType {
187 PropertyType type,
198 PropertyType type,
232 PropertyType type() const { return TypeField::decode(value_); }
264 class TypeField : public BitField<PropertyType, 0, 2> {};
  /external/clang/lib/Sema/
SemaCodeComplete.cpp     [all...]
  /prebuilts/devtools/tools/lib/
hierarchyviewer2lib.jar 
sdklib.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.2.0/
sdklib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.4.0/
sdklib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.4.2/
sdklib-22.4.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.5.0/
sdklib-22.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.5.1/
sdklib-22.5.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.5.3/
sdklib-22.5.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.7.0/
sdklib-22.7.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.7.1/
sdklib-22.7.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.7.3/
sdklib-22.7.3.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.8.0/
sdklib-22.8.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/22.9.2/
sdklib-22.9.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/23.0.1/
sdklib-23.0.1.jar 
  /prebuilts/gradle-plugin/com/android/tools/sdklib/23.0.2/
sdklib-23.0.2.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 

Completed in 288 milliseconds

1 2