Home | History | Annotate | Download | only in javascript

Lines Matching defs:sTemp

1588 	CFX_WideString sTemp = L"";

1596 wsArray.Add(sTemp);
1597 sTemp = L"";
1601 sTemp += c;
1604 wsArray.Add(sTemp);
1607 sTemp = wsArray[1];
1608 if(sTemp.Compare(L"Jan") == 0) nMonth = 1;
1609 if(sTemp.Compare(L"Feb") == 0) nMonth = 2;
1610 if(sTemp.Compare(L"Mar") == 0) nMonth = 3;
1611 if(sTemp.Compare(L"Apr") == 0) nMonth = 4;
1612 if(sTemp.Compare(L"May") == 0) nMonth = 5;
1613 if(sTemp.Compare(L"Jun") == 0) nMonth = 6;
1614 if(sTemp.Compare(L"Jul") == 0) nMonth = 7;
1615 if(sTemp.Compare(L"Aug") == 0) nMonth = 8;
1616 if(sTemp.Compare(L"Sep") == 0) nMonth = 9;
1617 if(sTemp.Compare(L"Oct") == 0) nMonth = 10;
1618 if(sTemp.Compare(L"Nov") == 0) nMonth = 11;
1619 if(sTemp.Compare(L"Dec") == 0) nMonth = 12;