Searched defs:property (Results 251 - 275 of 344) sorted by relevance

<<11121314

/external/chromium_org/v8/src/arm/
H A Dfull-codegen-arm.cc1145 // validity or get the property names in a fixed array.
1241 // Convert the entry to a string or (smi) 0 if it isn't a property
1242 // any more. If the property has been removed while iterating, we
1250 // Update the 'each' property or variable from the possibly filtered
1706 ObjectLiteral::Property* property = expr->properties()->at(i); local
1707 if (property->IsCompileTimeValue()) continue;
1709 Literal* key = property->key();
1710 Expression* value = property->value();
1715 switch (property->kind()) {
1719 DCHECK(!CompileTimeValue::IsCompileTimeValue(property
1890 Property* property = expr->target()->AsProperty(); local
2910 Property* property = callee->AsProperty(); local
4224 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/chromium_org/v8/src/arm64/
H A Dfull-codegen-arm64.cc1137 // validity or get the property names in a fixed array.
1227 // Convert the entry to a string or (smi) 0 if it isn't a property
1228 // any more. If the property has been removed while iterating, we
1235 // Update the 'each' property or variable from the possibly filtered
1686 ObjectLiteral::Property* property = expr->properties()->at(i); local
1687 if (property->IsCompileTimeValue()) continue;
1689 Literal* key = property->key();
1690 Expression* value = property->value();
1695 switch (property->kind()) {
1699 DCHECK(!CompileTimeValue::IsCompileTimeValue(property
1869 Property* property = expr->target()->AsProperty(); local
2575 Property* property = callee->AsProperty(); local
3888 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/chromium_org/v8/src/ia32/
H A Dfull-codegen-ia32.cc1076 // validity or get the property names in a fixed array.
1164 // Convert the entry to a string or null if it isn't a property
1165 // anymore. If the property has been removed while iterating, we
1174 // Update the 'each' property or variable from the possibly filtered
1637 ObjectLiteral::Property* property = expr->properties()->at(i); local
1638 if (property->IsCompileTimeValue()) continue;
1640 Literal* key = property->key();
1641 Expression* value = property->value();
1646 switch (property->kind()) {
1654 if (property
1821 Property* property = expr->target()->AsProperty(); local
2812 Property* property = callee->AsProperty(); local
4177 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/chromium_org/v8/src/mips/
H A Dfull-codegen-mips.cc1135 // validity or get the property names in a fixed array.
1229 // Convert the entry to a string or (smi) 0 if it isn't a property
1230 // any more. If the property has been removed while iterating, we
1237 // Update the 'each' property or variable from the possibly filtered
1691 ObjectLiteral::Property* property = expr->properties()->at(i); local
1692 if (property->IsCompileTimeValue()) continue;
1694 Literal* key = property->key();
1695 Expression* value = property->value();
1700 switch (property->kind()) {
1704 DCHECK(!CompileTimeValue::IsCompileTimeValue(property
1879 Property* property = expr->target()->AsProperty(); local
2893 Property* property = callee->AsProperty(); local
4238 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/chromium_org/v8/src/mips64/
H A Dfull-codegen-mips64.cc1130 // validity or get the property names in a fixed array.
1224 // Convert the entry to a string or (smi) 0 if it isn't a property
1225 // any more. If the property has been removed while iterating, we
1232 // Update the 'each' property or variable from the possibly filtered
1688 ObjectLiteral::Property* property = expr->properties()->at(i); local
1689 if (property->IsCompileTimeValue()) continue;
1691 Literal* key = property->key();
1692 Expression* value = property->value();
1697 switch (property->kind()) {
1701 DCHECK(!CompileTimeValue::IsCompileTimeValue(property
1876 Property* property = expr->target()->AsProperty(); local
2893 Property* property = callee->AsProperty(); local
4239 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/chromium_org/v8/src/
H A Dparser.cc382 Property* property = expression->AsProperty(); local
383 return property != NULL &&
384 property->obj()->AsVariableProxy() != NULL &&
385 property->obj()->AsVariableProxy()->is_this();
2282 // guarantee to give the global object an own property.
2363 // property).
/external/chromium_org/v8/src/x64/
H A Dfull-codegen-x64.cc1100 // validity or get the property names in a fixed array.
1198 // Convert the entry to a string or null if it isn't a property
1199 // anymore. If the property has been removed while iterating, we
1208 // Update the 'each' property or variable from the possibly filtered
1670 ObjectLiteral::Property* property = expr->properties()->at(i); local
1671 if (property->IsCompileTimeValue()) continue;
1673 Literal* key = property->key();
1674 Expression* value = property->value();
1679 switch (property->kind()) {
1687 if (property
1854 Property* property = expr->target()->AsProperty(); local
2809 Property* property = callee->AsProperty(); local
4191 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/chromium_org/v8/src/x87/
H A Dfull-codegen-x87.cc1065 // validity or get the property names in a fixed array.
1153 // Convert the entry to a string or null if it isn't a property
1154 // anymore. If the property has been removed while iterating, we
1163 // Update the 'each' property or variable from the possibly filtered
1626 ObjectLiteral::Property* property = expr->properties()->at(i); local
1627 if (property->IsCompileTimeValue()) continue;
1629 Literal* key = property->key();
1630 Expression* value = property->value();
1635 switch (property->kind()) {
1643 if (property
1808 Property* property = expr->target()->AsProperty(); local
2802 Property* property = callee->AsProperty(); local
4166 Property* property = expr->expression()->AsProperty(); local
[all...]
/external/clang/include/clang/AST/
H A DDeclObjC.h126 /// True if this method is the getter or setter for an explicit property.
448 /// \brief Returns the property associated with this method's selector.
450 /// Note that even if this particular method is not marked as a property
451 /// accessor, it is still possible for it to match a property declared in a
941 // the ivar chain is essentially a cached property of ObjCInterfaceDecl.
1865 void addPropertyImplementation(ObjCPropertyImplDecl *property);
1893 /// property, its implementation must be specified in the category's
1897 /// \@property int p1, d1;
2168 /// \brief Represents one property declaration in an Objective-C interface.
2172 /// \@property (assig
2386 ObjCPropertyImplDecl(DeclContext *DC, SourceLocation atLoc, SourceLocation L, ObjCPropertyDecl *property, Kind PK, ObjCIvarDecl *ivarDecl, SourceLocation ivarLoc) argument
[all...]
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp154 /// LLVM type for C ptrdiff_t. Mainly used in property accessor functions.
226 /// Returns a property name and encoding string.
245 /// Push the property attributes into two structure fields.
247 ObjCPropertyDecl *property, bool isSynthesized=true, bool
249 int attrs = property->getPropertyAttributes();
262 // reuse these flags to indicate that this is a protocol property (both set
263 // has no meaning, as a property can't be both synthesized and dynamic)
360 /// Function for implementing synthesized property getters that return an
363 /// Function for implementing synthesized property setters that return an
366 /// Function used for non-object declared property getter
246 PushPropertyAttributes(std::vector<llvm::Constant*> &Fields, ObjCPropertyDecl *property, bool isSynthesized=true, bool isDynamic=true) argument
2067 ObjCPropertyDecl *property = propertyImpl->getPropertyDecl(); local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.ant.core_3.2.200.v20100427.jar ... additionalEntries private org.eclipse.ant.core.Property[] customProperties private org.eclipse.ant.core. ...
H A Dorg.eclipse.jdt.launching_3.5.100.v20100526.jar ... IPath path public int getClasspathProperty () public void setClasspathProperty (int) int property public java.lang.String getLocation () public java. ...
H A Dorg.eclipse.equinox.launcher.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.launcher_1.1.0.v20100507.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.util_1.0.200.v20100503.jar ... public static boolean getBoolean (java.lang.String) String property String prop public static int getInteger (java.lang. ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources.compatibility_3.4.0.v20090505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi.services_3.2.100.v20100503.jar ... lang.Exception { static final long serialVersionUID private final String property private final String reason public void " href="/5.1. ...
/external/libmtp/src/
H A Dlibmtp.c82 char *description; /**< Text description for the property */
83 LIBMTP_property_t id; /**< LIBMTP internal type for the property */
84 uint16_t ptp_id; /**< PTP ID for the property */
91 // This holds the global property mapping table
129 char **unicstring, uint16_t property);
414 * Create a new property mapping entry
434 * Register an MTP or PTP property for data retrieval
436 * @param description Text description of property
437 * @param id libmtp internal property id
438 * @param ptp_id PTP property i
886 LIBMTP_Get_Allowed_Property_Values(LIBMTP_mtpdevice_t *device, LIBMTP_property_t const property, LIBMTP_filetype_t const filetype, LIBMTP_allowed_values_t *allowed_vals) argument
1083 LIBMTP_Is_Property_Supported(LIBMTP_mtpdevice_t *device, LIBMTP_property_t const property, LIBMTP_filetype_t const filetype) argument
3566 get_device_unicode_property(LIBMTP_mtpdevice_t *device, char **unicstring, uint16_t property) argument
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-apache-oro.jar ... optional.perforce.P4Base { public String counter public String property public boolean shouldSetValue public boolean shouldSetProperty public int value public ...
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc1996 // Returns the i-th test property. i can range from 0 to
2015 // Adds a test property to the list. If a property with the same key as the
2016 // supplied property is already represented, the value of this test_property
2115 // xml_element. Returns true if the property is valid.
3360 // delimited XML attributes based on the property key="value" pairs.
3681 // delimited XML attributes based on the property key="value" pairs.
3686 const TestProperty& property = result.GetTestProperty(i); local
3687 attributes << " " << property.key() << "="
3688 << "\"" << EscapeXmlAttribute(property
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/parser/
H A DCSSPropertyParser.cpp125 bool CSSPropertyParser::parseValue(CSSPropertyID property, bool important, argument
130 return parser.parseValue(property, important);
1025 case CSSPropertyTextShadow: // CSS2 property, dropped in CSS2.1, back in CSS3, so treat as CSS3
1160 // Accepting valueless numbers is a quirk of the -webkit prefixed version of the property.
1291 case CSSPropertyWebkitColumnSpan: // none | all | 1 (will be dropped in the unprefixed property)
1590 // Reject the entire property.
1642 addFillValue(clipValue, val1.release()); // The property parsed successfully.
1703 // Add in clip values when we hit the corresponding origin property.
1777 // If we didn't find the property, set an intial value.
1850 // the 'columns' shorthand property
3514 parseSingleGridAreaLonghand(RefPtrWillBeRawPtr<CSSValue>& property) argument
5419 CSSPropertyID property; member in class:blink::ShadowParseContext
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
H A DCSSMetadata.js43 var property = properties[i];
44 if (typeof property === "string") {
45 this._values.push(property);
48 var propertyName = property.name;
646 "-webkit-transition-property": { m: "transitions" },
756 "-webkit-transition-property": 7,
/external/chromium_org/third_party/d3/src/
H A Dd3.js485 for (var property in prototype) object[property] = prototype[property];
684 d3_selectionPrototype.property = function(name, value) {
840 return arguments.length ? this.property("__data__", value) : this.property("__data__");
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest.cc1792 // Returns the i-th test property. i can range from 0 to
1811 // Adds a test property to the list. If a property with the same key as the
1812 // supplied property is already represented, the value of this test_property
1830 // testcase tags. Returns true if the property is valid.
3060 // delimited XML attributes based on the property key="value" pairs.
3313 // delimited XML attributes based on the property key="value" pairs.
3318 const TestProperty& property = result.GetTestProperty(i); local
3319 attributes << " " << property.key() << "="
3320 << "\"" << EscapeXmlAttribute(property
[all...]

Completed in 545 milliseconds

<<11121314