Searched refs:propertyString (Results 1 – 5 of 5) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/testing/plugin/Tests/ |
D | PluginScriptableObjectOverridesAllProperties.cpp | 59 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName); in getProperty() local 61 int bufferLength = strlen(propertyString) + strlen(message) + 1; in getProperty() 63 snprintf(resultBuffer, bufferLength, "%s%s", message, propertyString); in getProperty()
|
D | SlowNPPNew.cpp | 58 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName); in getProperty() local 60 int bufferLength = strlen(propertyString) + strlen(message) + 1; in getProperty() 62 snprintf(resultBuffer, bufferLength, "%s%s", message, propertyString); in getProperty()
|
/external/chromium_org/v8/test/webkit/fast/js/ |
D | array-functions-non-arrays.js | 53 var propertyString = name + ":" + object[name]; 75 propertyString += "(" + flags.join(", ") + ")"; 77 propertyStrings.push(propertyString);
|
/external/chromium_org/third_party/WebKit/Source/testing/plugin/ |
D | PluginObject.cpp | 691 NPUTF8* propertyString = createCStringFromNPVariant(&args[i]); in testGetProperty() local 692 NPIdentifier propertyIdentifier = browser->getstringidentifier(propertyString); in testGetProperty() 693 free(propertyString); in testGetProperty() 720 NPUTF8* propertyString = createCStringFromNPVariant(&args[1]); in testHasProperty() local 721 NPIdentifier propertyIdentifier = browser->getstringidentifier(propertyString); in testHasProperty() 722 free(propertyString); in testHasProperty() 735 NPUTF8* propertyString = createCStringFromNPVariant(&args[1]); in testHasMethod() local 736 NPIdentifier propertyIdentifier = browser->getstringidentifier(propertyString); in testHasMethod() 737 free(propertyString); in testHasMethod() 764 NPUTF8* propertyString = createCStringFromNPVariant(&args[1]); in testGetPropertyReturnValue() local [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorStyleSheet.cpp | 358 String propertyString = m_parsedText.substring(start, end - start).stripWhiteSpace(); in endProperty() local 359 if (propertyString.endsWith(';')) in endProperty() 360 propertyString = propertyString.left(propertyString.length() - 1); in endProperty() 361 size_t colonIndex = propertyString.find(':'); in endProperty() 364 String name = propertyString.left(colonIndex).stripWhiteSpace(); in endProperty() 365 …String value = propertyString.substring(colonIndex + 1, propertyString.length()).stripWhiteSpace(); in endProperty()
|