HomeSort by relevance Sort by last modified time
    Searched refs:valueList (Results 1 - 25 of 38) sorted by null

1 2

  /external/webkit/Source/WebCore/css/
MediaQueryExp.cpp 39 inline MediaQueryExp::MediaQueryExp(const AtomicString& mediaFeature, CSSParserValueList* valueList)
44 if (valueList) {
45 if (valueList->size() == 1) {
46 CSSParserValue* value = valueList->current();
56 valueList->next();
57 } else if (valueList->size() > 1) {
65 while ((value = valueList->current()) && isValid) {
73 value = valueList->next();
CSSParserValues.cpp 58 void CSSParserValueList::extend(CSSParserValueList& valueList)
60 for (unsigned int i = 0; i < valueList.size(); ++i)
61 m_values.append(*(valueList.valueAt(i)));
makevalues.pl 70 static const char* const valueList[] = {
91 return valueList[id];
MediaQueryEvaluator.cpp 176 CSSValueList* valueList = static_cast<CSSValueList*>(value);
177 if (valueList->length() == 3) {
178 CSSValue* i0 = valueList->itemWithoutBoundsCheck(0);
179 CSSValue* i1 = valueList->itemWithoutBoundsCheck(1);
180 CSSValue* i2 = valueList->itemWithoutBoundsCheck(2);
CSSGrammar.y 81 CSSParserValueList* valueList;
236 %type <valueList> maybe_media_value
244 %type <valueList> key_list
274 %type <valueList> expr
280 %type <valueList> calc_func_expr
281 %type <valueList> calc_func_expr_list
282 %type <valueList> calc_func_paren_expr
    [all...]
CSSStyleApplyProperty.cpp 251 CSSValueList* valueList = static_cast<CSSValueList*>(value);
252 for (unsigned int i = 0; i < valueList->length(); i++) {
258 (selector->*m_mapFill)(m_propertyId, currChild, valueList->itemWithoutBoundsCheck(i));
CSSParser.cpp     [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardSourceDetector.java 104 final List<String> valueList = property.getValueList();
107 && valueList.size() > 0) {
108 final String versionString = valueList.get(0);
120 if (valueList.size() > 0) {
121 mSpecifiedCharset = valueList.get(0);
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.cpp 316 static inline const TransformOperations* operationsAt(const KeyframeValueList& valueList, size_t index)
318 return static_cast<const TransformAnimationValue*>(valueList.at(index))->value();
321 void GraphicsLayer::fetchTransformOperationList(const KeyframeValueList& valueList, TransformOperationList& list, bool& isValid, bool& hasBigRotation)
323 ASSERT(valueList.property() == AnimatedPropertyWebkitTransform);
329 if (valueList.size() < 2)
334 for ( ; firstIndex < valueList.size(); ++firstIndex) {
335 if (operationsAt(valueList, firstIndex)->operations().size() > 0)
339 if (firstIndex >= valueList.size())
342 const TransformOperations* firstVal = operationsAt(valueList, firstIndex);
345 for (size_t i = firstIndex + 1; i < valueList.size(); ++i)
    [all...]
  /frameworks/compile/libbcc/lib/ExecutionEngine/
ScriptCached.cpp 80 char const **valueList) {
93 if (valueList) {
95 *valueList++ = mPragmas[i].second;
ScriptCompiled.cpp 95 char const **valueList) {
106 if (valueList) { *valueList++ = I->second.c_str(); }
ScriptCached.h 123 char const **valueList);
MCCacheWriter.cpp 156 vector<char const *> valueList(pragmaCount);
157 mpOwner->getPragmaList(pragmaCount, &*keyList.begin(), &*valueList.begin());
161 char const *value = valueList[i];
Script.h 194 char const **valueList);
ScriptCompiled.h 132 char const **valueList);
Script.cpp 686 char const **valueList) {
690 m##STATUS->getPragmaList(pragmaListSize, keyList, valueList); \
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp 233 static bool animationHasStepsTimingFunction(const KeyframeValueList& valueList, const Animation* anim)
238 for (unsigned i = 0; i < valueList.size(); ++i) {
239 const TimingFunction* timingFunction = valueList.at(i)->timingFunction();
605 bool GraphicsLayerCA::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset)
609 if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2)
615 if (valueList.property() == AnimatedPropertyOpacity)
621 if (animationHasStepsTimingFunction(valueList, anim))
625 if (valueList.property() == AnimatedPropertyWebkitTransform)
626 createdAnimations = createTransformAnimationsFromKeyframes(valueList, anim, animationName, timeOffset, boxSize);
628 createdAnimations = createAnimationFromKeyframes(valueList, anim, animationName, timeOffset)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 899 bool GraphicsLayerAndroid::addAnimation(const KeyframeValueList& valueList,
905 if (!anim || anim->isEmptyOrZeroDuration() || valueList.size() < 2)
909 if (valueList.property() == AnimatedPropertyWebkitTransform) {
910 createdAnimations = createTransformAnimationsFromKeyframes(valueList,
    [all...]
GraphicsLayerAndroid.h 88 virtual bool addAnimation(const KeyframeValueList& valueList,
  /frameworks/compile/libbcc/bcinfo/tools/
main.cpp 126 const char **valueList = ME->getPragmaValueList();
128 printf("pragma[%u]: %s - %s\n", i, keyList[i], valueList[i]);
  /external/protobuf/java/src/main/java/com/google/protobuf/
FieldSet.java 567 final List valueList = (List)value;
572 for (final Object element : valueList) {
577 for (final Object element : valueList) {
581 for (final Object element : valueList) {
  /frameworks/base/core/java/android/view/
ViewPropertyAnimator.java     [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableTable.java 62 @Nullable private transient volatile ImmutableList<V> valueList;
65 ImmutableList<V> result = valueList;
67 valueList = result = ImmutableList.copyOf(
ImmutableMultimap.java 204 Collection<V> valueList = builderMultimap.get(checkNotNull(key));
206 valueList.add(checkNotNull(value));
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableMultimap.java 203 Collection<V> valueList = builderMultimap.get(checkNotNull(key));
205 valueList.add(checkNotNull(value));

Completed in 1044 milliseconds

1 2