Lines Matching defs:stringInfoGate
2221 StringInfoGateRef stringInfoGate(&thisFlat);
2222 GateRef dataUtf8 = GetNormalStringData(stringInfoGate);
2663 StringInfoGateRef stringInfoGate(&thisFlat);
2664 result = stringBuilder.CreateFromEcmaString(glue, index, stringInfoGate);
3338 StringInfoGateRef stringInfoGate(&thisFlat);
3339 result = stringBuilder.FastSubString(glue, *holder, index, Int32(1), stringInfoGate);
8576 StringInfoGateRef stringInfoGate(&thisFlat);
8577 GateRef data = GetNormalStringData(stringInfoGate);
8792 GateRef StubBuilder::GetNormalStringData(const StringInfoGateRef &stringInfoGate)
8803 BRANCH(IsConstantString(stringInfoGate.GetString()), &isConstantString, &isLineString);
8806 GateRef address = PtrAdd(stringInfoGate.GetString(), IntPtr(ConstantString::CONSTANT_DATA_OFFSET));
8808 ZExtInt32ToPtr(stringInfoGate.GetStartIndex()));
8814 PtrAdd(stringInfoGate.GetString(), IntPtr(LineEcmaString::DATA_OFFSET)));
8815 BRANCH(IsUtf8String(stringInfoGate.GetString()), &isUtf8, &isUtf16);
8818 result = PtrAdd(data, ZExtInt32ToPtr(stringInfoGate.GetStartIndex()));
8823 GateRef offset = PtrMul(ZExtInt32ToPtr(stringInfoGate.GetStartIndex()), IntPtr(sizeof(uint16_t)));