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

1 2 3 4 5 6 7 8 91011>>

  /hardware/libhardware/modules/camera/3_4/metadata/
property.h 26 // A Property is a PartialMetadata that only has a single static tag.
28 class Property : public PartialMetadataInterface {
30 Property(int32_t tag, T value) : tag_(tag), value_(std::move(value)){};
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
VarCheck.c 43 VAR_CHECK_VARIABLE_PROPERTY Property;
47 Status = VarCheckLibVariablePropertyGet (VariableName, VendorGuid, &Property);
49 Property.Property |= VAR_CHECK_VARIABLE_PROPERTY_READ_ONLY;
51 Property.Revision = VAR_CHECK_VARIABLE_PROPERTY_REVISION;
52 Property.Property = VAR_CHECK_VARIABLE_PROPERTY_READ_ONLY;
53 Property.Attributes = 0;
54 Property.MinSize = 1;
55 Property.MaxSize = MAX_UINTN;
    [all...]
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 29 * Component and Property, for use in the test.
41 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
42 new LinkedHashMap<String, ArrayList<Property>>();
53 * Adds a Property to this component.
56 public void addProperty(Property prop) {
58 ArrayList<Property> props = mPropsMap.get(name);
60 props = new ArrayList<Property>();
69 * @param name The name of the property that should be returned.
72 public List<Property> getProperties(String name) {
78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.
    [all...]
  /external/libbrillo/brillo/dbus/
dbus_property.h 9 #include <dbus/property.h>
14 // 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 {
22 Property() = default;
39 // Requests that the remote object change the property value to |value|,
69 // to replace the property value with the set value without using a
77 // value of a property.
84 // Current cached value of the property
    [all...]
  /frameworks/base/core/java/android/util/
Property.java 20 * A property is an abstraction that can be used to represent a <emb>mutable</em> value that is held
21 * in a <em>host</em> object. The Property's {@link #set(Object, Object)} or {@link #get(Object)}
25 * @param <T> The class on which the property is declared.
26 * @param <V> The type that this property represents.
28 public abstract class Property<T, V> {
34 * This factory method creates and returns a Property given the <code>class</code> and
47 * <code>setName()</code> method is not found, the <code>Property</code> will be
49 * a property is allowed, but will have no effect.</p>
54 public static <T, V> Property<T, V> of(Class<T> hostType, Class<V> valueType, String name) {
59 * A constructor that takes an identifying name and {@link #getType() type} for the property
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/introspector/
Property.java 20 * A <code>Property</code> represents a single member variable of a class,
22 * class is the actual name of the property as given for the class, not an
28 * on the name of the property.
31 public abstract class Property implements Comparable<Property> {
36 public Property(String name, Class<?> type) {
56 public int compareTo(Property o) {
79 if (other instanceof Property) {
80 Property p = (Property) other
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/mapclient/obex/
BmsgTokenizer.java 44 public Property next(boolean alwaysReturn) throws ParseException {
55 throw new ParseException("Property or empty line expected", pos());
65 return new Property(mMatcher.group(2), mMatcher.group(3));
68 public Property next() throws ParseException {
80 public static class Property {
84 public Property(String name, String value) {
102 return ((o instanceof Property) && ((Property) o).name.equals(name)
103 && ((Property) o).value.equals(value));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
uisample.py 66 Property = [
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
VarCheck.h 60 UINT16 Property;
73 Variable property set.
79 @param[in] VariableProperty Pointer to the input variable property.
81 @retval EFI_SUCCESS The property of variable specified by the Name and Guid was set successfully.
86 @retval EFI_OUT_OF_RESOURCES There is not enough resource for the variable property set request.
98 Variable property get.
102 @param[out] VariableProperty Pointer to the output variable property.
104 @retval EFI_SUCCESS The property of variable specified by the Name and Guid was got successfully.
106 @retval EFI_NOT_FOUND The property of variable specified by the Name and Guid was not found.
  /external/clang/test/Analysis/
malloc.cpp 79 struct Property {
81 Property(char* n)
85 void append(Property x);
88 append(Property(getterName));
96 Property prop;
97 NestedProperty(Property p)
103 appendNested(NestedProperty(Property(getterName)));
  /external/pdfium/fxjs/xfa/
cjx_eventpseudomodel.cpp 60 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(pValue, XFA_Event::Reenter, bSetting)
    [all...]
  /external/python/cpython2/Tools/msi/
uisample.py 66 Property = [
    [all...]
  /build/blueprint/parser/
ast.go 67 ret.Properties = make([]*Property, len(m.Properties))
76 for i, property := range m.Properties {
77 propertyStrings[i] = property.String()
89 // A Property is a name: value pair within a Map, which may be a top level Module.
90 type Property struct {
97 func (p *Property) Copy() *Property {
103 func (p *Property) String() string {
107 func (p *Property) Pos() scanner.Position { return p.NamePos }
108 func (p *Property) End() scanner.Position { return p.Value.End()
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckLib/
VarCheckLib.c 122 Variable property get with wildcard name.
128 @return Pointer to variable property.
164 Variable property get function.
170 @return Pointer to the property of variable specified by the Name and Guid.
469 Variable property set.
473 @param[in] VariableProperty Pointer to the input variable property.
475 @retval EFI_SUCCESS The property of variable specified by the Name and Guid was set successfully.
480 @retval EFI_OUT_OF_RESOURCES There is not enough resource for the variable property set request.
494 VAR_CHECK_VARIABLE_PROPERTY *Property;
515 // Get the pointer of property data for set.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckUefiLib/
VarCheckUefiLibNullClass.c 43 @param[in] VariablePropery Pointer to variable property.
103 @param[in] VariablePropery Pointer to variable property.
129 @param[in] VariablePropery Pointer to variable property.
154 @param[in] VariablePropery Pointer to variable property.
188 @param[in] VariablePropery Pointer to variable property.
742 @param[out] VariableProperty Pointer to variable property.
815 VAR_CHECK_VARIABLE_PROPERTY Property;
834 if (VarCheckLibVariablePropertyGet (VariableName, VendorGuid, &Property) == EFI_NOT_FOUND) {
871 Variable property set for UEFI defined variables.
921 Constructor function of VarCheckUefiLib to set property and
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Library/Tpm2CommandLib/
Tpm2Capability.c 27 UINT32 Property;
51 The capability parameter determines the category of data returned. The property parameter
52 selects the first value of the selected category to be returned. If there is no property
53 that corresponds to the value of property, the next higher value is returned, if it exists.
65 @param[in] Property Further definition of information.
77 IN UINT32 Property,
96 SendBuffer.Property = SwapBytes32 (Property);
120 // Does not unpack all possiable property here, the caller should unpack it and note the byte order.
  /external/libchrome/dbus/
property.cc 5 #include "dbus/property.h"
52 PropertyBase* property) {
53 property->Init(this, name);
54 properties_map_[name] = property;
75 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: "
102 void PropertySet::Get(PropertyBase* property, GetCallback callback) {
106 writer.AppendString(property->name());
113 property,
286 PropertyBase* property = it->second; local
    [all...]
property.h 32 // member for each property defined as an instance of the Property<> class,
35 // property defined to associate them with their string name.
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;
102 // the current value of the name property would be:
117 // the property value, and whether it emits a signal or a Get() call is
125 // in property.cc because template methods use them
    [all...]
  /external/testng/src/main/java/org/testng/
ReporterConfig.java 29 private List<Property> m_properties = Lists.newArrayList();
36 public void addProperty(Property property) {
37 m_properties.add(property);
40 public List<Property> getProperties() {
59 ReporterConfig.Property property = m_properties.get(i); local
60 sb.append(property.getName());
62 sb.append(property.getValue());
86 Property property = new Property() local
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 37 private class Property {
42 Property(int code, int type, int column) {
54 private final Property[] mProperties;
61 // constructs a property group for a list of properties
71 mProperties = new Property[count];
82 private Property createProperty(int code, ArrayList<String> columns) {
167 Log.e(TAG, "unsupported property " + code);
173 return new Property(code, type, columns.size() - 1);
175 return new Property(code, type, -1);
220 * Gets the values of the properties represented by this property group for the give
    [all...]
  /build/blueprint/bootstrap/bpdoc/
bpdoc.go 27 ps map[string]*PropertyStruct // Map of type name to property struct, protected by mutex
38 // Return the PropertyStruct associated with a property struct type. The type should be in the
96 Properties []Property
99 type Property struct {
106 Properties []Property
112 ret.Properties = append([]Property(nil), ret.Properties...)
120 func (p *Property) Clone() Property {
122 ret.Properties = append([]Property(nil), ret.Properties...)
130 func (p *Property) Equal(other Property) bool
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Platforms/Hisilicon/D03/Library/FdtUpdateLib/
FdtUpdateLib.c 197 CONST CHAR8 *Property = "clock-frequency";
217 m_prop = fdt_get_property_w(Fdt, node, Property, &m_oldlen);
219 DEBUG ((DEBUG_ERROR, "[%a]:[%dL] Can't find property %a\n", __FUNCTION__, __LINE__, Property));
223 Error = fdt_delprop(Fdt, node, Property);
225 DEBUG ((DEBUG_ERROR, "ERROR: fdt_delprop() %a: %a\n", Property, fdt_strerror (Error)));
232 Error = fdt_setprop(Fdt, node, Property, &Data, sizeof(Data));
234 DEBUG ((DEBUG_ERROR, "ERROR:fdt_setprop() %a: %a\n", Property, fdt_strerror (Error)));
265 //find the memory node property
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/
PcdDataBaseSignatureGuid.h 75 UINT16 Property; // Variable property.
  /external/emma/core/java12/com/vladium/util/
Property.java 7 * $Id: Property.java,v 1.1.1.1.2.4 2004/07/16 23:32:04 vlad_r Exp $
32 abstract class Property
49 * should be used for read-only property only
92 * This method is not property aliasing-aware.
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);
309 * Returns a lazy property implementation that will read 'load' as a .propertie
    [all...]
  /external/guice/examples/src/example/xml/
XmlBeanModule.java 45 Element property = bean.getChild("property"); local
46 property.setStartElementListener(new PropertyListener());
101 /** Handles "property" elements. */
121 // Find setter method for the given property name.
143 // Add property descriptor to builder.
146 new Property(setter, provider));
155 static class Property {
160 Property(Method setter, Provider<?> provider) {
180 final List<Property> properties = new ArrayList<Property>()
    [all...]

Completed in 1797 milliseconds

1 2 3 4 5 6 7 8 91011>>