/external/chromium_org/remoting/webapp/ |
D | stats_accumulator.js | 120 var valueList = this.valueLists_[key]; 121 if (!valueList) { 122 valueList = []; 123 this.valueLists_[key] = valueList; 125 return valueList;
|
/external/smack/src/org/jivesoftware/smackx/search/ |
D | SimpleUserSearch.java | 100 List<String> valueList = new ArrayList<String>(); in parseItems() local 101 valueList.add(jid); in parseItems() 102 ReportedData.Field field = new ReportedData.Field("jid", valueList); in parseItems() 119 List<String> valueList = new ArrayList<String>(); in parseItems() local 120 valueList.add(value); in parseItems() 121 ReportedData.Field field = new ReportedData.Field(name, valueList); in parseItems()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | MediaQueryExp.cpp | 206 …diaQueryExp> MediaQueryExp::create(const AtomicString& mediaFeature, CSSParserValueList* valueList) in create() argument 212 if (valueList) { in create() 213 if (valueList->size() == 1) { in create() 214 CSSParserValue* value = valueList->current(); in create() 240 } else if (valueList->size() == 3 && featureWithAspectRatio(mediaFeature)) { in create() 248 for (unsigned i = 0; i < 3; ++i, valueList->next()) { in create() 249 const CSSParserValue* value = valueList->current(); in create()
|
D | CSSParserValues.cpp | 59 delete m_values[i].valueList; in ~CSSParserValueList() 78 void CSSParserValueList::extend(CSSParserValueList& valueList) in extend() argument 80 for (unsigned int i = 0; i < valueList.size(); ++i) in extend() 81 m_values.append(*(valueList.valueAt(i))); in extend() 98 return CSSValueList::createFromParserValueList(valueList); in createCSSValue()
|
D | CSSParserValues.h | 150 CSSParserValueList* valueList; member 279 inline void CSSParserValue::setFromValueList(PassOwnPtr<CSSParserValueList> valueList) in setFromValueList() argument 282 this->valueList = valueList.leakPtr(); in setFromValueList()
|
D | CSSParser-in.cpp | 3600 bool CSSParser::parseFillImage(CSSParserValueList* valueList, RefPtr<CSSValue>& value) in parseFillImage() argument 3602 if (valueList->current()->id == CSSValueNone) { in parseFillImage() 3606 if (valueList->current()->unit == CSSPrimitiveValue::CSS_URI) { in parseFillImage() 3607 value = CSSImageValue::create(completeURL(valueList->current()->string)); in parseFillImage() 3611 if (isGeneratedImageValue(valueList->current())) in parseFillImage() 3612 return parseGeneratedImage(valueList, value); in parseFillImage() 3614 …if (valueList->current()->unit == CSSParserValue::Function && equalIgnoringCase(valueList->current… in parseFillImage() 3623 PassRefPtr<CSSValue> CSSParser::parseFillPositionX(CSSParserValueList* valueList) in parseFillPositionX() argument 3625 int id = valueList->current()->id; in parseFillPositionX() 3634 if (validUnit(valueList->current(), FPercent | FLength)) in parseFillPositionX() [all …]
|
D | CSSGrammar.y | 86 CSSParserValueList* valueList; member 317 %type <valueList> maybe_media_value 333 %type <valueList> key_list 364 %type <valueList> expr 370 %type <valueList> calc_func_expr 371 %type <valueList> calc_func_expr_list 372 %type <valueList> calc_func_paren_expr 382 %type <valueList> ident_list
|
D | StylePropertySerializer.cpp | 549 CSSValueList* valueList = toCSSValueList(values[i].get()); in getLayeredShorthandValue() local 550 numLayers = max(valueList->length(), numLayers); in getLayeredShorthandValue()
|
D | CSSComputedStyleDeclaration.cpp | 2410 RefPtr<CSSValueList> valueList = CSSValueList::createSpaceSeparated(); in getPropertyCSSValue() local 2412 …valueList->append(cssValuePool().createIdentifierValue(commonLigaturesState == FontDescription::Di… in getPropertyCSSValue() 2414 …valueList->append(cssValuePool().createIdentifierValue(discretionaryLigaturesState == FontDescript… in getPropertyCSSValue() 2416 …valueList->append(cssValuePool().createIdentifierValue(historicalLigaturesState == FontDescription… in getPropertyCSSValue() 2417 return valueList; in getPropertyCSSValue()
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
D | AnimationTranslationUtil.cpp | 231 PassOwnPtr<blink::WebAnimation> createWebAnimation(const KeyframeValueList& valueList, const CSSAni… in createWebAnimation() argument 243 for (size_t i = 0; i < valueList.size(); i++) { in createWebAnimation() 244 size_t index = reverse ? valueList.size() - i - 1 : i; in createWebAnimation() 245 const Value* originalValue = static_cast<const Value*>(valueList.at(index)); in createWebAnimation() 247 …if (valueList.size() > 1 && ((reverse && index + 1 < valueList.size()) || (!reverse && index > 0))) in createWebAnimation() 248 … lastOriginalValue = static_cast<const Value*>(valueList.at(reverse ? index + 1 : index - 1)); in createWebAnimation()
|
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | StyleBuilderConverter.cpp | 136 const CSSValueList* valueList = toCSSValueList(value); in convertShadow() local 137 size_t shadowCount = valueList->length(); in convertShadow() 140 const CSSShadowValue* item = toCSSShadowValue(valueList->item(i)); in convertShadow()
|
D | FontBuilder.cpp | 397 CSSValueList* valueList = toCSSValueList(value); in setFontVariantLigaturesValue() local 398 for (size_t i = 0; i < valueList->length(); ++i) { in setFontVariantLigaturesValue() 399 CSSValue* item = valueList->itemWithoutBoundsCheck(i); in setFontVariantLigaturesValue()
|
D | StyleBuilderCustom.cpp | 539 CSSValueList* valueList = toCSSValueList(value); in applyValueCSSPropertyTextIndent() local 540 CSSPrimitiveValue* primitiveValue = toCSSPrimitiveValue(valueList->itemWithoutBoundsCheck(0)); in applyValueCSSPropertyTextIndent() 545 ASSERT(valueList->length() <= 2); in applyValueCSSPropertyTextIndent() 546 CSSPrimitiveValue* eachLineValue = toCSSPrimitiveValue(valueList->item(1)); in applyValueCSSPropertyTextIndent()
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
D | FieldSet.java | 567 final List valueList = (List)value; in writeField() local 572 for (final Object element : valueList) { in writeField() 577 for (final Object element : valueList) { in writeField() 581 for (final Object element : valueList) { in writeField()
|
/external/chromium_org/third_party/protobuf/java/src/main/java/com/google/protobuf/ |
D | FieldSet.java | 687 final List<?> valueList = (List<?>)value; in writeField() local 692 for (final Object element : valueList) { in writeField() 697 for (final Object element : valueList) { in writeField() 701 for (final Object element : valueList) { in writeField()
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | XSSAuditor.cpp | 195 Vector<String> valueList; in semicolonSeparatedValueContainsJavaScriptURL() local 196 value.split(';', valueList); in semicolonSeparatedValueContainsJavaScriptURL() 197 for (size_t i = 0; i < valueList.size(); ++i) { in semicolonSeparatedValueContainsJavaScriptURL() 198 if (protocolIsJavaScript(valueList[i])) in semicolonSeparatedValueContainsJavaScriptURL()
|
/external/guava/guava/src/com/google/common/collect/ |
D | RegularImmutableTable.java | 62 @Nullable private transient volatile ImmutableList<V> valueList; field in RegularImmutableTable 65 ImmutableList<V> result = valueList; in values() 67 valueList = result = ImmutableList.copyOf( in values()
|
D | ImmutableMultimap.java | 204 Collection<V> valueList = builderMultimap.get(checkNotNull(key)); in putAll() local 206 valueList.add(checkNotNull(value)); in putAll()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableMultimap.java | 203 Collection<V> valueList = builderMultimap.get(checkNotNull(key)); in putAll() local 205 valueList.add(checkNotNull(value)); in putAll()
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
D | StyleBuilderFunctions.cpp.tmpl | 394 CSSValueList* valueList = toCSSValueList(value); 395 for (unsigned int i = 0; i < valueList->length(); i++) { 401 … state.styleMap().{{map_fill}}({{property_id}}, currChild, valueList->itemWithoutBoundsCheck(i));
|