Home | History | Annotate | Download | only in fm2js

Lines Matching refs:tempStr

147   WideString tempStr(m_wsString);
148 if (tempStr.GetLength() <= 2) {
149 javascript << tempStr;
153 for (size_t i = 1; i < tempStr.GetLength() - 1; i++) {
154 wchar_t oneChar = tempStr[i];
187 WideString tempStr(m_wsIdentifier);
188 if (tempStr == L"$") {
189 tempStr = L"this";
190 } else if (tempStr == L"!") {
191 tempStr = L"xfa.datasets";
192 } else if (tempStr == L"$data") {
193 tempStr = L"xfa.datasets.data";
194 } else if (tempStr == L"$event") {
195 tempStr = L"xfa.event";
196 } else if (tempStr == L"$form") {
197 tempStr = L"xfa.form";
198 } else if (tempStr == L"$host") {
199 tempStr = L"xfa.host";
200 } else if (tempStr == L"$layout") {
201 tempStr = L"xfa.layout";
202 } else if (tempStr == L"$template") {
203 tempStr = L"xfa.template";
204 } else if (tempStr[0] == L'!') {
205 tempStr =
206 EXCLAMATION_IN_IDENTIFIER + tempStr.Right(tempStr.GetLength() - 1);
208 javascript << tempStr;