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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/core/platform/
HashTools.h 30 struct Property {
41 const Property* findProperty(register const char* str, register unsigned int len);
  /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/chromium_org/tools/json_schema_compiler/
cpp_util.py 10 from model import Property, PropertyType, Type
42 dst: Property*
68 """Gets a parameter declaration of a given model.Property and its C++
model.py 52 - |properties| a map of property names to their model.Property
102 - |properties| a map of property unix_names to their model.Property
193 # Sometimes we might have an unnamed function, e.g. if it's a property
194 # of an object. Use the name of the property in that case.
213 present when the Function is representing a callback property
240 return Property(self, p['name'], p, namespace, origin)
270 class Property(object):
271 """A property of a type OR a parameter to a function
    [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/chromium/net/http/
http_auth_handler.h 138 enum Property {
  /external/chromium_org/dbus/
property.cc 5 #include "dbus/property.h"
45 PropertyBase* property) {
46 property->Init(this, name);
47 properties_map_[name] = property;
68 LOG(WARNING) << "Property changed signal has wrong parameters: "
77 LOG(WARNING) << "Property changed signal has wrong parameters: "
95 void PropertySet::Get(PropertyBase* property, GetCallback callback) {
99 writer.AppendString(property->name());
106 property,
110 void PropertySet::OnGet(PropertyBase* property, GetCallback callback
    [all...]
property.h 27 // member for each property defined as an instance of the Property<> class,
30 // property defined to associate them with their string name.
36 // dbus::Property<std::string> name;
37 // dbus::Property<uint16> version;
38 // dbus::Property<dbus::ObjectPath> parent;
39 // dbus::Property<std::vector<std::string> > children;
97 // the current value of the name property would be:
112 // the property value, and whether it emits a signal or a Get() call is
120 // in property.cc because template methods use them
    [all...]
  /external/chromium_org/net/http/
http_auth_handler.h 143 enum Property {
  /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/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
Property.java 11 package org.eclipse.wb.internal.core.model.property;
15 import org.eclipse.wb.internal.core.model.property.category.PropertyCategory;
16 import org.eclipse.wb.internal.core.model.property.editor.PropertyEditor;
22 * {@link Property} is used to display/change properties of ObjectInfo's.
25 * @coverage core.model.property
27 public abstract class Property {
29 * The value that should be used when we don't know real value of {@link Property}. We can not use
50 public Property(PropertyEditor editor) {
61 * @return the title displayed to the user to identify the property.
66 * @return <code>true</code> if this property has a non-default valu
    [all...]
  /external/chromium_org/third_party/leveldatabase/src/db/
corruption_test.cc 168 int Property(const std::string& name) {
169 std::string property; local
171 if (db_->GetProperty(name, &property) &&
172 sscanf(property.c_str(), "%d", &result) == 1) {
299 ASSERT_EQ(1, Property("leveldb.num-files-at-level" + NumberToString(last)));
325 ASSERT_EQ(1, Property("leveldb.num-files-at-level0"));
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_parse.h 85 struct tgsi_property 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/llvm/utils/TableGen/
CodeGenTarget.cpp 394 errs() << "Unsupported SD Node property '" << PropList[i]->getName()
534 Record *Property = PropList->getElementAsRecord(i);
535 assert(Property->isSubClassOf("IntrinsicProperty") &&
536 "Expected a property!");
538 if (Property->getName() == "IntrNoMem")
540 else if (Property->getName() == "IntrReadArgMem")
542 else if (Property->getName() == "IntrReadMem")
544 else if (Property->getName() == "IntrReadWriteArgMem")
546 else if (Property->getName() == "Commutative")
548 else if (Property->getName() == "Throws"
    [all...]
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 85 struct tgsi_property Property;
  /frameworks/base/media/java/android/mtp/
MtpPropertyGroup.java 36 private class Property {
37 // MTP property code
44 Property(int code, int type, int column) {
58 private final Property[] mProperties;
68 // constructs a property group for a list of properties
81 mProperties = new Property[count];
92 private Property createProperty(int code, ArrayList<String> columns) {
178 Log.e(TAG, "unsupported property " + code);
184 return new Property(code, type, columns.size() - 1);
186 return new Property(code, type, -1)
347 Property property = mProperties[propertyIndex]; local
    [all...]
  /frameworks/native/include/input/
KeyCharacterMap.h 184 struct Property {
185 inline Property(int32_t property = 0, int32_t metaState = 0) :
186 property(property), metaState(metaState) { }
188 int32_t property; member in struct:android::KeyCharacterMap::Parser::Property
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
aetypes.py 396 e.g. word, paragraph or property
399 e.g. by index, by range, by name, or by property specifier
402 e.g. its index, its name, or its property specifier
437 class Property(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)
457 # want is the type of this property
458 # which is the property name of this propert
    [all...]
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
ViewNode.java 30 public List<Property> properties = new ArrayList<Property>();
31 public Map<String, Property> namedProperties = new HashMap<String, Property>();
95 Property p = namedProperties.get(name);
107 Property p = namedProperties.get(name);
165 public static class Property {
183 final Property other = (Property) obj;
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 213 std::string PropertyString = "@property";
317 ObjCPropertyDecl *Property = *P;
318 if (Property->getPropertyImplementation() == ObjCPropertyDecl::Optional)
321 DeclContext::lookup_const_result R = IDecl->lookup(Property->getDeclName());
324 // or dynamic declaration. Class is implementing a property coming from
327 Property->getDeclName().getAsIdentifierInfo()))
332 != Property->getPropertyAttributes()) ||
333 !Ctx.hasSameType(ClassProperty->getType(), Property->getType()))
  /external/emma/core/java12/com/vladium/emma/report/
ReportProperties.java 21 import com.vladium.util.Property;
194 // * Creates a property view specific to 'reportType' report type.
212 // * @param type [null/empty indicates type-neutral property]
281 /* view type is no longer a user-overridable property [it is driven by SourceFile attribute presence]
292 result.setHideClasses (Property.toBoolean (hideClasses));
493 // // TODO: this kind of lookup makes the property listing confusing
  /external/v8/src/
ast.cc 35 #include "property-details.h"
36 #include "property.h"
174 ObjectLiteral::Property::Property(Literal* key,
194 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) {
201 bool ObjectLiteral::Property::IsCompileTimeValue() {
208 void ObjectLiteral::Property::set_emit_store(bool emit_store) {
213 bool ObjectLiteral::Property::emit_store() {
248 ObjectLiteral::Property* property = properties()->at(i) local
550 Property* property = expression()->AsProperty(); local
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
ICalendar.java 76 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
77 new LinkedHashMap<String, ArrayList<Property>>();
134 * Adds a Property to this component.
137 public void addProperty(Property prop) {
139 ArrayList<Property> props = mPropsMap.get(name);
141 props = new ArrayList<Property>();
148 * Returns a set of the property names within this component.
149 * @return A set of property names within this component.
158 * @param name The name of the property that should be returned.
161 public List<Property> getProperties(String name)
488 Property property; local
    [all...]
  /external/clang/include/clang/Sema/
ScopeInfo.h 136 /// Access Expression | "Base" Decl | "Property" Decl
138 /// self.property | self (VarDecl) | property (ObjCPropertyDecl)
153 /// The extra flag is "true" if the Base and Property are enough to uniquely
160 /// The "property" decl, as described in the class documentation.
164 const NamedDecl *Property;
176 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
181 const NamedDecl *getProperty() const { return Property; }
184 /// rather than, say, an instance variable or property of another object.
199 return Base == Other.Base && Property == Other.Property
    [all...]

Completed in 389 milliseconds

1 2 3