HomeSort by relevance Sort by last modified time
    Searched refs:property (Results 201 - 225 of 280) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/v8/test/mjsunit/
string-index.js 69 // In FF this is ignored I think. In V8 it puts a property on the String object
  /external/webkit/WebCore/css/
CSSPropertyNames.in 2 # CSS property names
237 # ANDROID_CSS_TAP_HIGHLIGHT_COLOR: added CSS property (also in iPhone)
256 -webkit-transition-property
  /external/webkit/WebKit/qt/Api/
qwebview.cpp 246 The title of an HTML document can be accessed with the title() property.
248 using the icon() property. If the title or the icon changes, the corresponding
250 textSizeMultiplier() property can be used to change the overall size of
501 \property QWebView::title
504 By default, this property contains an empty string.
516 \property QWebView::url
519 Setting this property clears the view and loads the URL.
521 By default, this property contains an empty, invalid URL.
539 \property QWebView::icon
542 By default, this property contains a null icon
    [all...]
  /frameworks/base/core/java/android/pim/
RecurrenceSet.java 173 ICalendar.Property dtstartProperty =
265 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART");
290 ICalendar.Property durationProp = new ICalendar.Property("DURATION");
324 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART");
349 ICalendar.Property durationProp = new ICalendar.Property("DURATION");
368 ICalendar.Property prop = new ICalendar.Property(propertyName)
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneBase.java 120 * Set a system property, unless we're in unit test mode
123 setSystemProperty(String property, String value) {
127 SystemProperties.set(property, value);
214 * By default old phones won't have the property set but do generate
215 * the RIL_UNSOL_CALL_RING so the default if there is no property is
    [all...]
  /external/webkit/WebCore/editing/
markup.cpp 498 const CSSProperty& property = *it; local
499 CSSValue* value = property.value();
500 // The property value, if it's a percentage, may not reflect the actual computed value.
505 if (RefPtr<CSSValue> computedPropertyValue = computedStyleForElement->getPropertyCSSValue(property.id()))
506 fromComputedStyle->addParsedProperty(CSSProperty(property.id(), computedPropertyValue));
    [all...]
  /external/webkit/WebKit/chromium/src/js/
Tests.js     [all...]
DebuggerAgent.js 500 * Sends "lookup" request for each unresolved property of the object. When
591 // TODO(yurys): allow to send only property names in the response.
    [all...]
  /external/webkit/WebKit/mac/History/
WebHistoryItem.mm 597 - (void)_setTransientProperty:(id)property forKey:(NSString *)key
599 core(_private)->setTransientProperty(key, property);
  /external/webkit/WebKitTools/Scripts/webkitpy/
mock.py 135 return_value = property(__get_return_value, __set_return_value)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiManifestPkgAttrNode.java 194 public boolean isLabelProperty(Object element, String property) {
  /external/webkit/WebKit/qt/WebCoreSupport/
FrameLoaderClientQt.cpp 1255 CSSPropertyID property = qstyleSheetProperties[i]; local
    [all...]
  /frameworks/base/core/java/android/provider/
Calendar.java 822 ICalendar.Property property = local
    [all...]
  /packages/apps/IM/src/com/android/im/imps/
ImpsContactListManager.java 730 if (elem.getTagName().equals(ImpsTags.Property)) {
    [all...]
  /frameworks/base/core/java/android/pim/vcard/
VCardEntry.java 387 /* package */ static class Property {
599 // Probably the "TITLE" property comes before the "ORG" property via
685 * Assume the ';' means the same meaning in N property
744 public void addProperty(final Property property) {
745 final String propName = property.mPropertyName;
746 final Map<String, Collection<String>> paramMap = property.mParameterMap;
747 final List<String> propValueList = property.mPropertyValueList;
748 byte[] propBytes = property.mPropertyBytes
    [all...]
  /external/gtest/test/
gtest_unittest.cc 786 TestProperty property("key", "1");
787 EXPECT_STREQ("key", property.key());
788 EXPECT_STREQ("1", property.value());
793 TestProperty property("key", "1");
794 EXPECT_STREQ("1", property.value());
795 property.SetValue("2");
796 EXPECT_STREQ("2", property.value());
    [all...]
  /prebuilt/common/groovy/
groovy-all-1.7.0.jar 
  /external/v8/src/ia32/
codegen-ia32.cc 572 // For a global variable we build the property reference
573 // <global>.<variable> and perform a (regular non-contextual) property
577 Property property(&global, &key, RelocInfo::kNoPosition);
578 Reference ref(this, &property);
681 Property* property = e->AsProperty(); local
684 if (property != NULL) {
685 // The expression is either a property or a variable proxy that rewrites
686 // to a property
4597 ObjectLiteral::Property* property = node->properties()->at(i); local
4996 Property* property = function->AsProperty(); local
5900 Property* property = node->expression()->AsProperty(); local
7017 Property* property = expression_->AsProperty(); local
7039 Property* property = expression_->AsProperty(); local
7144 Property* property = expression()->AsProperty(); local
    [all...]
  /external/v8/benchmarks/
raytrace.js 43 for (var property in source) {
44 destination[property] = source[property];
  /external/webkit/SunSpider/tests/v8-v4/
v8-raytrace.js 38 for (var property in source) {
39 destination[property] = source[property];
  /external/v8/src/
prettyprinter.cc 265 ObjectLiteral::Property* property = node->properties()->at(i); local
267 Visit(property->key());
269 Visit(property->value());
334 void PrettyPrinter::VisitProperty(Property* node) {
953 case ObjectLiteral::Property::CONSTANT:
954 prop_kind = "PROPERTY - CONSTANT";
956 case ObjectLiteral::Property::COMPUTED:
957 prop_kind = "PROPERTY - COMPUTED";
959 case ObjectLiteral::Property::MATERIALIZED_LITERAL
    [all...]
regexp.js 183 // property from the global object since this may change.
310 // Property of the builtins object for recording the result of the last
311 // regexp match. The property lastMatchInfo includes the matchIndices
  /external/v8/test/cctest/
test-log.cc 577 static v8::Handle<v8::Value> Prop1Getter(v8::Local<v8::String> property,
582 static void Prop1Setter(v8::Local<v8::String> property,
587 static v8::Handle<v8::Value> Prop2Getter(v8::Local<v8::String> property,
    [all...]
  /frameworks/base/core/jni/
android_server_BluetoothEventLoop.cpp 819 jstring property =(jstring) env->GetObjectArrayElement(str_array, 0); local
820 const char *c_property = env->GetStringUTFChars(property, NULL);
829 env->ReleaseStringUTFChars(property, c_property);
    [all...]
  /external/webkit/JavaScriptCore/parser/
Lexer.cpp 879 // Atomize constant strings in case they're later used in property lookup.

Completed in 2875 milliseconds

1 2 3 4 5 6 7 891011>>