Home
last modified time | relevance | path

Searched refs:GetObjectPropertyNames (Results 1 – 4 of 4) sorted by relevance

/external/pdfium/fxjs/
Dfxjs_v8_embeddertest.cpp210 EXPECT_EQ(0u, engine()->GetObjectPropertyNames(object).size()); in TEST_F()
213 EXPECT_EQ(0u, engine()->GetObjectPropertyNames(object).size()); in TEST_F()
218 EXPECT_EQ(1u, engine()->GetObjectPropertyNames(object).size()); in TEST_F()
219 EXPECT_EQ(L"clams", engine()->GetObjectPropertyNames(object)[0]); in TEST_F()
Dcjs_v8.h71 std::vector<WideString> GetObjectPropertyNames(v8::Local<v8::Object> pObj);
Dcjs_v8.cpp33 std::vector<WideString> CJS_V8::GetObjectPropertyNames( in GetObjectPropertyNames() function in CJS_V8
Dcjs_global.cpp456 std::vector<WideString> pKeyList = pRuntime->GetObjectPropertyNames(pObj); in ObjectToArray()