Home
last modified time | relevance | path

Searched refs:m_pInfo (Results 1 – 9 of 9) sorted by relevance

/external/pdfium/fpdfsdk/include/
Dfsdk_mgr.h46 if (m_pInfo && m_pInfo->Release) in Release()
47 m_pInfo->Release(m_pInfo); in Release()
57 if (m_pInfo && m_pInfo->FFI_Invalidate) in FFI_Invalidate()
58 m_pInfo->FFI_Invalidate(m_pInfo, page, left, top, right, bottom); in FFI_Invalidate()
66 if (m_pInfo && m_pInfo->FFI_OutputSelectedRect) in FFI_OutputSelectedRect()
67 m_pInfo->FFI_OutputSelectedRect(m_pInfo, page, left, top, right, bottom); in FFI_OutputSelectedRect()
71 if (m_pInfo && m_pInfo->FFI_SetCursor) in FFI_SetCursor()
72 m_pInfo->FFI_SetCursor(m_pInfo, nCursorType); in FFI_SetCursor()
76 if (m_pInfo && m_pInfo->FFI_SetTimer) in FFI_SetTimer()
77 return m_pInfo->FFI_SetTimer(m_pInfo, uElapse, lpTimerFunc); in FFI_SetTimer()
[all …]
/external/pdfium/fpdfsdk/src/
Dfpdf_sysfontinfo.cpp14 explicit CFX_ExternalFontInfo(FPDF_SYSFONTINFO* pInfo) : m_pInfo(pInfo) {} in CFX_ExternalFontInfo()
17 if (m_pInfo->Release) in Release()
18 m_pInfo->Release(m_pInfo); in Release()
23 if (m_pInfo->EnumFonts) { in EnumFontList()
24 m_pInfo->EnumFonts(m_pInfo, pMapper); in EnumFontList()
36 if (m_pInfo->MapFont) in MapFont()
37 return m_pInfo->MapFont(m_pInfo, weight, bItalic, charset, pitch_family, in MapFont()
43 if (m_pInfo->GetFont) in GetFont()
44 return m_pInfo->GetFont(m_pInfo, family); in GetFont()
52 if (m_pInfo->GetFontData) in GetFontData()
[all …]
Dfsdk_mgr.cpp213 : m_pInfo(pFFinfo), m_pSDKDoc(NULL), m_pUnderlyingDoc(pDoc) { in CPDFDoc_Environment()
229 if (m_pInfo && m_pInfo->m_pJsPlatform && m_pInfo->m_pJsPlatform->app_alert) { in JS_appAlert()
235 int ret = m_pInfo->m_pJsPlatform->app_alert(m_pInfo->m_pJsPlatform, pMsg, in JS_appAlert()
251 if (m_pInfo && m_pInfo->m_pJsPlatform && in JS_appResponse()
252 m_pInfo->m_pJsPlatform->app_response) { in JS_appResponse()
265 int ret = m_pInfo->m_pJsPlatform->app_response( in JS_appResponse()
266 m_pInfo->m_pJsPlatform, pQuestion, pTitle, pDefault, pLabel, bPassword, in JS_appResponse()
278 if (!m_pInfo || !m_pInfo->m_pJsPlatform || in JS_fieldBrowse()
279 !m_pInfo->m_pJsPlatform->Field_browse) { in JS_fieldBrowse()
284 m_pInfo->m_pJsPlatform->Field_browse(m_pInfo->m_pJsPlatform, nullptr, 0); in JS_fieldBrowse()
[all …]
/external/pdfium/xfa/src/fxjse/src/
Dclass.cpp164 return lpArguments->m_pInfo->Length(); in GetLength()
171 lpArgValue->ForceSetValue((*lpArguments->m_pInfo)[index]); in GetValue()
177 return (*lpArguments->m_pInfo)[index]->BooleanValue(); in GetBoolean()
182 return static_cast<int32_t>((*lpArguments->m_pInfo)[index]->NumberValue()); in GetInt32()
187 return static_cast<FX_FLOAT>((*lpArguments->m_pInfo)[index]->NumberValue()); in GetFloat()
192 v8::Local<v8::String> hString = (*lpArguments->m_pInfo)[index]->ToString(); in GetUTF8String()
199 v8::Local<v8::Value> hValue = (*lpArguments->m_pInfo)[index]; in GetObject()
Dclass.h43 const v8::FunctionCallbackInfo<v8::Value>* m_pInfo; member
/external/libvpx/libvpx/third_party/libwebm/
Dmkvparser.cpp671 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()
3214 const SegmentInfo* Segment::GetInfo() const { return m_pInfo; } in GetInfo()
3221 assert(m_pInfo); in GetDuration()
[all …]
Dmkvparser.hpp992 SegmentInfo* m_pInfo; member in mkvparser::Segment
/external/libvpx/libwebm/mkvparser/
Dmkvparser.cc670 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 …]
Dmkvparser.h1079 SegmentInfo* m_pInfo; variable