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

<<11121314151617181920>>

  /external/libvpx/vp8/common/x86/
iwalsh_sse2.asm 6 ; tree. An additional intellectual property rights grant can be found
  /external/libvpx/vp8/decoder/arm/neon/
dequant_idct_neon.asm 6 ; tree. An additional intellectual property rights grant can be found
  /external/libvpx/vp8/encoder/arm/armv6/
vp8_sad16x16_armv6.asm 6 ; tree. An additional intellectual property rights grant can be found
  /external/libvpx/vp8/encoder/arm/neon/
fastquantizeb_neon.asm 6 ; tree. An additional intellectual property rights grant can be found
  /external/v8/test/es5conform/
harness-adapt.js 38 // The harness uses the IE specific .description property of exceptions but
  /external/v8/test/mjsunit/
debug-step.js 34 // the global property "state" is initially zero.
for-in.js 88 // Test that for-in in the global scope works with a keyed property as "each".
object-define-properties.js 30 // object-define-property.js, this file only contains tests specific for
object-prevent-extensions.js 46 // Try when the object has an existing property.
object-toprimitive.js 30 // correctly. Specifically, does it call [[Get]] only once per property.
array-slice.js 248 // Check slicing on arguments object when length property has been set.
259 // Check slicing on arguments object when length property has been set to
  /external/v8/test/mjsunit/regress/
regress-91517.js 28 // Getting property names of an object with a prototype chain that
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
domconfigcanonicalform1.js 75 * @see http://www.w3.org/TR/2004/REC-DOM-Level-3-Core-20040407/core#DOMConfiguration-property
  /external/webkit/Source/JavaScriptCore/jit/
JITStubs.cpp 861 // FIXME: Cache property access for immediates.
3243 JSString* property = stackFrame.args[1].jsString(); local
3421 unsigned property = stackFrame.args[1].int32(); local
    [all...]
  /external/webkit/Source/WebCore/bridge/qt/
qt_instance.cpp 218 QMetaProperty prop = meta->property(i);
357 val = obj->property(m_dynamicProperty);
  /hardware/ril/mock-ril/src/cpp/
js_support.cpp 50 v8::Handle<v8::Value> RadioStateGetter(v8::Local<v8::String> property,
55 void RadioStateSetter(v8::Local<v8::String> property,
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Status.java 305 * @param property The system property to fetch
306 * @param alt The default value, if the property doesn't exist
308 private void setSummary(String preference, String property, String alt) {
311 SystemProperties.get(property, alt));
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeUtil.java 368 public static boolean isSystemIme(InputMethodInfo property) {
369 return (property.getServiceInfo().applicationInfo.flags
  /external/webkit/Source/WebCore/css/
CSSParser.cpp 335 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createIdentifierValue(valueID), important);
336 declaration->addParsedProperty(property);
342 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createColorValue(color), important);
343 declaration->addParsedProperty(property);
426 CSSProperty property(propertyId, stylesheet->document()->cssPrimitiveValueCache()->createValue(number, unit), important);
427 declaration->addParsedProperty(property);
845 * in CSS 2, Appendix F. Property index
2971 CSSPropertyID property = static_cast<CSSPropertyID>(propId); local
4699 CSSPropertyID property; member in struct:WebCore::ShadowParseContext
6433 CSSProperty* property = m_parsedProperties[i]; local
6537 CSSProperty* property = m_parsedProperties[i]; local
    [all...]
  /external/webkit/Source/JavaScriptCore/bytecompiler/
NodesCodegen.cpp 269 RegisterID* property = generator.emitNode(m_subscript); local
271 return generator.emitGetArgumentByVal(generator.finalDestination(dst), generator.uncheckedRegisterForArguments(), property);
275 RegisterID* property = generator.emitNode(m_subscript); local
277 return generator.emitGetByVal(generator.finalDestination(dst), base.get(), property);
387 RegisterID* property = generator.emitNode(m_subscript); local
389 RefPtr<RegisterID> function = generator.emitGetByVal(generator.tempDestination(dst), base.get(), property);
593 RefPtr<RegisterID> property = generator.emitNode(m_subscript); local
596 RefPtr<RegisterID> value = generator.emitGetByVal(generator.newTemporary(), base.get(), property.get());
608 generator.emitPutByVal(base.get(), property.get(), value.get());
768 RefPtr<RegisterID> property = generator.emitNode(m_subscript); local
1257 RefPtr<RegisterID> property = generator.emitNodeForLeftHandSide(m_subscript, m_rightHasAssignments, m_right->isPure(generator)); local
1271 RefPtr<RegisterID> property = generator.emitNodeForLeftHandSide(m_subscript, m_rightHasAssignments, m_right->isPure(generator)); local
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebpage.cpp     [all...]
  /build/tools/releasetools/
ota_from_target_files 462 def GetBuildProp(property, z):
466 if not property:
468 m = re.search(re.escape(property) + r"=(.*)\n", bp)
470 raise common.ExternalError("couldn't find %s in build.prop" % (property,))
  /external/chromium/chrome/browser/renderer_host/
render_widget_host_view_mac.h 132 @property(assign, nonatomic) NSRect caretRect;
  /external/chromium/third_party/libjingle/source/talk/third_party/libudev/
libudev.h 141 int udev_enumerate_add_match_property(struct udev_enumerate *udev_enumerate, const char *property, const char *value);
  /external/protobuf/python/google/protobuf/
reflection.py 186 """Returns the name of the public property attribute which
417 cls.Extensions = property(lambda self: _ExtensionDict(self))
421 """Adds a public property for a protocol message field.
422 Clients can use this property to get and (in the case
446 """Adds a public property for a "repeated" protocol message field. Clients
447 can use this property to get the value of the field, which will be either a
486 setattr(cls, property_name, property(getter, setter, doc=doc))
490 """Adds a public property for a nonrepeated, scalar protocol message field.
491 Clients can use this property to get and directly set the value of the field.
492 Note that when the client sets the value of a field by using this property,
    [all...]

Completed in 2517 milliseconds

<<11121314151617181920>>