Home
last modified time | relevance | path

Searched refs:uPropIdx (Results 1 – 2 of 2) sorted by relevance

/external/pdfium/fxjs/
Dcfxjse_value.h65 bool GetObjectPropertyByIdx(uint32_t uPropIdx, CFXJSE_Value* lpPropValue);
66 bool SetObjectProperty(uint32_t uPropIdx, CFXJSE_Value* lpPropValue);
Dcfxjse_value.cpp164 bool CFXJSE_Value::SetObjectProperty(uint32_t uPropIdx, in SetObjectProperty() argument
174 return (bool)hObject.As<v8::Object>()->Set(uPropIdx, hPropValue); in SetObjectProperty()
177 bool CFXJSE_Value::GetObjectPropertyByIdx(uint32_t uPropIdx, in GetObjectPropertyByIdx() argument
185 v8::Local<v8::Value> hPropValue = hObject.As<v8::Object>()->Get(uPropIdx); in GetObjectPropertyByIdx()