OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:property_type
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/tools/json_schema_compiler/
cpp_type_generator.py
88
if type_.
property_type
== PropertyType.REF:
96
elif type_.
property_type
== PropertyType.BOOLEAN:
98
elif type_.
property_type
== PropertyType.INTEGER:
100
elif type_.
property_type
== PropertyType.INT64:
102
elif type_.
property_type
== PropertyType.DOUBLE:
104
elif type_.
property_type
== PropertyType.STRING:
106
elif type_.
property_type
== PropertyType.ENUM:
108
elif type_.
property_type
== PropertyType.ANY:
110
elif (type_.
property_type
== PropertyType.OBJECT or
111
type_.
property_type
== PropertyType.CHOICES)
[
all
...]
cc_generator.py
109
elif type_.
property_type
== PropertyType.ARRAY:
111
elif type_.
property_type
in (PropertyType.CHOICES,
118
if type_.
property_type
== PropertyType.OBJECT:
135
elif type_.
property_type
== PropertyType.ENUM:
149
if t.
property_type
== PropertyType.INTEGER:
151
elif t.
property_type
== PropertyType.DOUBLE:
153
elif t.
property_type
== PropertyType.BOOLEAN:
155
elif (t.
property_type
== PropertyType.ANY or
156
t.
property_type
== PropertyType.ARRAY or
157
t.
property_type
== PropertyType.BINARY or # mapped to std::strin
[
all
...]
model_test.py
48
string_prop.type_.
property_type
)
51
integer_prop.type_.
property_type
)
54
array_prop.type_.
property_type
)
56
array_prop.type_.item_type.
property_type
)
60
object_prop.type_.
property_type
)
68
self.tabs.functions['move'].params[0].type_.
property_type
)
cpp_util.py
49
}[type_.
property_type
] % (src, dst)
65
}[type_.
property_type
]
71
if param.type_.
property_type
in (PropertyType.ANY,
model.py
106
- |
property_type
| the PropertyType of this Type
135
self.
property_type
= PropertyType.ARRAY
139
self.
property_type
= PropertyType.REF
142
self.
property_type
= PropertyType.ENUM
145
self.
property_type
= PropertyType.ANY
147
self.
property_type
= PropertyType.BINARY
149
self.
property_type
= PropertyType.BOOLEAN
151
self.
property_type
= PropertyType.INTEGER
154
self.
property_type
= PropertyType.DOUBLE
156
self.
property_type
= PropertyType.STRIN
[
all
...]
h_generator.py
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:
221
elif type_.
property_type
in (PropertyType.CHOICES,
245
if type_.
property_type
is PropertyType.CHOICES else
252
if type_.
property_type
== PropertyType.CHOICES:
269
if type_.additional_properties.
property_type
== PropertyType.ANY:
dart_generator.py
108
if type_.
property_type
is PropertyType.ENUM:
316
elif p.type_.
property_type
is PropertyType.ARRAY:
644
return type_.
property_type
== PropertyType.FUNCTION
655
if type_.
property_type
is PropertyType.CHOICES:
657
if type_.
property_type
is PropertyType.REF:
661
if (type_.
property_type
== PropertyType.OBJECT
670
or type_.
property_type
in [PropertyType.OBJECT, PropertyType.ANY])
680
if type_.
property_type
is PropertyType.CHOICES:
682
if type_.
property_type
is PropertyType.REF:
686
return (type_.
property_type
is PropertyType.ARRAY an
[
all
...]
/external/sepolicy/
attributes
40
attribute
property_type
;
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
class_properties.hpp
164
#define BOOST_READONLY_PROPERTY(
property_type
, friends ) boost::unit_test::readwrite_property<
property_type
>
170
#define BOOST_READONLY_PROPERTY(
property_type
, friends ) \
172
: public boost::unit_test::readonly_property<
property_type
> { \
173
typedef boost::unit_test::readonly_property<
property_type
> base_prop; \
/external/chromium_org/chrome/common/extensions/docs/server2/
api_data_source.py
386
if type_.
property_type
== model.PropertyType.ARRAY:
402
if type_.
property_type
== model.PropertyType.FUNCTION:
438
dst_dict['is_object'] = type_.
property_type
== model.PropertyType.OBJECT
439
if type_.
property_type
== model.PropertyType.CHOICES:
445
elif type_.
property_type
== model.PropertyType.REF:
447
elif type_.
property_type
== model.PropertyType.ARRAY:
449
elif type_.
property_type
== model.PropertyType.ENUM:
458
dst_dict['simple_type'] = type_.
property_type
.name.lower()
/external/chromium_org/tools/gyp/pylib/gyp/
xcodeproj_file.py
208
[ is_list,
property_type
, is_strong, is_required, default ]
211
property_type
: The type to use as the value of the property,
213
element of the value's list.
property_type
must
216
is_strong: If
property_type
is an XCObject subclass, is_strong
220
property_type
is not an XCObject subclass.
223
an empty string ("", in the case of
property_type
480
(is_list,
property_type
, is_strong) = attributes[0:3]
762
(is_list,
property_type
, is_strong) = self._schema[property][0:3]
[
all
...]
Completed in 102 milliseconds