Searched refs:m_pInfo (Results 1 – 9 of 9) sorted by relevance
/external/pdfium/fpdfsdk/ |
D | cpdfsdk_formfillenvironment.cpp | 36 : m_pInfo(pFFinfo), in CPDFSDK_FormFillEnvironment() 59 if (m_pInfo && m_pInfo->Release) in ~CPDFSDK_FormFillEnvironment() 60 m_pInfo->Release(m_pInfo); in ~CPDFSDK_FormFillEnvironment() 67 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_appAlert() 68 !m_pInfo->m_pJsPlatform->app_alert) { in JS_appAlert() 73 return m_pInfo->m_pJsPlatform->app_alert( in JS_appAlert() 74 m_pInfo->m_pJsPlatform, AsFPDFWideString(&bsMsg), in JS_appAlert() 85 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_appResponse() 86 !m_pInfo->m_pJsPlatform->app_response) { in JS_appResponse() 93 return m_pInfo->m_pJsPlatform->app_response( in JS_appResponse() [all …]
|
D | fpdf_sysfontinfo.cpp | 20 explicit CFX_ExternalFontInfo(FPDF_SYSFONTINFO* pInfo) : m_pInfo(pInfo) {} in CFX_ExternalFontInfo() 22 if (m_pInfo->Release) in ~CFX_ExternalFontInfo() 23 m_pInfo->Release(m_pInfo); in ~CFX_ExternalFontInfo() 27 if (m_pInfo->EnumFonts) { in EnumFontList() 28 m_pInfo->EnumFonts(m_pInfo, pMapper); in EnumFontList() 40 if (!m_pInfo->MapFont) in MapFont() 42 return m_pInfo->MapFont(m_pInfo, weight, bItalic, charset, pitch_family, in MapFont() 47 if (!m_pInfo->GetFont) in GetFont() 49 return m_pInfo->GetFont(m_pInfo, family); in GetFont() 56 if (!m_pInfo->GetFontData) in GetFontData() [all …]
|
D | cpdfsdk_formfillenvironment.h | 193 bool IsJSInitiated() const { return m_pInfo && m_pInfo->m_pJsPlatform; } in IsJSInitiated() 196 FPDF_FORMFILLINFO* GetFormFillInfo() const { return m_pInfo; } in GetFormFillInfo() 209 FPDF_FORMFILLINFO* const m_pInfo; variable
|
/external/pdfium/fxjs/ |
D | cfxjse_arguments.cpp | 17 return m_pInfo->Length(); in GetLength() 23 lpArgValue->ForceSetValue((*m_pInfo)[index]); in GetValue() 28 return (*m_pInfo)[index]->BooleanValue(); in GetBoolean() 32 return static_cast<int32_t>((*m_pInfo)[index]->NumberValue()); in GetInt32() 36 return static_cast<FX_FLOAT>((*m_pInfo)[index]->NumberValue()); in GetFloat() 40 v8::Local<v8::String> hString = (*m_pInfo)[index]->ToString(); in GetUTF8String() 47 v8::Local<v8::Value> hValue = (*m_pInfo)[index]; in GetObject()
|
D | cfxjse_arguments.h | 20 : m_pInfo(pInfo), m_pRetValue(pRetValue) {} in CFXJSE_Arguments() 34 const v8::FunctionCallbackInfo<v8::Value>* m_pInfo;
|
/external/libvpx/libvpx/third_party/libwebm/mkvparser/ |
D | mkvparser.cc | 671 m_pInfo(NULL), in Segment() 695 delete m_pInfo; in ~Segment() 934 if (m_pInfo) in ParseHeaders() 937 m_pInfo = new (std::nothrow) in ParseHeaders() 940 if (m_pInfo == NULL) in ParseHeaders() 943 const long status = m_pInfo->Parse(); in ParseHeaders() 1016 if (m_pInfo == NULL) // TODO: liberalize this behavior in ParseHeaders() 1465 if (m_pInfo == NULL || m_pTracks == NULL) in Load() 3205 const SegmentInfo* Segment::GetInfo() const { return m_pInfo; } in GetInfo() 3212 assert(m_pInfo); in GetDuration() [all …]
|
D | mkvparser.h | 1112 SegmentInfo* m_pInfo; variable
|
/external/libvpx/libwebm/mkvparser/ |
D | mkvparser.cc | 670 m_pInfo(NULL), in Segment() 694 delete m_pInfo; in ~Segment() 933 if (m_pInfo) in ParseHeaders() 936 m_pInfo = new (std::nothrow) in ParseHeaders() 939 if (m_pInfo == NULL) in ParseHeaders() 942 const long status = m_pInfo->Parse(); in ParseHeaders() 1015 if (m_pInfo == NULL) // TODO: liberalize this behavior in ParseHeaders() 1464 if (m_pInfo == NULL || m_pTracks == NULL) in Load() 3213 const SegmentInfo* Segment::GetInfo() const { return m_pInfo; } in GetInfo() 3220 assert(m_pInfo); in GetDuration() [all …]
|
D | mkvparser.h | 1079 SegmentInfo* m_pInfo; variable
|