Home | History | Annotate | Download | only in javascript

Lines Matching defs:nLength

1104 	int nLength = 2048;

1105 char* pBuff = new char[nLength];
1106 nLength = pApp->JS_appResponse(swQuestion, swTitle, swDefault, swLabel, bPassWord, pBuff, nLength);
1107 if(nLength<=0)
1114 nLength = nLength>2046?2046:nLength;
1115 pBuff[nLength] = 0;
1116 pBuff[nLength+1] = 0;
1117 swResponse = CFX_WideString::FromUTF16LE((unsigned short*)pBuff, nLength);