Searched defs:Property (Results 1 - 25 of 62) sorted by relevance

123

/external/skia/infra/bots/recipe_modules/swarming/
H A D__init__.py24 from recipe_engine.recipe_api import Property namespace
27 'show_shards_in_collect_step': Property(default=False, kind=bool),
28 'show_isolated_out_in_collect_step': Property(default=True, kind=bool),
/external/skqp/infra/bots/recipe_modules/swarming/
H A D__init__.py24 from recipe_engine.recipe_api import Property namespace
27 'show_shards_in_collect_step': Property(default=False, kind=bool),
28 'show_isolated_out_in_collect_step': Property(default=True, kind=bool),
/external/skia/infra/bots/recipe_modules/isolate/examples/
H A Dfull.py11 from recipe_engine.recipe_api import Property namespace
23 'always_use_exparchive': Property(
/external/skia/infra/bots/recipe_modules/swarming/examples/
H A Dfull.py26 from recipe_engine.recipe_api import Property namespace
29 'platforms': Property(default=('win',)),
30 'show_isolated_out_in_collect_step': Property(default=True),
31 'show_shards_in_collect_step': Property(default=False),
32 'gtest_task': Property(default=False),
33 #'isolated_script_task': Property(default=False),
34 'merge': Property(default=None),
/external/skqp/infra/bots/recipe_modules/isolate/examples/
H A Dfull.py11 from recipe_engine.recipe_api import Property namespace
23 'always_use_exparchive': Property(
/external/skqp/infra/bots/recipe_modules/swarming/examples/
H A Dfull.py26 from recipe_engine.recipe_api import Property namespace
29 'platforms': Property(default=('win',)),
30 'show_isolated_out_in_collect_step': Property(default=True),
31 'show_shards_in_collect_step': Property(default=False),
32 'gtest_task': Property(default=False),
33 #'isolated_script_task': Property(default=False),
34 'merge': Property(default=None),
/external/libbrillo/brillo/dbus/
H A Ddbus_property.h14 // Re-implementation of dbus::Property<T> that can handle any type supported by
16 // This class is pretty much a copy of dbus::Property<T> from dbus/property.h
20 class Property : public dbus::PropertyBase { class in namespace:brillo::dbus_utils
22 Property() = default;
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
H A DProperty.java20 * A <code>Property</code> represents a single member variable of a class,
31 public abstract class Property implements Comparable<Property> { class in inherits:Comparable
36 public Property(String name, Class<?> type) { method in class:Property
56 public int compareTo(Property o) {
79 if (other instanceof Property) {
80 Property p = (Property) other;
/external/testng/src/main/java/org/testng/
H A DReporterConfig.java29 private List<Property> m_properties = Lists.newArrayList();
36 public void addProperty(Property property) {
40 public List<Property> getProperties() {
59 ReporterConfig.Property property = m_properties.get(i);
86 Property property = new Property();
107 for (ReporterConfig.Property property : m_properties) {
114 public static class Property { class in class:ReporterConfig
139 for (Property prop : m_properties) {
/external/clang/test/Analysis/
H A Dmalloc.cpp79 struct Property { struct
81 Property(char* n) function in struct:Property
85 void append(Property x);
88 append(Property(getterName));
96 Property prop;
97 NestedProperty(Property p)
103 appendNested(NestedProperty(Property(getterName)));
/external/emma/core/java12/com/vladium/util/
H A DProperty.java7 * $Id: Property.java,v 1.1.1.1.2.4 2004/07/16 23:32:04 vlad_r Exp $
32 abstract class Property class
105 final Properties appDefaults = Property.getProperties (namespace + "_default.properties", loader);
108 final String fileName = Property.getSystemProperty (namespace + ".properties");
113 systemFileOverrides = Property.getLazyPropertiesFromFile (file);
115 final Properties systemOverrides = Property.getSystemProperties (namespace);
116 final Properties resOverrides = Property.getProperties (namespace + ".properties", loader);
/external/guice/examples/src/example/xml/
H A DXmlBeanModule.java146 new Property(setter, provider));
155 static class Property { class in class:XmlBeanModule
160 Property(Method setter, Provider<?> provider) { method in class:XmlBeanModule.Property
180 final List<Property> properties = new ArrayList<Property>();
200 final List<Property> properties;
202 BeanProvider(Class<T> type, List<Property> properties) {
210 for (Property property : properties) {
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssSchema.java46 static final class Property { class in class:CssSchema
56 private Property( method in class:CssSchema.Property
73 static final Property DISALLOWED = new Property(
76 private final ImmutableMap<String, Property> properties;
78 private CssSchema(ImmutableMap<String, Property> properties) {
93 ImmutableMap.Builder<String, Property> propertiesBuilder =
96 Property prop = DEFINITIONS.get(propertyName);
111 Map<String, Property> properties = Maps.newLinkedHashMap();
128 Property forKe
[all...]
/external/pdfium/fxjs/xfa/
H A Dcjx_eventpseudomodel.cpp60 Property(pValue, XFA_Event::Change, bSetting);
66 Property(pValue, XFA_Event::CommitKey, bSetting);
72 Property(pValue, XFA_Event::FullText, bSetting);
78 Property(pValue, XFA_Event::Keydown, bSetting);
84 Property(pValue, XFA_Event::Modifier, bSetting);
90 Property(pValue, XFA_Event::NewContentType, bSetting);
96 Property(pValue, XFA_Event::NewText, bSetting);
102 Property(pValue, XFA_Event::PreviousContentType, bSetting);
108 Property(pValue, XFA_Event::PreviousText, bSetting);
114 Property(pValu
191 void CJX_EventPseudoModel::Property(CFXJSE_Value* pValue, function in class:CJX_EventPseudoModel
[all...]
/external/libchrome/dbus/
H A Dproperty.cc75 LOG(WARNING) << "Property changed signal has wrong parameters: "
84 LOG(WARNING) << "Property changed signal has wrong parameters: "
89 LOG(WARNING) << "Property changed signal has wrong parameters: "
302 // Property<Byte> specialization.
306 Property<uint8_t>::Property() function in class:dbus::Property
310 bool Property<uint8_t>::PopValueFromReader(MessageReader* reader) {
315 void Property<uint8_t>::AppendSetValueToWriter(MessageWriter* writer) {
320 // Property<bool> specialization.
324 Property<boo function in class:dbus::Property
342 Property<int16_t>::Property() function in class:dbus::Property
360 Property<uint16_t>::Property() function in class:dbus::Property
378 Property<int32_t>::Property() function in class:dbus::Property
396 Property<uint32_t>::Property() function in class:dbus::Property
414 Property<int64_t>::Property() function in class:dbus::Property
432 Property<uint64_t>::Property() function in class:dbus::Property
450 Property<double>::Property() : value_(0.0) { function in class:dbus::Property
[all...]
H A Dproperty.h32 // member for each property defined as an instance of the Property<> class,
41 // dbus::Property<std::string> name;
42 // dbus::Property<uint16_t> version;
43 // dbus::Property<dbus::ObjectPath> parent;
44 // dbus::Property<std::vector<std::string> > children;
135 // the Property<> template that are not type-specific, such as the
166 // Allows to mark Property as valid or invalid.
310 // and for Property<>. Not permitted with const references to this class.
355 // Property template, this defines the type-specific and type-safe methods
379 class CHROME_DBUS_EXPORT Property class in namespace:dbus
381 Property() {} function in class:dbus::Property
[all...]
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_parse.h80 struct tgsi_property Property; member in struct:tgsi_full_property
/external/python/cpython2/Lib/plat-mac/
H A Daetypes.py437 class Property(ObjectSpecifier): class in inherits:ObjectSpecifier
444 return "Property(%r, %r)" % (self.seld.type, self.fr)
446 return "Property(%r)" % (self.seld.type,)
450 return "Property %s of %s" % (str(self.seld), str(self.fr))
452 return "Property %s" % str(self.seld)
470 rv = "Property(%r" % (self.seld.type,)
479 return "Property %s of %s" % (str(self.seld), str(self.fr))
481 return "Property %s" % str(self.seld)
/external/python/cpython2/Tools/msi/
H A Duisample.py66 Property = [ variable
414 (u'AppSearch', u'Searching for installed applications', u'Property: [1], Signature: [2]'),
840 (u'CheckBox', u'Property', u'N', None, None, None, None, u'Identifier', None, u'A named property to be tied to the item.'),
842 (u'Property', u'Property', u'N', None, None, None, None, u'Identifier', None, u'Name of property, uppercase if settable by launcher or loader.'),
843 (u'Property', u'Value', u'N', None, None, None, None, u'Text', None, u'String value for property. Never null or empty.'),
845 (u'ComboBox', u'Property', u'N', None, None, None, None, u'Identifier', None, u'A named property to be tied to this item. All the items tied to the same property become part of the same combobox.'),
855 (u'Control', u'Property', u'Y', None, None, None, None, u'Identifier', None, u'The name of a defined property to be linked to this control. '),
863 (u'ListBox', u'Property', u'N', None, None, None, None, u'Identifier', None, u'A named property to be tied to this item. All the items tied to the same property become part of the same listbox.'),
896 (u'AppSearch', u'Property',
[all...]
H A Dschema.py55 AppSearch.add_field(1,'Property',11592)
58 Property = Table('Property') variable
59 Property.add_field(1,'Property',11592)
60 Property.add_field(2,'Value',3840)
111 CheckBox.add_field(1,'Property',11592)
150 ComboBox.add_field(1,'Property',11592)
178 Control.add_field(9,'Property',7474)
314 ListBox.add_field(1,'Property',1159
[all...]
/external/swiftshader/third_party/LLVM/utils/TableGen/
H A DCodeGenTarget.cpp475 Record *Property = PropList->getElementAsRecord(i); local
476 assert(Property->isSubClassOf("IntrinsicProperty") &&
479 if (Property->getName() == "IntrNoMem")
481 else if (Property->getName() == "IntrReadArgMem")
483 else if (Property->getName() == "IntrReadMem")
485 else if (Property->getName() == "IntrReadWriteArgMem")
487 else if (Property->getName() == "Commutative")
489 else if (Property->getName() == "Throws")
491 else if (Property->isSubClassOf("NoCapture")) {
492 unsigned ArgNo = Property
[all...]
/external/llvm/utils/TableGen/
H A DCodeGenTarget.cpp570 Record *Property = PropList->getElementAsRecord(i); local
571 assert(Property->isSubClassOf("IntrinsicProperty") &&
574 if (Property->getName() == "IntrNoMem")
576 else if (Property->getName() == "IntrReadMem")
578 else if (Property->getName() == "IntrWriteMem")
580 else if (Property->getName() == "IntrArgMemOnly")
582 else if (Property->getName() == "Commutative")
584 else if (Property->getName() == "Throws")
586 else if (Property->getName() == "IntrNoDuplicate")
588 else if (Property
[all...]
/external/v8/src/compiler/
H A Doperator.h39 enum Property { enum in class:v8::internal::compiler::Operator
60 typedef base::Flags<Property, uint8_t> Properties;
92 bool HasProperty(Property property) const {
/external/llvm/include/llvm/CodeGen/
H A DMachineFunction.h107 // Property descriptions:
119 enum class Property : unsigned { class in class:llvm::MachineFunctionProperties
126 bool hasProperty(Property P) const {
129 MachineFunctionProperties &set(Property P) {
133 MachineFunctionProperties &clear(Property P) {
157 BitVector(static_cast<unsigned>(Property::LastProperty));
/external/python/cpython2/Lib/msilib/
H A Dschema.py55 AppSearch.add_field(1,'Property',11592)
58 Property = Table('Property') variable
59 Property.add_field(1,'Property',11592)
60 Property.add_field(2,'Value',3840)
111 CheckBox.add_field(1,'Property',11592)
150 ComboBox.add_field(1,'Property',11592)
178 Control.add_field(9,'Property',7474)
314 ListBox.add_field(1,'Property',1159
[all...]

Completed in 657 milliseconds

123