Home
last modified time | relevance | path

Searched refs:GetArrayElement (Results 1 – 13 of 13) sorted by relevance

/aosp_15_r20/external/pdfium/fxjs/
H A Dcfx_v8_unittest.cpp64 EXPECT_TRUE(cfx_v8()->GetArrayElement(empty_array, 0).IsEmpty()); in TEST_F()
183 EXPECT_FALSE(cfx_v8()->GetArrayElement(array, 2).IsEmpty()); in TEST_F()
184 EXPECT_TRUE(cfx_v8()->GetArrayElement(array, 2)->IsUndefined()); in TEST_F()
188 EXPECT_FALSE(cfx_v8()->GetArrayElement(array, 2).IsEmpty()); in TEST_F()
189 EXPECT_TRUE(cfx_v8()->GetArrayElement(array, 2)->IsUndefined()); in TEST_F()
190 EXPECT_FALSE(cfx_v8()->GetArrayElement(array, 3).IsEmpty()); in TEST_F()
191 EXPECT_TRUE(cfx_v8()->GetArrayElement(array, 3)->IsNumber()); in TEST_F()
H A Dcjs_color.cpp94 pRuntime->ToWideString(pRuntime->GetArrayElement(array, 0)); in ConvertArrayToPWLColor()
101 pRuntime->ToDouble(pRuntime->GetArrayElement(array, 1))); in ConvertArrayToPWLColor()
110 pRuntime->ToDouble(pRuntime->GetArrayElement(array, 2))); in ConvertArrayToPWLColor()
114 pRuntime->ToDouble(pRuntime->GetArrayElement(array, 3))); in ConvertArrayToPWLColor()
122 pRuntime->ToDouble(pRuntime->GetArrayElement(array, 4))); in ConvertArrayToPWLColor()
H A Dcfx_v8.h47 v8::Local<v8::Value> GetArrayElement(v8::Local<v8::Array> pArray,
H A Dcfx_v8.cpp54 v8::Local<v8::Value> CFX_V8::GetArrayElement(v8::Local<v8::Array> pArray, in GetArrayElement() function in CFX_V8
H A Dcjs_field.cpp1053 pRuntime->ToInt32(pRuntime->GetArrayElement(SelArray, i))); in set_current_value_indices()
1711 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 0))); in set_rect()
1713 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 1))); in set_rect()
1715 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 2))); in set_rect()
1717 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 3))); in set_rect()
2122 pRuntime->ToWideString(pRuntime->GetArrayElement(ValueArray, i))); in set_value()
H A Dcjs_document.cpp541 pRuntime->ToWideString(pRuntime->GetArrayElement(array, i)); in resetForm()
617 pRuntime->ToWideString(pRuntime->GetArrayElement(aFields, i)); in submitForm()
H A Dcjs_app.cpp240 swMsg += pRuntime->ToWideString(pRuntime->GetArrayElement(carray, i)); in alert()
H A Dcjs_publicmethods.cpp1307 pRuntime->ToWideString(pRuntime->GetArrayElement(FieldNameArray, i)); in AFSimple_Calculate()
/aosp_15_r20/external/google-breakpad/src/common/
H A Dmemory_range_unittest.cc175 TEST(MemoryRangeTest, GetArrayElement) { in TEST() argument
185 EXPECT_EQ(element_pointer, range.GetArrayElement( in TEST()
192 const char* char_pointer = range.GetArrayElement<char>(0, 0); in TEST()
194 const int* int_pointer = range.GetArrayElement<int>(0, 0); in TEST()
H A Dmemory_range.h104 const void* GetArrayElement(size_t element_offset, in GetArrayElement() function
115 const ElementType* GetArrayElement(size_t element_offset, in GetArrayElement() function
118 GetArrayElement(element_offset, sizeof(ElementType), element_index)); in GetArrayElement()
/aosp_15_r20/external/google-breakpad/src/tools/linux/md2core/
H A Dminidump_memory_range_unittest.cc204 TEST(MinidumpMemoryRangeTest, GetArrayElement) { in TEST() argument
214 EXPECT_EQ(element_pointer, range.GetArrayElement( in TEST()
221 const char* char_pointer = range.GetArrayElement<char>(0, 0); in TEST()
223 const int* int_pointer = range.GetArrayElement<int>(0, 0); in TEST()
H A Dminidump-2-core.cc622 range.GetArrayElement<MDRawThread>(sizeof(uint32_t), i); in ParseThreadList()
978 full_file.GetArrayElement<MDRawLinkMap>(debug->map, i); in ParseDSODebugInfo()
1081 range.GetArrayElement(sizeof(uint32_t), MD_MODULE_SIZE, i)); in ParseModuleStream()
1327 dump.GetArrayElement<MDRawDirectory>(header->stream_directory_rva, i); in main()
1345 dump.GetArrayElement<MDRawDirectory>(header->stream_directory_rva, i); in main()
/aosp_15_r20/external/google-breakpad/src/common/linux/
H A Delf_core_dump.cc144 return reinterpret_cast<const Phdr*>(content_.GetArrayElement( in GetProgramHeader()