Searched defs:propertyName (Results 26 - 50 of 69) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DPrintContext.cpp309 String PrintContext::pageProperty(Frame* frame, const char* propertyName, int pageNumber) argument
318 if (!strcmp(propertyName, "margin-left")) {
323 if (!strcmp(propertyName, "line-height"))
325 if (!strcmp(propertyName, "font-size"))
327 if (!strcmp(propertyName, "font-family"))
329 if (!strcmp(propertyName, "size"))
332 return String("pageProperty() unimplemented for: ") + propertyName;
/external/chromium_org/third_party/WebKit/Source/testing/plugin/
H A DPluginTest.cpp221 bool PluginTest::NPN_GetProperty(NPObject* npObject, NPIdentifier propertyName, NPVariant* value) argument
223 return browser->getproperty(m_npp, npObject, propertyName, value);
226 bool PluginTest::NPN_RemoveProperty(NPObject* npObject, NPIdentifier propertyName) argument
228 return browser->removeproperty(m_npp, npObject, propertyName);
/external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
H A DV8TestInterface.cpp948 AtomicString propertyName = toWebCoreAtomicString(name); local
953 collection->getItem(propertyName, element0Enabled, element0, element1Enabled, element1);
998 AtomicString propertyName = toWebCoreAtomicString(name); local
1000 bool result = collection->namedPropertyQuery(propertyName, es);
H A DV8TestObject.cpp5231 AtomicString propertyName = toWebCoreAtomicString(name); local
5232 String element = collection->namedItem(propertyName);
5262 AtomicString propertyName = toWebCoreAtomicString(name); local
5264 bool result = collection->namedPropertyQuery(propertyName, es);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp2956 PassRefPtr<CSSValue> CSSComputedStyleDeclaration::getPropertyCSSValue(const String& propertyName) argument
2958 CSSPropertyID propertyID = cssPropertyID(propertyName);
2965 String CSSComputedStyleDeclaration::getPropertyValue(const String &propertyName) argument
2967 CSSPropertyID propertyID = cssPropertyID(propertyName);
/external/chromium_org/v8/src/
H A Dd8.js1288 result += value.propertyName(i);
1936 ProtocolValue.prototype.propertyName = function(index) {
/external/chromium_org/third_party/WebKit/Source/core/testing/
H A DInternals.cpp1776 String Internals::pageProperty(String propertyName, int pageNumber, ExceptionState& es) const argument
1783 return PrintContext::pageProperty(frame(), propertyName.utf8().data(), pageNumber);
/external/v8/src/
H A Dd8.js1646 result += value.propertyName(i);
2553 ProtocolValue.prototype.propertyName = function(index) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
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.ant.core_3.2.200.v20100427.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.contenttype_3.4.100.v20100505-1235.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.registry_3.5.0.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.runtime_3.6.0.v20100505.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.engine_2.0.0.v20100606.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.core.resources_3.6.1.R36x_v20101007-1215.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/smali/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DSerializedScriptValue.cpp858 v8::Local<v8::Value> propertyName = m_propertyNames->Get(m_index); local
861 if (propertyName.IsEmpty())
863 bool hasStringProperty = propertyName->IsString() && composite()->HasRealNamedProperty(propertyName.As<v8::String>());
866 bool hasIndexedProperty = !hasStringProperty && propertyName->IsUint32() && composite()->HasRealIndexedProperty(propertyName->Uint32Value());
869 isAccessor = hasStringProperty && composite()->HasRealNamedCallbackProperty(propertyName.As<v8::String>());
873 m_propertyName = propertyName;
2164 v8::Local<v8::Value> propertyName = element(i); local
2166 object->Set(propertyName, propertyValu
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInjectedScriptCanvasModuleSource.js568 propertyName: function()
1047 * @param {string} propertyName
1050 _wrapPropertySetter: function(resource, originalObject, propertyName)
1054 resource._registerBoundResource(propertyName, value);
1057 originalObject[propertyName] = Resource.wrappedObject(value);
1060 var args = [propertyName, value];
1062 originalObject[propertyName] = Resource.wrappedObject(value);
2833 result.property = replayableCall.propertyName();
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFrameImpl.cpp1469 WebString WebFrameImpl::pageProperty(const WebString& propertyName, int pageIndex) argument
1472 return m_printContext->pageProperty(frame(), propertyName.utf8().data(), pageIndex);
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp1648 IdentifierInfo &propertyName,
1679 &propertyName,
1697 Selector Sel = PP.getSelectorTable().getNullarySelector(&propertyName);
1718 &propertyName);
1752 << &propertyName << Context.getObjCInterfaceType(IFace));
1647 ActOnClassPropertyRefExpr(IdentifierInfo &receiverName, IdentifierInfo &propertyName, SourceLocation receiverNameLoc, SourceLocation propertyNameLoc) argument
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/
H A Dpdebuild.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/pde/ org/eclipse/pde/build/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
H A Dperformanceui.jarMETA-INF/MANIFEST.MF .project about.html plugin.xml build.properties images/FAIL ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 656 milliseconds

123