HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 351 - 375 of 718) sorted by null

<<11121314151617181920>>

  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.cpp 334 // Set transform property, if it is not animating. We have to do this here because the transform
    [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/parse-only/
prototype-1.6.0.3.js 86 var property = properties[i], value = source[property];
92 })(property).wrap(method);
97 this.prototype[property] = value;
107 for (var property in source)
108 destination[property] = source[property];
138 for (var property in object) {
139 var value = Object.toJSON(object[property]);
141 results.push(property.toJSON() + ': ' + value)
    [all...]
  /external/v8/src/
parser.cc 864 Property* p1 = e1->AsProperty();
865 Property* p2 = e2->AsProperty();
882 Property* p1 = e1->AsProperty();
883 Property* p2 = e2->AsProperty();
926 // this.x = ...;, where x is a named property. It also determines whether a
938 // Bail out if function already has property assignment that are
939 // not simple this property assignments.
982 Property* property = assignment->target()->AsProperty(); local
984 && property != NUL
994 Property* property = assignment->target()->AsProperty(); local
2356 Property* property = expression ? expression->AsProperty() : NULL; local
3246 ObjectLiteral::Property* property = properties->at(i); local
3317 ObjectLiteral::Property* property = local
3366 ObjectLiteral::Property* property = local
3425 ObjectLiteral::Property* property = local
    [all...]
ast.cc 171 ObjectLiteral::Property::Property(Literal* key, Expression* value) {
188 ObjectLiteral::Property::Property(bool is_getter, FunctionLiteral* value) {
196 bool ObjectLiteral::Property::IsCompileTimeValue() {
203 void ObjectLiteral::Property::set_emit_store(bool emit_store) {
208 bool ObjectLiteral::Property::emit_store() {
244 ObjectLiteral::Property* property = this->properties()->at(i); local
245 Literal* literal = property->key()
737 Property* property = expression()->AsProperty(); local
    [all...]
  /external/webkit/Source/WebCore/bindings/scripts/
CodeGeneratorGObject.pm 290 foreach my $property (@{$properties}) {
291 if (!SkipAttribute($property)) {
292 push(@result, $property);
303 foreach my $property (@{$properties}) {
304 my $writeable = $property->type !~ /^readonly/;
305 my $gtype = GetGValueTypeName($property->signature->type);
311 push(@result, $property);
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 73 static String propertyIdToString(AnimatedPropertyID property)
75 switch (property) {
718 if (valueList.property() == AnimatedPropertyWebkitTransform) {
742 switch (valueList.property()) {
763 anim->setName(propertyIdToString(valueList.property()));
787 ASSERT(valueList.property() == AnimatedPropertyWebkitTransform);
806 anim->setName(propertyIdToString(valueList.property()));
    [all...]
  /frameworks/base/core/jni/
android_bluetooth_common.cpp 567 char *property = NULL; local
574 dbus_message_iter_get_basic(&iter, &property);
580 if (!strncmp(property, properties[i].name, strlen(property)))
590 LOGE("Property type mismatch in get_property: %d, expected:%d, index:%d",
639 void create_prop_array(JNIEnv *env, jobjectArray strArray, Properties *property,
645 char *name = property->name;
646 int prop_type = property->type;
  /frameworks/base/libs/hwui/
FontRenderer.cpp 334 char property[PROPERTY_VALUE_MAX]; local
335 if (property_get(PROPERTY_TEXT_CACHE_WIDTH, property, NULL) > 0) {
337 INIT_LOGD(" Setting text cache width to %s pixels", property);
339 mCacheWidth = atoi(property);
346 if (property_get(PROPERTY_TEXT_CACHE_HEIGHT, property, NULL) > 0) {
348 INIT_LOGD(" Setting text cache width to %s pixels", property);
350 mCacheHeight = atoi(property);
  /frameworks/base/libs/rs/
rsFont.cpp 340 char property[PROPERTY_VALUE_MAX]; local
344 if (property_get(PROPERTY_TEXT_GAMMA, property, NULL) > 0) {
345 gamma = atof(property);
350 if (property_get(PROPERTY_TEXT_BLACK_GAMMA_THRESHOLD, property, NULL) > 0) {
351 blackThreshold = atoi(property);
357 if (property_get(PROPERTY_TEXT_WHITE_GAMMA_THRESHOLD, property, NULL) > 0) {
358 whiteThreshold = atoi(property);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsProvider.java 157 * Modify the system property used to communicate the version of
158 * this table, for tables which have such a property. (The Settings
163 // Update the system property *first*, so if someone is listening for
165 // the system property will be updated and they'll get the new data.
168 String property = null, table = uri.getPathSegments().get(0); local
170 property = Settings.System.SYS_PROP_SETTING_VERSION;
173 property = Settings.Secure.SYS_PROP_SETTING_VERSION;
177 if (property != null) {
178 long version = SystemProperties.getLong(property, 0) + 1;
179 if (LOCAL_LOGV) Log.v(TAG, "property: " + property + "=" + version)
    [all...]
  /libcore/xml/src/main/java/org/kxml2/io/
KXmlParser.java     [all...]
  /external/webkit/Source/WebCore/css/
CSSGrammar.y 247 %type <integer> property
1348 property: label
    [all...]
  /external/webkit/Source/WebCore/inspector/front-end/
ConsoleView.js 410 var property = properties[i];
412 if (dotNotation && !/^[a-zA-Z_$][a-zA-Z0-9_$]*$/.test(property))
416 if (!/^[0-9]+$/.test(property))
417 property = quoteUsed + property.escapeCharacters(quoteUsed + "\\") + quoteUsed;
418 property += "]";
421 if (property.length < prefix.length)
423 if (property.indexOf(prefix) !== 0)
426 results.push(property);
491 // This case requires a separate bound function as its isMacOnly property should not be shared among different shortcut handlers
    [all...]
  /external/chromium/chrome/browser/tab_contents/
thumbnail_generator.cc 65 // Returns a property accessor used for attaching a TabContents to a
350 TabContents** property = GetTabContentsAccessor()->GetProperty( local
352 if (!property) {
357 TabContents* contents = *property;
  /external/harfbuzz/src/
harfbuzz-khmer.c 483 unsigned char property = (getKhmerCharClass(item->string[i+1]) & CF_CLASS_MASK) == CC_CONSONANT3 ? local
486 properties[len] = property;
490 properties[len] = property;
553 KHDEBUG(" %d: %4x property=%x", i, reordered[i], properties[i]);
harfbuzz-shaper-private.h 127 hb_uint32 property; member in struct:__anon6076
  /external/qemu/
qemu-config.c 267 .name = "property",
538 char driver[64], property[64]; local
542 rc = sscanf(str, "%63[^.].%63[^=]%n", driver, property, &offset);
550 qemu_opt_set(opts, "property", property);
  /external/webkit/Source/JavaScriptCore/parser/
ASTBuilder.h 97 typedef PropertyNode* Property;
205 ExpressionNode* createBracketAccess(ExpressionNode* base, ExpressionNode* property, bool propertyHasAssignments, int start, int divot, int end)
207 BracketAccessorNode* node = new (m_globalData) BracketAccessorNode(m_globalData, base, property, propertyHasAssignments);
212 ExpressionNode* createDotAccess(ExpressionNode* base, const Identifier& property, int start, int divot, int end)
214 DotAccessorNode* node = new (m_globalData) DotAccessorNode(m_globalData, base, property);
283 PropertyListNode* createPropertyList(PropertyNode* property) { return new (m_globalData) PropertyListNode(m_globalData, property); }
284 PropertyListNode* createPropertyList(PropertyNode* property, PropertyListNode* tail) { return new (m_globalData) PropertyListNode(m_globalData, property, tail); }
589 const Identifier& getName(Property property) const { return property->name();
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 251 String GraphicsLayer::animationNameForTransition(AnimatedPropertyID property)
254 return makeString("-|transition", static_cast<char>(property), '-');
323 ASSERT(valueList.property() == AnimatedPropertyWebkitTransform);
  /external/zlib/contrib/delphi/
ZLib.pas 54 property OnProgress: TNotifyEvent read FOnProgress write FOnProgress;
69 The Position property returns the number of uncompressed bytes of
94 property CompressionRate: Single read GetCompressionRate;
95 property OnProgress;
108 The Position property returns the number of bytes of uncompressed data that
123 property OnProgress;
  /hardware/msm7k/libgralloc-qsd8k/
framebuffer.cpp 225 char property[PROPERTY_VALUE_MAX]; local
226 if (property_get("debug.sf.hw", property, NULL) > 0 && atoi(property) == 0)
  /external/v8/src/arm/
full-codegen-arm.cc 691 Property* prop = variable->AsProperty();
764 // property. Use (keyed) IC to set the initial value. We
925 // validity or get the property names in a fixed array.
1173 Property* property = rewrite->AsProperty(); local
1265 Property* property = var->AsProperty(); local
1420 ObjectLiteral::Property* property = expr->properties()->at(i); local
1576 Property* property = expr->target()->AsProperty(); local
    [all...]
  /external/v8/src/ia32/
full-codegen-ia32.cc 655 Property* prop = variable->AsProperty();
722 // property. Use (keyed) IC to set the initial value. We cannot
881 // validity or get the property names in a fixed array.
1180 Property* property = rewrite->AsProperty(); local
1211 Property* property = var->AsProperty(); local
1374 ObjectLiteral::Property* property = expr->properties()->at(i); local
1522 Property* property = expr->target()->AsProperty(); local
    [all...]
  /external/v8/src/x64/
full-codegen-x64.cc 658 Property* prop = variable->AsProperty();
724 // property. Use (keyed) IC to set the initial value. We
884 // validity or get the property names in a fixed array.
1192 Property* property = rewrite->AsProperty(); local
1223 Property* property = var->AsProperty(); local
1384 ObjectLiteral::Property* property = expr->properties()->at(i); local
1532 Property* property = expr->target()->AsProperty(); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTM.java 183 * Set a run time property for this DTM instance.
185 * @param property a <code>String</code> value
188 public void setProperty(String property, Object value);
572 * standard input, for example), the value of this property is unknown.
587 * it is not known, the value of this property is null.
605 * either "yes" or "no". This property is derived from the optional
617 * property is derived from the XML declaration optionally present at the
642 * it exists. Otherwise this property has no value.
651 * no external subset or if it has no public identifier, this property
757 * declarations processed] property of the document information ite
    [all...]

Completed in 774 milliseconds

<<11121314151617181920>>