HomeSort by relevance Sort by last modified time
    Searched defs:sPropName (Results 1 - 2 of 2) sorted by null

  /external/pdfium/fpdfsdk/src/javascript/
JS_GlobalData.cpp 175 CFX_ByteString sPropName = propname;
177 sPropName.TrimLeft();
178 sPropName.TrimRight();
180 if (sPropName.GetLength() == 0) return;
182 if (CJS_GlobalData_Element* pData = GetGlobalVariable(sPropName))
190 pNewData->data.sKey = sPropName;
201 CFX_ByteString sPropName = propname;
203 sPropName.TrimLeft();
204 sPropName.TrimRight();
206 if (sPropName.GetLength() == 0) return;
    [all...]
global.cpp 81 CFX_ByteString sPropName = CFX_ByteString::FromUnicode(propname);
83 if (m_mapGlobal.Lookup(sPropName, (FX_LPVOID&)pData))
96 CFX_ByteString sPropName = CFX_ByteString::FromUnicode(propname);
103 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_NUMBER, dData, false, "", v8::Handle<v8::Object>(), FALSE);
109 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_BOOLEAN, 0, (bool)vp, "", v8::Handle<v8::Object>(), FALSE);
115 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_STRING, 0, false, sData, v8::Handle<v8::Object>(), FALSE);
120 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_OBJECT, 0, false, "", pData, FALSE);
127 // return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_OBJECT, 0, false, "",
136 return SetGlobalVariables(sPropName, JS_GLOBALDATA_TYPE_NULL, 0, false, "", v8::Handle<v8::Object>(), FALSE);
150 CFX_ByteString sPropName = CFX_ByteString::FromUnicode(propname);
    [all...]

Completed in 66 milliseconds