HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 151 - 175 of 714) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/v8/test/mjsunit/
object-define-property.js 108 // Check that we can't add property with undefined attributes.
116 // Make sure that we can add a property with an empty descriptor and
134 // with default values if called with non existing property (otherwise
143 assertTrue(/Cannot redefine property/.test(e));
185 assertTrue(/Cannot redefine property/.test(e));
193 assertTrue(/Cannot redefine property/.test(e));
238 // an existing property with both a getter and a setter.
275 // setting from the redefined property (in this case true) is used.
281 // Writing to the property should now be allowed
286 // Redefine with non configurable data property
    [all...]
store-dictionary.js 30 // Function that stores property 'x' on an object.
33 // Create object and force it to dictionary mode by deleting property.
44 // Test that READ_ONLY property attribute is respected. Make 'x'
61 // Slow case object without x property.
  /frameworks/base/media/mtp/
MtpServer.cpp 616 MtpObjectProperty property = mRequest.getParameter(2); local
618 MtpDebug::getObjectPropCodeName(property));
620 return mDatabase->getObjectPropertyValue(handle, property, mData);
627 MtpObjectProperty property = mRequest.getParameter(2); local
629 MtpDebug::getObjectPropCodeName(property));
631 return mDatabase->setObjectPropertyValue(handle, property, mData);
635 MtpDeviceProperty property = mRequest.getParameter(1); local
637 MtpDebug::getDevicePropCodeName(property));
639 return mDatabase->getDevicePropertyValue(property, mData);
643 MtpDeviceProperty property = mRequest.getParameter(1) local
651 MtpDeviceProperty property = mRequest.getParameter(1); local
665 uint32_t property = mRequest.getParameter(3); local
1068 MtpProperty* property = mDatabase->getObjectPropertyDesc(propCode, format); local
1079 MtpProperty* property = mDatabase->getDevicePropertyDesc(propCode); local
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.cpp 177 // This method does the following preprocessing of |propertyText| with |overwrite| == false and |index| past the last active property:
178 // - If the last property (if present) has no subsequent whitespace in the style declaration, a space is prepended to |propertyText|.
179 // - If the last property (if present) has no closing ";", the ";" is prepended to the current |propertyText| value.
181 // The propertyText (if not empty) is checked to be a valid style declaration (containing at least one property). If not,
205 // At least one property + the bogus property added just above should be present.
207 *errorString = "Invalid property value";
213 *errorString = "Invalid property value";
220 InspectorStyleProperty& property = allProperties.at(index);
221 propertyStart = property.sourceData.range.start
264 InspectorStyleProperty& property = allProperties.at(index); local
322 InspectorStyleProperty& property = allProperties.at(index); local
340 InspectorStyleProperty& property = allProperties.at(i); local
371 const InspectorStyleProperty& property = allProperties.at(indexToDisable); local
473 RefPtr<InspectorObject> property = InspectorObject::create(); local
    [all...]
  /bootable/recovery/tools/ota/
Android.mk 19 LOCAL_MODULE := add-property-tag
22 LOCAL_SRC_FILES := add-property-tag.c
  /cts/tests/tests/os/src/android/os/cts/
BuildTest.java 65 * @param property name passed to getprop
66 * @param expected value of the property
68 private void assertProperty(String message, String property, String expected)
70 Process process = new ProcessBuilder("getprop", property).start();
85 * Check that a property is not set by scanning through the list of properties returned by
86 * getprop, since calling getprop on an property set to "" and on a non-existent property
90 * @param property name passed to getprop
92 private void assertNoPropertySet(String message, String property) throws IOException {
99 assertFalse(message + "Property found: " + line
    [all...]
  /external/chromium/chrome/browser/renderer_host/
accelerated_plugin_view_mac.h 104 @property NSSize cachedSize;
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_menu_cocoa_controller.h 27 @property(nonatomic, readonly) NSMenu* menu;
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
autocomplete_text_field.h 121 @property(nonatomic) AutocompleteTextFieldObserver* observer;
  /external/emma/core/java12/com/vladium/emma/rt/
RT.java 15 import com.vladium.util.Property;
184 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_FILE, local
186 return new File (property);
199 final String property = appProperties.getProperty (EMMAProperties.PROPERTY_COVERAGE_DATA_OUT_MERGE, local
201 return Property.toBoolean (property);
  /external/webkit/Source/JavaScriptCore/bytecompiler/
BytecodeGenerator.h 124 // property. Returns false if for any reason the property cannot be safely
126 // VariableObject that defines the property. If the property cannot be found
307 RegisterID* emitIn(RegisterID* dst, RegisterID* property, RegisterID* base) { return emitBinaryOp(op_in, dst, property, base, OperandTypes()); }
309 RegisterID* emitResolve(RegisterID* dst, const Identifier& property);
313 RegisterID* emitResolveBase(RegisterID* dst, const Identifier& property);
314 RegisterID* emitResolveBaseForPut(RegisterID* dst, const Identifier& property);
315 RegisterID* emitResolveWithBase(RegisterID* baseDst, RegisterID* propDst, const Identifier& property);
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ScopeChainSidebarPane.js 111 WebInspector.ScopeVariableTreeElement = function(property)
113 WebInspector.ObjectPropertyTreeElement.call(this, property);
153 result = current.property.name + "." + result;
155 result = current.property.name;
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.h 148 // Does this animation/transition involve the given property?
149 virtual bool affectsProperty(int /*property*/) const { return false; }
151 bool isAnimatingProperty(int property, bool acceleratedOnly, bool isRunningNow) const
157 return (!waitingToStart() && !postActive()) && affectsProperty(property);
159 return !postActive() && affectsProperty(property);
187 static HashSet<int> animatableShorthandsAffectingProperty(int property);
AnimationController.h 60 bool pauseTransitionAtTime(RenderObject*, const String& property, double t); // To be used only for testing
  /frameworks/base/include/ui/
KeyCharacterMap.h 140 struct Property {
141 inline Property(int32_t property = 0, int32_t metaState = 0) :
142 property(property), metaState(metaState) { }
144 int32_t property; member in struct:android::KeyCharacterMap::Parser::Property
  /frameworks/base/libs/hwui/
GradientCache.cpp 40 char property[PROPERTY_VALUE_MAX]; local
41 if (property_get(PROPERTY_GRADIENT_CACHE_SIZE, property, NULL) > 0) {
42 INIT_LOGD(" Setting gradient cache size to %sMB", property);
43 setMaxSize(MB(atof(property)));
LayerCache.cpp 35 char property[PROPERTY_VALUE_MAX]; local
36 if (property_get(PROPERTY_LAYER_CACHE_SIZE, property, NULL) > 0) {
37 INIT_LOGD(" Setting layer cache size to %sMB", property);
38 setMaxSize(MB(atof(property)));
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
WayPointLabelProvider.java 65 public boolean isLabelProperty(Object element, String property) {
  /external/bluetooth/bluez/plugins/
hal.c 84 const char *property = "system.formfactor"; local
102 dbus_message_append_args(message, DBUS_TYPE_STRING, &property,
  /external/chromium/chrome/browser/ui/cocoa/
gradient_button_cell.h 95 // our isMouseInside_ property. Public since it's called from the
110 @property(assign, nonatomic) CGFloat hoverAlpha;
114 @property(retain, nonatomic) NSImage* overlayImage;
  /external/webkit/Source/WebCore/svg/properties/
SVGAnimatedListPropertyTearOff.h 56 int removeItemFromList(SVGProperty* property, bool shouldSynchronizeWrappers)
60 return static_pointer_cast<SVGListPropertyTearOff<PropertyType> >(m_baseVal)->removeItemFromList(static_cast<ListItemTearOff*>(property), shouldSynchronizeWrappers);
SVGAnimatedProperty.h 65 static PassRefPtr<TearOffType> lookupOrCreateWrapper(SVGElement* element, const QualifiedName& attributeName, const AtomicString& attributeIdentifier, PropertyType& property)
70 wrapper = TearOffType::create(element, attributeName, property);
  /external/webkit/Tools/BuildSlaveSupport/build.webkit.org-config/public_html/LeaksViewer/
RecentBuildsLoader.js 42 revision: parseInt(build.properties.first(function(property) { return property[0] === "got_revision"; })[1], 10),
  /frameworks/base/services/surfaceflinger/DisplayHardware/
DisplayHardware.cpp 159 char property[PROPERTY_VALUE_MAX]; local
160 if (property_get("debug.sf.hw", property, NULL) > 0) {
161 if (atoi(property) == 0) {
215 /* Read density from build-specific ro.sf.lcd_density property
218 if (property_get("qemu.sf.lcd_density", property, NULL) <= 0) {
219 if (property_get("ro.sf.lcd_density", property, NULL) <= 0) {
221 strcpy(property, "160");
225 mDpiX = mDpiY = atoi(property);
227 mDensity = atoi(property) * (1.0f/160.0f);
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryConstructor.java 129 public void onPropertyCreated(VCardProperty property) {
130 mCurrentEntry.addProperty(property);

Completed in 1142 milliseconds

1 2 3 4 5 67 8 91011>>