/external/pdfium/core/fpdfapi/page/ |
D | cpdf_allstates.cpp | 44 CPDF_Object* pObject = pElement ? pElement->GetDirect() : nullptr; in ProcessExtGS() local 45 if (!pObject) in ProcessExtGS() 51 m_GraphState.SetLineWidth(pObject->GetNumber()); in ProcessExtGS() 55 static_cast<CFX_GraphStateData::LineCap>(pObject->GetInteger())); in ProcessExtGS() 59 static_cast<CFX_GraphStateData::LineJoin>(pObject->GetInteger())); in ProcessExtGS() 62 m_GraphState.SetMiterLimit(pObject->GetNumber()); in ProcessExtGS() 65 CPDF_Array* pDash = pObject->AsArray(); in ProcessExtGS() 77 m_GeneralState.SetRenderIntent(pObject->GetString()); in ProcessExtGS() 80 CPDF_Array* pFont = pObject->AsArray(); in ProcessExtGS() 93 m_GeneralState.SetTR(pObject && !pObject->IsName() ? pObject : nullptr); in ProcessExtGS() [all …]
|
D | cpdf_generalstate.cpp | 151 void CPDF_GeneralState::SetSoftMask(CPDF_Object* pObject) { in SetSoftMask() argument 152 m_Ref.GetPrivateCopy()->m_pSoftMask = pObject; in SetSoftMask() 160 void CPDF_GeneralState::SetTR(CPDF_Object* pObject) { in SetTR() argument 161 m_Ref.GetPrivateCopy()->m_pTR = pObject; in SetTR() 215 void CPDF_GeneralState::SetBG(CPDF_Object* pObject) { in SetBG() argument 216 m_Ref.GetPrivateCopy()->m_pBG = pObject; in SetBG() 219 void CPDF_GeneralState::SetUCR(CPDF_Object* pObject) { in SetUCR() argument 220 m_Ref.GetPrivateCopy()->m_pUCR = pObject; in SetUCR() 223 void CPDF_GeneralState::SetHT(CPDF_Object* pObject) { in SetHT() argument 224 m_Ref.GetPrivateCopy()->m_pHT = pObject; in SetHT()
|
D | cpdf_generalstate.h | 41 void SetSoftMask(CPDF_Object* pObject); 44 void SetTR(CPDF_Object* pObject); 63 void SetBG(CPDF_Object* pObject); 64 void SetUCR(CPDF_Object* pObject); 65 void SetHT(CPDF_Object* pObject);
|
/external/pdfium/fxjs/ |
D | cfxjse_engine.cpp | 173 void CFXJSE_Engine::GlobalPropertySetter(CFXJSE_Value* pObject, in GlobalPropertySetter() argument 176 CXFA_Object* lpOrginalNode = ToObject(pObject, nullptr); in GlobalPropertySetter() 194 pObject->SetObjectOwnProperty(szPropName, pValue); in GlobalPropertySetter() 206 void CFXJSE_Engine::GlobalPropertyGetter(CFXJSE_Value* pObject, in GlobalPropertyGetter() argument 209 CXFA_Object* pOriginalObject = ToObject(pObject, nullptr); in GlobalPropertyGetter() 266 CXFA_Object* pObject = ToObject(pOriginalValue, nullptr); in GlobalPropTypeGetter() local 267 if (!pObject) in GlobalPropTypeGetter() 270 CFXJSE_Engine* lpScriptContext = pObject->GetDocument()->GetScriptContext(); in GlobalPropTypeGetter() 271 pObject = lpScriptContext->GetVariablesThis(pObject); in GlobalPropTypeGetter() 273 if (pObject->JSObject()->HasMethod(wsPropName)) in GlobalPropTypeGetter() [all …]
|
D | cfxjse_engine.h | 30 static void GlobalPropertyGetter(CFXJSE_Value* pObject, 33 static void GlobalPropertySetter(CFXJSE_Value* pObject, 36 static void NormalPropertyGetter(CFXJSE_Value* pObject, 39 static void NormalPropertySetter(CFXJSE_Value* pObject, 45 static int32_t NormalPropTypeGetter(CFXJSE_Value* pObject, 48 static int32_t GlobalPropTypeGetter(CFXJSE_Value* pObject, 67 CFXJSE_Value* GetJSValueFromMap(CXFA_Object* pObject); 96 CXFA_Object* GetVariablesThis(CXFA_Object* pObject, bool bScriptNode = false);
|
D | cjs_object.cpp | 43 CJS_Object::CJS_Object(v8::Local<v8::Object> pObject) { in CJS_Object() argument 44 m_pIsolate = pObject->GetIsolate(); in CJS_Object() 45 m_pV8Object.Reset(m_pIsolate, pObject); in CJS_Object()
|
D | cfxjse_class.cpp | 101 CFXJSE_Value* pObject, in DynPropGetterAdapter() argument 109 : lpClass->dynPropTypeGetter(pObject, szPropName, false); in DynPropGetterAdapter() 112 lpClass->dynPropGetter(pObject, szPropName, pValue); in DynPropGetterAdapter() 138 CFXJSE_Value* pObject, in DynPropSetterAdapter() argument 145 : lpClass->dynPropTypeGetter(pObject, szPropName, false); in DynPropSetterAdapter() 148 lpClass->dynPropSetter(pObject, szPropName, pValue); in DynPropSetterAdapter() 153 CFXJSE_Value* pObject, in DynPropQueryAdapter() argument 159 : lpClass->dynPropTypeGetter(pObject, szPropName, true); in DynPropQueryAdapter()
|
D | cjs_position.h | 16 explicit CJS_Position(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_Position() argument
|
D | cjs_font.h | 16 explicit CJS_Font(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_Font() argument
|
D | cjs_border.h | 16 explicit CJS_Border(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_Border() argument
|
D | cjs_zoomtype.h | 16 explicit CJS_Zoomtype(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_Zoomtype() argument
|
D | cjs_highlight.h | 16 explicit CJS_Highlight(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_Highlight() argument
|
D | cjs_style.h | 16 explicit CJS_Style(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_Style() argument
|
D | cjs_scalehow.h | 16 explicit CJS_ScaleHow(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_ScaleHow() argument
|
D | cjs_display.h | 16 explicit CJS_Display(v8::Local<v8::Object> pObject) : CJS_Object(pObject) {} in CJS_Display() argument
|
/external/swiftshader/third_party/PowerVR_SDK/Tools/OGLES2/ |
D | PVRTShader.cpp | 39 GLuint* const pObject, in PVRTShaderLoadSourceFromMemory() argument 88 *pObject = glCreateShader(Type); in PVRTShaderLoadSourceFromMemory() 90 glShaderSource(*pObject, 1, &pszString, NULL); in PVRTShaderLoadSourceFromMemory() 91 glCompileShader(*pObject); in PVRTShaderLoadSourceFromMemory() 95 glGetShaderiv(*pObject, GL_COMPILE_STATUS, &ShaderCompiled); in PVRTShaderLoadSourceFromMemory() 99 glGetShaderiv(*pObject, GL_INFO_LOG_LENGTH, &i32InfoLogLength); in PVRTShaderLoadSourceFromMemory() 101 glGetShaderInfoLog(*pObject, i32InfoLogLength, &i32CharsWritten, pszInfoLog); in PVRTShaderLoadSourceFromMemory() 104 glDeleteShader(*pObject); in PVRTShaderLoadSourceFromMemory() 126 GLuint* const pObject, in PVRTShaderLoadBinaryFromMemory() argument 130 *pObject = glCreateShader(Type); in PVRTShaderLoadBinaryFromMemory() [all …]
|
D | PVRTShader.h | 35 GLuint* const pObject, 53 GLuint* const pObject, 74 GLuint* const pObject,
|
/external/apache-http/src/org/apache/commons/codec/net/ |
D | QuotedPrintableCodec.java | 321 public Object encode(Object pObject) throws EncoderException { in encode() argument 322 if (pObject == null) { in encode() 324 } else if (pObject instanceof byte[]) { in encode() 325 return encode((byte[]) pObject); in encode() 326 } else if (pObject instanceof String) { in encode() 327 return encode((String) pObject); in encode() 330 + pObject.getClass().getName() in encode() 346 public Object decode(Object pObject) throws DecoderException { in decode() argument 347 if (pObject == null) { in decode() 349 } else if (pObject instanceof byte[]) { in decode() [all …]
|
D | URLCodec.java | 311 public Object encode(Object pObject) throws EncoderException { in encode() argument 312 if (pObject == null) { in encode() 314 } else if (pObject instanceof byte[]) { in encode() 315 return encode((byte[])pObject); in encode() 316 } else if (pObject instanceof String) { in encode() 317 return encode((String)pObject); in encode() 320 pObject.getClass().getName() + " cannot be URL encoded"); in encode() 335 public Object decode(Object pObject) throws DecoderException { in decode() argument 336 if (pObject == null) { in decode() 338 } else if (pObject instanceof byte[]) { in decode() [all …]
|
D | QCodec.java | 251 public Object encode(Object pObject) throws EncoderException { in encode() argument 252 if (pObject == null) { in encode() 254 } else if (pObject instanceof String) { in encode() 255 return encode((String) pObject); in encode() 258 + pObject.getClass().getName() in encode() 275 public Object decode(Object pObject) throws DecoderException { in decode() argument 276 if (pObject == null) { in decode() 278 } else if (pObject instanceof String) { in decode() 279 return decode((String) pObject); in decode() 282 + pObject.getClass().getName() in decode()
|
/external/pdfium/fxjs/xfa/ |
D | cjx_tree.cpp | 58 CXFA_Object* pObject = resolveNodeRS.objects.front(); in resolveNode() local 60 GetDocument()->GetScriptContext()->GetJSValueFromMap(pObject); in resolveNode() 218 for (CXFA_Object* pObject : resolveNodeRS.objects) { in ResolveNodeList() 219 if (pObject->IsNode()) in ResolveNodeList() 220 pNodeList->Append(pObject->AsNode()); in ResolveNodeList() 225 for (CXFA_Object* pObject : resolveNodeRS.objects) { in ResolveNodeList() 228 CJX_Object* jsObject = pObject->JSObject(); in ResolveNodeList()
|
/external/sl4a/Common/src/org/apache/commons/codec/binary/ |
D | Base64Codec.java | 703 public Object decode(Object pObject) throws DecoderException { in decode() argument 704 if (pObject instanceof byte[]) { in decode() 705 return decode((byte[]) pObject); in decode() 706 } else if (pObject instanceof String) { in decode() 707 return decode((String) pObject); in decode() 901 public Object encode(Object pObject) throws EncoderException { in encode() argument 902 if (!(pObject instanceof byte[])) { in encode() 905 return encode((byte[]) pObject); in encode()
|
/external/apache-http/src/org/apache/commons/codec/binary/ |
D | Base64.java | 210 public Object decode(Object pObject) throws DecoderException { in decode() argument 211 if (!(pObject instanceof byte[])) { in decode() 214 return decode((byte[]) pObject); in decode() 510 public Object encode(Object pObject) throws EncoderException { in encode() argument 511 if (!(pObject instanceof byte[])) { in encode() 515 return encode((byte[]) pObject); in encode()
|
/external/apache-http/src/org/apache/commons/codec/language/ |
D | RefinedSoundex.java | 120 public Object encode(Object pObject) throws EncoderException { in encode() argument 121 if (!(pObject instanceof java.lang.String)) { in encode() 124 return soundex((String) pObject); in encode()
|
D | Soundex.java | 139 public Object encode(Object pObject) throws EncoderException { in encode() argument 140 if (!(pObject instanceof String)) { in encode() 143 return soundex((String) pObject); in encode()
|