Lines Matching full:token
159 bool SkAnimatorScript::EvalEnum(const char* token, size_t len, void* callBack, SkScriptValue* value) {
162 if (MapEnums(tokens, token, len, (int*)&value->fOperand.fS32))
167 bool SkAnimatorScript::EvalID(const char* token, size_t len, void* user, SkScriptValue* value) {
171 bool success = ids->find(token, len, &displayable);
174 if (SK_LITERAL_STR_EQUAL("parent", token, len)) {
184 if (displayable && EvalMember(token, len, displayable, engine, value))
203 bool SkAnimatorScript::EvalNamedColor(const char* token, size_t len, void* callback, SkScriptValue* value) {
205 if (SkParse::FindNamedColor(token, len, (SkColor*) &value->fOperand.fS32) != NULL)
372 bool SkAnimatorScript::Infinity(const char* token, size_t len, void* user, SkScriptValue* value) {
373 if (SK_LITERAL_STR_EQUAL("Infinity", token, len) == false)
427 bool SkAnimatorScript::NaN(const char* token, size_t len, void* user, SkScriptValue* value) {
428 if (SK_LITERAL_STR_EQUAL("NaN", token, len) == false)