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

1 2

  /external/sepolicy/
property.te 1 type default_prop, property_type;
2 type shell_prop, property_type;
3 type debug_prop, property_type;
4 type debuggerd_prop, property_type;
5 type dhcp_prop, property_type;
6 type fingerprint_prop, property_type;
7 type radio_prop, property_type;
8 type net_radio_prop, property_type;
9 type system_radio_prop, property_type;
10 type system_prop, property_type;
    [all...]
attributes 43 attribute property_type;
su.te 43 dontaudit su property_type:property_service *;
untrusted_app.te 97 neverallow untrusted_app property_type:property_service set;
init.te 102 allow init property_type:property_service set;
app.te 357 property_type:property_service set;
  /device/asus/flo/sepolicy/
property.te 1 type ctl_rmt_prop, property_type;
  /device/asus/fugu/sepolicy/
property.te 1 type hdmi_prop, property_type;
  /device/lge/mako/sepolicy/
property.te 1 type ctl_rmt_prop, property_type;
  /device/moto/shamu/sepolicy/
property.te 1 type qcom_ims_prop, property_type;
  /external/chromium_org/tools/json_schema_compiler/
cpp_type_generator.py 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,
104 elif type_.property_type == PropertyType.ANY:
106 elif type_.property_type == PropertyType.FUNCTION:
111 elif type_.property_type == PropertyType.ARRAY
    [all...]
cc_generator.py 110 elif type_.property_type == PropertyType.ARRAY:
112 elif type_.property_type in (PropertyType.CHOICES,
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:
161 elif (t.property_type == PropertyType.ANY or
162 t.property_type == PropertyType.ARRAY o
    [all...]
model_test.py 66 string_prop.type_.property_type)
69 integer_prop.type_.property_type)
72 array_prop.type_.property_type)
74 array_prop.type_.item_type.property_type)
78 object_prop.type_.property_type)
86 self.tabs.functions['move'].params[0].type_.property_type)
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...]
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:
217 elif type_.property_type in (PropertyType.CHOICES,
241 if type_.property_type is PropertyType.CHOICES else
248 if type_.property_type == PropertyType.CHOICES:
265 if type_.additional_properties.property_type == PropertyType.ANY:
cpp_util.py 54 }[type_.property_type] % (src, dst)
71 }[type_.property_type]
78 if param.type_.property_type in (PropertyType.ANY,
dart_generator.py 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:
683 if type_.property_type is PropertyType.REF:
687 return (type_.property_type is PropertyType.ARRAY an
    [all...]
  /external/chromium_org/device/bluetooth/
bluetooth_low_energy_win.h 20 // Creates a property value instance, where |property_type| is one of REG_xxx
26 DWORD property_type,
32 DWORD property_type() const { return property_type_; } function in class:device::win::DeviceRegistryPropertyValue
38 DeviceRegistryPropertyValue(DWORD property_type,
52 // Creates a property value instance, where |property_type| is one of
56 DevicePropertyValue(DEVPROPTYPE property_type,
60 DEVPROPTYPE property_type() const { return property_type_; } function in class:device::win::DevicePropertyValue
bluetooth_low_energy_win.cc 226 DWORD property_type; local
230 &property_type,
242 property_type, property_value.Pass(), actual_length).Pass();
293 if (property_value->property_type() != REG_SZ) {
352 if (value->property_type() != DEVPROP_TYPE_UINT32) {
546 DWORD property_type,
549 switch (property_type) {
565 new DeviceRegistryPropertyValue(property_type, value.Pass(), value_size));
569 DWORD property_type,
572 : property_type_(property_type),
    [all...]
  /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/
jsc_view.py 318 if type_.property_type == model.PropertyType.ARRAY:
337 if type_.property_type == model.PropertyType.FUNCTION:
366 dst_dict['is_object'] = type_.property_type == model.PropertyType.OBJECT
367 if type_.property_type == model.PropertyType.CHOICES:
373 elif type_.property_type == model.PropertyType.REF:
375 elif type_.property_type == model.PropertyType.ARRAY:
377 elif type_.property_type == model.PropertyType.ENUM:
386 dst_dict['simple_type'] = type_.property_type.name
reference_resolver.py 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/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...]
  /packages/experimental/SELinux/CTS/src/
example_input_policy.conf     [all...]
  /external/chromium_org/v8/test/cctest/
test-heap-profiler.cc     [all...]

Completed in 413 milliseconds

1 2