HomeSort by relevance Sort by last modified time
    Searched refs:propertyString (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/content/shell/tools/plugin/Tests/
PluginScriptableObjectOverridesAllProperties.cpp 63 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
65 int bufferLength = strlen(propertyString) + strlen(message) + 1;
67 snprintf(resultBuffer, bufferLength, "%s%s", message, propertyString);
SlowNPPNew.cpp 62 char* propertyString = pluginTest()->NPN_UTF8FromIdentifier(propertyName);
64 int bufferLength = strlen(propertyString) + strlen(message) + 1;
66 snprintf(resultBuffer, bufferLength, "%s%s", message, propertyString);
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSTransitionData.h 35 , propertyString(string)
46 bool operator==(const TransitionProperty& other) const { return propertyType == other.propertyType && propertyId == other.propertyId && propertyString == other.propertyString; }
50 String propertyString;
  /external/chromium_org/content/shell/tools/plugin/
PluginObject.cpp 779 NPUTF8* propertyString = createCStringFromNPVariant(&args[i]);
781 browser->getstringidentifier(propertyString);
782 free(propertyString);
813 NPUTF8* propertyString = createCStringFromNPVariant(&args[1]);
815 browser->getstringidentifier(propertyString);
816 free(propertyString);
833 NPUTF8* propertyString = createCStringFromNPVariant(&args[1]);
835 browser->getstringidentifier(propertyString);
836 free(propertyString);
869 NPUTF8* propertyString = createCStringFromNPVariant(&args[1])
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleSheet.cpp 282 String propertyString = m_parsedText.substring(start, end - start).stripWhiteSpace();
283 if (propertyString.endsWith(';'))
284 propertyString = propertyString.left(propertyString.length() - 1);
285 size_t colonIndex = propertyString.find(':');
288 String name = propertyString.left(colonIndex).stripWhiteSpace();
289 String value = propertyString.substring(colonIndex + 1, propertyString.length()).stripWhiteSpace();
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
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/core/css/
CSSComputedStyleDeclaration.cpp     [all...]

Completed in 434 milliseconds