• Home
  • Raw
  • Download

Lines Matching refs:operand

485         SkScriptValue2 operand;  in innerScript()  local
542 script = SkParse::FindHex(script, (uint32_t*) &operand.fOperand.fS32); in innerScript()
550 dotCheck = SkParse::FindS32(script, &operand.fOperand.fS32); in innerScript()
554 operand.fType = SkOperand2::kS32; in innerScript()
557 script = SkParse::FindScalar(script, &operand.fOperand.fScalar); in innerScript()
558 operand.fType = SkOperand2::kScalar; in innerScript()
560 operand.fIsConstant = SkScriptValue2::kConstant; in innerScript()
561 fValueStack.push(operand); in innerScript()
577 operand.fOperand.fString = new SkString(); in innerScript()
586 operand.fOperand.fString->set(stringStart, script - stringStart); in innerScript()
588 char* stringWrite = operand.fOperand.fString->writable_str(); in innerScript()
597 track(operand.fOperand.fString); in innerScript()
598 operand.fType = SkOperand2::kString; in innerScript()
599 operand.fIsConstant = SkScriptValue2::kConstant; in innerScript()
600 fValueStack.push(operand); in innerScript()
639 operand.fOperand.fArray = value->fOperand.fArray = new SkOpArray(fReturnType); in innerScript()
642 operand.fType = SkOperand2::kArray; in innerScript()
643 operand.fIsConstant = SkScriptValue2::kVariable; in innerScript()
644 fValueStack.push(operand); in innerScript()
657 operand.fS32 = 0; in innerScript()
659 fOperandStack.push(operand); in innerScript()
713 SkScriptValue2 operand; in innerScript() local
714 operand.fType = lastType; in innerScript()
717 operand.fIsConstant = SkScriptValue2::kVariable; in innerScript()
718 fValueStack.push(operand); in innerScript()
739 SkScriptValue2 operand; in innerScript() local
740 operand.fType = SkOperand2::kString; in innerScript()
741 operand.fOperand.fString = string; in innerScript()
742 operand.fIsConstant = SkScriptValue2::kVariable; // !!! ? in innerScript()
743 fValueStack.push(operand); in innerScript()
995 SkOperand2 operand; in processLogicalOp() local
996 SkDEBUGCODE(bool success = ) array->getIndex(index, &operand); in processLogicalOp()
1000 resultValue.fOperand = operand; in processLogicalOp()
1200 SkOperand2& operand = value->fOperand; in ConvertTo() local
1205 operand.fS32 = SkScalarFloor(operand.fScalar); in ConvertTo()
1208 success = SkParse::FindS32(operand.fString->c_str(), &operand.fS32) != NULL; in ConvertTo()
1213 operand.fScalar = IntToScalar(operand.fS32); in ConvertTo()
1216 success = SkParse::FindScalar(operand.fString->c_str(), &operand.fScalar) != NULL; in ConvertTo()
1224 strPtr->appendS32(operand.fS32); in ConvertTo()
1227 strPtr->appendScalar(operand.fScalar); in ConvertTo()
1229 operand.fString = strPtr; in ConvertTo()
1233 *array->append() = operand; in ConvertTo()
1235 operand.fArray = array; in ConvertTo()