Home
last modified time | relevance | path

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

/external/google-breakpad/src/common/
Dmemory_range.h105 const void* GetArrayElement(size_t element_offset, in GetArrayElement() function
116 const ElementType* GetArrayElement(size_t element_offset, in GetArrayElement() function
119 GetArrayElement(element_offset, sizeof(ElementType), element_index)); in GetArrayElement()
Dmemory_range_unittest.cc172 TEST(MemoryRangeTest, GetArrayElement) { in TEST() argument
182 EXPECT_EQ(element_pointer, range.GetArrayElement( in TEST()
189 const char* char_pointer = range.GetArrayElement<char>(0, 0); in TEST()
191 const int* int_pointer = range.GetArrayElement<int>(0, 0); in TEST()
/external/pdfium/fxjs/
Dcfx_v8_unittest.cpp60 EXPECT_TRUE(cfx_v8()->GetArrayElement(empty_array, 0).IsEmpty()); in TEST_F()
179 EXPECT_FALSE(cfx_v8()->GetArrayElement(array, 2).IsEmpty()); in TEST_F()
180 EXPECT_TRUE(cfx_v8()->GetArrayElement(array, 2)->IsUndefined()); in TEST_F()
184 EXPECT_FALSE(cfx_v8()->GetArrayElement(array, 2).IsEmpty()); in TEST_F()
185 EXPECT_TRUE(cfx_v8()->GetArrayElement(array, 2)->IsUndefined()); in TEST_F()
186 EXPECT_FALSE(cfx_v8()->GetArrayElement(array, 3).IsEmpty()); in TEST_F()
187 EXPECT_TRUE(cfx_v8()->GetArrayElement(array, 3)->IsNumber()); in TEST_F()
Dcjs_color.cpp93 pRuntime->ToWideString(pRuntime->GetArrayElement(array, 0)); in ConvertArrayToPWLColor()
100 pRuntime->ToDouble(pRuntime->GetArrayElement(array, 1))); in ConvertArrayToPWLColor()
109 pRuntime->ToDouble(pRuntime->GetArrayElement(array, 2))); in ConvertArrayToPWLColor()
113 pRuntime->ToDouble(pRuntime->GetArrayElement(array, 3))); in ConvertArrayToPWLColor()
121 pRuntime->ToDouble(pRuntime->GetArrayElement(array, 4))); in ConvertArrayToPWLColor()
Dcfx_v8.h45 v8::Local<v8::Value> GetArrayElement(v8::Local<v8::Array> pArray,
Dcfx_v8.cpp79 v8::Local<v8::Value> CFX_V8::GetArrayElement(v8::Local<v8::Array> pArray, in GetArrayElement() function in CFX_V8
Dcjs_field.cpp1034 pRuntime->ToInt32(pRuntime->GetArrayElement(SelArray, i))); in set_current_value_indices()
1721 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 0))); in set_rect()
1723 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 1))); in set_rect()
1725 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 2))); in set_rect()
1727 pRuntime->ToInt32(pRuntime->GetArrayElement(rcArray, 3))); in set_rect()
2150 pRuntime->ToWideString(pRuntime->GetArrayElement(ValueArray, i))); in set_value()
Dcjs_app.cpp231 swMsg += pRuntime->ToWideString(pRuntime->GetArrayElement(carray, i)); in alert()
Dcjs_document.cpp533 pRuntime->ToWideString(pRuntime->GetArrayElement(array, i)); in resetForm()
609 pRuntime->ToWideString(pRuntime->GetArrayElement(aFields, i)); in submitForm()
Dcjs_publicmethods.cpp1300 pRuntime->ToWideString(pRuntime->GetArrayElement(FieldNameArray, i)); in AFSimple_Calculate()
/external/google-breakpad/src/tools/linux/md2core/
Dminidump_memory_range_unittest.cc201 TEST(MinidumpMemoryRangeTest, GetArrayElement) { in TEST() argument
211 EXPECT_EQ(element_pointer, range.GetArrayElement( in TEST()
218 const char* char_pointer = range.GetArrayElement<char>(0, 0); in TEST()
220 const int* int_pointer = range.GetArrayElement<int>(0, 0); in TEST()
Dminidump-2-core.cc558 range.GetArrayElement<MDRawThread>(sizeof(uint32_t), i); in ParseThreadList()
894 full_file.GetArrayElement<MDRawLinkMap>(debug->map, i); in ParseDSODebugInfo()
980 range.GetArrayElement(sizeof(uint32_t), MD_MODULE_SIZE, i)); in ParseModuleStream()
1226 dump.GetArrayElement<MDRawDirectory>(header->stream_directory_rva, i); in main()
1244 dump.GetArrayElement<MDRawDirectory>(header->stream_directory_rva, i); in main()
/external/google-breakpad/src/common/linux/
Delf_core_dump.cc127 return reinterpret_cast<const Phdr*>(content_.GetArrayElement( in GetProgramHeader()