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

  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 307 final VCardProperty propertyData = constructPropertyData(line);
309 final String propertyNameUpper = propertyData.getName().toUpperCase();
310 final String propertyRawValue = propertyData.getRawValue();
325 parseItemInter(propertyData, propertyNameUpper);
364 final VCardProperty propertyData = new VCardProperty();
382 propertyData.setName(propertyName);
383 propertyData.setRawValue( i < length - 1 ? line.substring(i + 1) : "");
384 return propertyData;
390 propertyData.addGroup(groupName);
395 propertyData.setName(propertyName)
    [all...]
VCardParserImpl_V30.java 134 protected void handleParams(VCardProperty propertyData, final String params)
137 super.handleParams(propertyData, params);
142 handleAnyParam(propertyData, strArray[0], strArray[1]);
153 VCardProperty propertyData, final String paramName, final String paramValue) {
154 splitAndPutParam(propertyData, paramName, paramValue);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSPropertySourceData.h 83 void trace(Visitor* visitor) { visitor->trace(propertyData); }
85 WillBeHeapVector<CSSPropertySourceData> propertyData;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleSheet.cpp 206 WillBeHeapVector<CSSPropertySourceData>& propertyData = ruleData->styleSourceData->propertyData;
207 unsigned size = propertyData.size();
212 CSSPropertySourceData* nextData = &(propertyData.at(0));
215 nextData = i < size - 1 ? &(propertyData.at(i + 1)) : 0;
294 m_currentRuleDataStack.last()->styleSourceData->propertyData.append(
343 WillBeHeapVector<CSSPropertySourceData>& commentPropertyData = sourceData.first()->styleSourceData->propertyData;
346 CSSPropertySourceData& propertyData = commentPropertyData.at(0);
347 if (propertyData.range.length() != commentText.length())
351 m_currentRuleDataStack.last()->styleSourceData->propertyData.append
    [all...]

Completed in 105 milliseconds