Lines Matching refs:fString

431             inner = value->fOperand.fString->c_str();  in evaluateScript()
464 SkString* string = (*array)[index].fString; in forget()
686 operand.fString = new SkString(); in innerScript()
687 track(operand.fString); in innerScript()
695 operand.fString->append(script, 1); in innerScript()
821 SkString* string = fOperandStack.top().fString; in innerScript()
831 operand.fString = string; in innerScript()
972 track(callbackResult.fOperand.fString); in handleMember()
993 track(callbackResult.fOperand.fString); in handleMemberFunction()
1015 track(callbackResult.fOperand.fString);
1040 … if (callbackResult.fType == SkType_String && callbackResult.fOperand.fString == nullptr) { in handleProperty()
1041 callbackResult.fOperand.fString = new SkString(fToken, fTokenLength); in handleProperty()
1042 track(callbackResult.fOperand.fString); in handleProperty()
1063 track(scriptValue->fOperand.fString); in handleUnbox()
1319 … const char* result = SkParse::FindScalar(operand1.fString->c_str(), &operand1.fScalar); in processOp()
1334 const char* result = SkParse::FindScalar(operand2.fString->c_str(), &operand2.fScalar); in processOp()
1358 if (fTrackString.find(operand1.fString) < 0) { in processOp()
1359 operand1.fString = new SkString(*operand1.fString); in processOp()
1360 track(operand1.fString); in processOp()
1362 operand1.fString->append(*operand2.fString); in processOp()
1400 operand2.fS32 = *operand1.fString == *operand2.fString; in processOp()
1411 operand2.fS32 = strcmp(operand1.fString->c_str(), operand2.fString->c_str()) >= 0; in processOp()
1512 success = SkParse::FindS32(operand.fString->c_str(), &operand.fS32) != nullptr; in ConvertTo()
1528 … success = SkParse::FindScalar(operand.fString->c_str(), &operand.fScalar) != nullptr; in ConvertTo()
1546 operand.fString = strPtr; in ConvertTo()
1636 string->set(*value.fOperand.fString); in ValueToString()
1883 … SkASSERT(strcmp(value.fOperand.fString->c_str(), scriptTests[index].fStringAnswer) == 0); in UnitTest()