/external/pdfium/fpdfsdk/src/javascript/ |
D | app.cpp | 299 v8::Local<v8::Value> pValue = in alert() local 301 swMsg = CJS_Value(pRuntime, pValue, CJS_Value::VT_unknown) in alert() 304 pValue = FXJS_GetObjectElement(isolate, pObj, L"cTitle"); in alert() 305 swTitle = CJS_Value(pRuntime, pValue, CJS_Value::VT_unknown) in alert() 308 pValue = FXJS_GetObjectElement(isolate, pObj, L"nIcon"); in alert() 309 iIcon = CJS_Value(pRuntime, pValue, CJS_Value::VT_unknown).ToInt(); in alert() 311 pValue = FXJS_GetObjectElement(isolate, pObj, L"nType"); in alert() 312 iType = CJS_Value(pRuntime, pValue, CJS_Value::VT_unknown).ToInt(); in alert() 319 CJS_Value* pValue = new CJS_Value(pRuntime); in alert() local 321 carray.GetElement(i, *pValue); in alert() [all …]
|
D | Document.cpp | 606 v8::Local<v8::Value> pValue = FXJS_GetObjectElement(isolate, pObj, L"cURL"); in submitForm() local 607 if (!pValue.IsEmpty()) in submitForm() 609 CJS_Value(pRuntime, pValue, GET_VALUE_TYPE(pValue)).ToCFXWideString(); in submitForm() 611 pValue = FXJS_GetObjectElement(isolate, pObj, L"bFDF"); in submitForm() 612 bFDF = CJS_Value(pRuntime, pValue, GET_VALUE_TYPE(pValue)).ToBool(); in submitForm() 614 pValue = FXJS_GetObjectElement(isolate, pObj, L"bEmpty"); in submitForm() 615 bEmpty = CJS_Value(pRuntime, pValue, GET_VALUE_TYPE(pValue)).ToBool(); in submitForm() 617 pValue = FXJS_GetObjectElement(isolate, pObj, L"aFields"); in submitForm() 619 CJS_Value(pRuntime, pValue, GET_VALUE_TYPE(pValue)).ToV8Array()); in submitForm() 705 v8::Local<v8::Value> pValue = FXJS_GetObjectElement(isolate, pObj, L"bUI"); in mailDoc() local [all …]
|
/external/pdfium/xfa/src/fdp/src/css/ |
D | fde_cssdeclaration.cpp | 15 return pHolder->pValue; in GetProperty() 25 IFDE_CSSValue*& pValue, in GetNextProperty() argument 31 pValue = pHolder->pValue; in GetNextProperty() 91 IFDE_CSSValue* pValue, in AddPropertyHolder() argument 97 pHolder->pValue = pValue; in AddPropertyHolder() 295 FDE_LPCCSSPROPERTYVALUETABLE pValue = in ParseEnum() local 297 return pValue ? NewEnumValue(pArgs->pStaticStore, pValue->eName) : NULL; in ParseEnum() 420 FDE_LPCCSSPROPERTYVALUETABLE pValue = in ParseContentProperty() local 422 if (pValue != NULL) { in ParseContentProperty() 423 switch (pValue->eName) { in ParseContentProperty() [all …]
|
/external/pdfium/core/src/fpdfdoc/ |
D | doc_formfield.cpp | 288 CPDF_Object* pValue = FPDF_GetFieldAttr(m_pDict, bDefault ? "DV" : "V"); in GetValue() local 289 if (!pValue) { in GetValue() 292 pValue = FPDF_GetFieldAttr(m_pDict, "V"); in GetValue() 294 if (!pValue && m_Type != Text) { in GetValue() 295 pValue = FPDF_GetFieldAttr(m_pDict, "DV"); in GetValue() 298 if (!pValue) { in GetValue() 302 switch (pValue->GetType()) { in GetValue() 305 return pValue->GetUnicodeText(); in GetValue() 307 pValue = pValue->AsArray()->GetElementValue(0); in GetValue() 308 if (pValue) in GetValue() [all …]
|
D | doc_basic.cpp | 225 CPDF_Object* pValue = LookupValue(sName); in LookupNamedDest() local 226 if (!pValue) { in LookupNamedDest() 230 pValue = pDests->GetElementValue(sName); in LookupNamedDest() 232 if (!pValue) in LookupNamedDest() 234 if (CPDF_Array* pArray = pValue->AsArray()) in LookupNamedDest() 236 if (CPDF_Dictionary* pDict = pValue->AsDictionary()) in LookupNamedDest() 480 CPDF_Object* pValue = NULL; in GetLabel() local 483 pValue = numberTree.LookupValue(n); in GetLabel() 484 if (pValue) { in GetLabel() 489 if (pValue) { in GetLabel() [all …]
|
/external/libnfc-nci/halimpl/pn54x/utils/ |
D | phNxpConfig.cpp | 93 bool getValue(const char* name, char* pValue, size_t len) const; 96 bool getValue(const char* name, char* pValue, long len,long* readlen) const; 473 bool CNfcConfig::getValue(const char* name, char* pValue, size_t len) const in getValue() argument 481 memset(pValue, 0, len); in getValue() 482 memcpy(pValue, pParam->str_value(), pParam->str_len()); in getValue() 488 bool CNfcConfig::getValue(const char* name, char* pValue, long len,long* readlen) const in getValue() argument 498 memset(pValue, 0, len); in getValue() 499 memcpy(pValue, pParam->str_value(), pParam->str_len()); in getValue() 881 extern "C" int GetNxpStrValue(const char* name, char* pValue, unsigned long len) in GetNxpStrValue() argument 885 return rConfig.getValue(name, pValue, len); in GetNxpStrValue() [all …]
|
/external/pdfium/xfa/src/fxfa/src/parser/ |
D | xfa_basic_imp.cpp | 124 FX_BOOL XFA_GetAttributeDefaultValue(void*& pValue, in XFA_GetAttributeDefaultValue() argument 137 pValue = pInfo->pDefValue; in XFA_GetAttributeDefaultValue() 143 pValue = pAttr->pValue; in XFA_GetAttributeDefaultValue() 152 void* pValue; in XFA_GetAttributeDefaultValue_Enum() local 153 if (XFA_GetAttributeDefaultValue(pValue, eElement, eAttribute, in XFA_GetAttributeDefaultValue_Enum() 155 return (XFA_ATTRIBUTEENUM)(uintptr_t)pValue; in XFA_GetAttributeDefaultValue_Enum() 162 void* pValue; in XFA_GetAttributeDefaultValue_Cdata() local 163 if (XFA_GetAttributeDefaultValue(pValue, eElement, eAttribute, in XFA_GetAttributeDefaultValue_Cdata() 165 return (const FX_WCHAR*)pValue; in XFA_GetAttributeDefaultValue_Cdata() 172 void* pValue; in XFA_GetAttributeDefaultValue_Boolean() local [all …]
|
D | xfa_script_imp.cpp | 40 FXJSE_HVALUE pValue; in ~CXFA_ScriptContext() local 41 m_mapXFAToHValue.GetNextAssoc(ps, pXFAObj, pValue); in ~CXFA_ScriptContext() 42 FXJSE_Value_Release(pValue); in ~CXFA_ScriptContext() 67 void* pValue = NULL; in ~CXFA_ScriptContext() local 68 m_JSBuiltInObjects.GetNextAssoc(ps, bsKey, pValue); in ~CXFA_ScriptContext() 69 if (pValue) { in ~CXFA_ScriptContext() 70 FXJSE_Value_Release((FXJSE_HVALUE)pValue); in ~CXFA_ScriptContext() 115 void* pValue; in RunScript() local 116 m_JSBuiltInObjects.GetNextAssoc(ps, bsKey, pValue); in RunScript() 134 FXJSE_HVALUE pValue = pThisObject ? GetJSValueFromMap(pThisObject) : NULL; in RunScript() local [all …]
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_dlssynth.c | 45 …, S_SYNTH_CHANNEL *pChannel, const S_DLS_ENVELOPE *pEnvParams, EAS_I16 *pValue, EAS_I16 *pIncreme… 467 …, S_SYNTH_CHANNEL *pChannel, const S_DLS_ENVELOPE *pEnvParams, EAS_I16 *pValue, EAS_I16 *pIncreme… in DLS_UpdateEnvelope() argument 476 *pValue = 0; in DLS_UpdateEnvelope() 499 *pValue = SYNTH_FULL_SCALE_EG1_GAIN; in DLS_UpdateEnvelope() 503 if (*pValue < SYNTH_FULL_SCALE_EG1_GAIN) in DLS_UpdateEnvelope() 505 temp = *pValue + *pIncrement; in DLS_UpdateEnvelope() 506 … *pValue = (EAS_I16) (temp < SYNTH_FULL_SCALE_EG1_GAIN ? temp : SYNTH_FULL_SCALE_EG1_GAIN); in DLS_UpdateEnvelope() 544 if (*pValue > pEnvParams->sustainLevel) in DLS_UpdateEnvelope() 546 temp = *pValue - *pIncrement; in DLS_UpdateEnvelope() 547 … *pValue = (EAS_I16) (temp > pEnvParams->sustainLevel ? temp : pEnvParams->sustainLevel); in DLS_UpdateEnvelope() [all …]
|
D | eas_rtttl.c | 75 …ESULT RTTTL_GetData (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 80 …c EAS_RESULT RTTTL_GetNumber (EAS_HW_DATA_HANDLE hwInstData, S_RTTTL_DATA *pData, EAS_I32 *pValue); 82 … EAS_RESULT RTTTL_GetNextChar (EAS_HW_DATA_HANDLE hwInstData, S_RTTTL_DATA *pData, EAS_I8 *pValue); 83 …EAS_RESULT RTTTL_PeekNextChar (EAS_HW_DATA_HANDLE hwInstData, S_RTTTL_DATA *pData, EAS_I8 *pValue); 744 …RESULT RTTTL_GetData (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue) in RTTTL_GetData() argument 753 *pValue = EAS_FILE_RTTTL; in RTTTL_GetData() 759 *pValue = pData->transposition; in RTTTL_GetData() 764 *pValue = (EAS_I32) pData->pSynth; in RTTTL_GetData() 768 *pValue = RTTTL_GAIN_OFFSET; in RTTTL_GetData() 931 …ic EAS_RESULT RTTTL_GetNumber (EAS_HW_DATA_HANDLE hwInstData, S_RTTTL_DATA *pData, EAS_I32 *pValue) in RTTTL_GetNumber() argument [all …]
|
D | eas_chorus.c | 44 static EAS_RESULT ChorusGetParam (EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 430 static EAS_RESULT ChorusGetParam (EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue) in ChorusGetParam() argument 439 *pValue = (EAS_I32) p->bypass; in ChorusGetParam() 442 *pValue = (EAS_I8) p->m_nCurrentChorus; in ChorusGetParam() 445 *pValue = (EAS_I32) p->m_nRate; in ChorusGetParam() 448 *pValue = (EAS_I32) p->m_nDepth; in ChorusGetParam() 451 *pValue = (EAS_I32) p->m_nLevel; in ChorusGetParam()
|
D | eas_ota.c | 94 …_RESULT OTA_GetData (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 96 …_FetchBitField (EAS_HW_DATA_HANDLE hwInstData, S_OTA_DATA *pData, EAS_I32 numBits, EAS_U8 *pValue); 793 …S_RESULT OTA_GetData (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue) in OTA_GetData() argument 802 *pValue = EAS_FILE_OTA; in OTA_GetData() 808 *pValue = pData->transposition; in OTA_GetData() 813 *pValue = (EAS_I32) pData->pSynth; in OTA_GetData() 817 *pValue = OTA_GAIN_OFFSET; in OTA_GetData() 989 …A_FetchBitField (EAS_HW_DATA_HANDLE hwInstData, S_OTA_DATA *pData, EAS_I32 numBits, EAS_U8 *pValue) in OTA_FetchBitField() argument 1029 *pValue = value; in OTA_FetchBitField()
|
D | eas_tonecontrol.c | 73 …S_RESULT TC_GetData (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 82 static EAS_RESULT TC_GetNextChar (EAS_HW_DATA_HANDLE hwInstData, S_TC_DATA *pData, EAS_I8 *pValue); 603 …AS_RESULT TC_GetData (S_EAS_DATA *pEASData, EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue) in TC_GetData() argument 612 *pValue = EAS_FILE_MMAPI_TONE_CONTROL; in TC_GetData() 616 *pValue = (EAS_I32) pData->pSynth; in TC_GetData() 914 static EAS_RESULT TC_GetNextChar (EAS_HW_DATA_HANDLE hwInstData, S_TC_DATA *pData, EAS_I8 *pValue) in TC_GetNextChar() argument 921 *pValue = pData->dataByte; in TC_GetNextChar() 926 return EAS_HWGetByte(hwInstData, pData->fileHandle, pValue); in TC_GetNextChar()
|
D | eas_effects.h | 40 EAS_RESULT (*pFGetParam)(EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue); 49 EAS_RESULT (*pFGetParam)(EAS_VOID_PTR pInstData, EAS_I32 param, EAS_I32 *pValue);
|
/external/libnfc-nci/halimpl/bcm2079x/adaptation/ |
D | config.cpp | 58 bool getValue(const char* name, char* pValue, size_t& len) const; 400 bool CNfcConfig::getValue(const char* name, char* pValue, size_t& len) const in getValue() argument 408 memset(pValue, 0, len); in getValue() 411 memcpy(pValue, pParam->str_value(), len); in getValue() 647 extern "C" int GetStrValue(const char* name, char* pValue, unsigned long l) in GetStrValue() argument 652 bool b = rConfig.getValue(name, pValue, len); in GetStrValue() 665 extern "C" int GetNumValue(const char* name, void* pValue, unsigned long len) in GetNumValue() argument 667 if (!pValue) in GetNumValue() 688 *(static_cast<unsigned long*>(pValue)) = (unsigned long)v; in GetNumValue() 691 *(static_cast<unsigned short*>(pValue)) = (unsigned short)v; in GetNumValue() [all …]
|
/external/libnfc-nci/src/adaptation/ |
D | config.cpp | 58 bool getValue(const char* name, char* pValue, size_t& len) const; 415 bool CNfcConfig::getValue(const char* name, char* pValue, size_t& len) const in getValue() argument 423 memset(pValue, 0, len); in getValue() 426 memcpy(pValue, pParam->str_value(), len); in getValue() 662 extern "C" int GetStrValue(const char* name, char* pValue, unsigned long l) in GetStrValue() argument 667 bool b = rConfig.getValue(name, pValue, len); in GetStrValue() 680 extern "C" int GetNumValue(const char* name, void* pValue, unsigned long len) in GetNumValue() argument 682 if (!pValue) in GetNumValue() 703 *(static_cast<unsigned long*>(pValue)) = (unsigned long)v; in GetNumValue() 706 *(static_cast<unsigned short*>(pValue)) = (unsigned short)v; in GetNumValue() [all …]
|
/external/icu/icu4c/source/tools/toolutil/ |
D | ucmstate.c | 206 char *line, char **pKey, char **pValue) { in ucm_parseHeaderLine() argument 253 *pValue=s; in ucm_parseHeaderLine() 256 *pValue=s+1; in ucm_parseHeaderLine() 257 if(end>*pValue && *(end-1)=='"') { in ucm_parseHeaderLine() 264 if(uprv_strcmp(*pValue, "DBCS")==0) { in ucm_parseHeaderLine() 266 } else if(uprv_strcmp(*pValue, "SBCS")==0) { in ucm_parseHeaderLine() 268 } else if(uprv_strcmp(*pValue, "MBCS")==0) { in ucm_parseHeaderLine() 270 } else if(uprv_strcmp(*pValue, "EBCDIC_STATEFUL")==0) { in ucm_parseHeaderLine() 273 fprintf(stderr, "ucm error: unknown <uconv_class> %s\n", *pValue); in ucm_parseHeaderLine() 278 c=**pValue; in ucm_parseHeaderLine() [all …]
|
/external/sonivox/arm-wt-22k/host_src/ |
D | eas_wave.c | 58 static void FlipDWord (EAS_U32 *pValue) in FlipDWord() argument 63 p = (EAS_U8*) pValue; in FlipDWord() 65 *pValue = temp; in FlipDWord() 79 static void FlipWord (EAS_U16 *pValue) in FlipWord() argument 84 p = (EAS_U8*) pValue; in FlipWord() 86 *pValue = temp; in FlipWord()
|
/external/pdfium/fpdfsdk/src/jsapi/ |
D | fxjs_v8.cpp | 660 v8::Local<v8::Value> pValue) { in FXJS_PutArrayElement() argument 663 if (pArray->Set(pIsolate->GetCurrentContext(), index, pValue).IsNothing()) in FXJS_PutArrayElement() 728 int FXJS_ToInt32(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) { in FXJS_ToInt32() argument 729 if (pValue.IsEmpty()) in FXJS_ToInt32() 732 return pValue->ToInt32(context).ToLocalChecked()->Value(); in FXJS_ToInt32() 735 bool FXJS_ToBoolean(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) { in FXJS_ToBoolean() argument 736 if (pValue.IsEmpty()) in FXJS_ToBoolean() 739 return pValue->ToBoolean(context).ToLocalChecked()->Value(); in FXJS_ToBoolean() 742 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue) { in FXJS_ToNumber() argument 743 if (pValue.IsEmpty()) in FXJS_ToNumber() [all …]
|
/external/libnfc-nxp/src/ |
D | phFriNfc_LlcpUtils.c | 86 uint8_t *pValue) in phFriNfc_Llcp_EncodeTLV() argument 93 if ((psValueBuffer == NULL) || (pOffset == NULL) || (pValue == NULL)) in phFriNfc_Llcp_EncodeTLV() 121 psValueBuffer->buffer[offset] = pValue[i]; in phFriNfc_Llcp_EncodeTLV() 134 uint8_t *pValue) in phFriNfc_Llcp_AppendTLV() argument 140 if ((psValueBuffer == NULL) || (pCurrentOffset == NULL) || (pValue == NULL)) in phFriNfc_Llcp_AppendTLV() 161 memcpy(psValueBuffer->buffer + offset, pValue, length); in phFriNfc_Llcp_AppendTLV()
|
/external/pdfium/fpdfsdk/include/jsapi/ |
D | fxjs_v8.h | 221 v8::Local<v8::Value> pValue); 237 int FXJS_ToInt32(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue); 238 bool FXJS_ToBoolean(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue); 239 double FXJS_ToNumber(v8::Isolate* pIsolate, v8::Local<v8::Value> pValue); 241 v8::Local<v8::Value> pValue); 243 v8::Local<v8::Value> pValue); 245 v8::Local<v8::Value> pValue);
|
/external/testng/doc/ |
D | banner.js | 13 function writeTD(pCurrentPage, pHRef, pValue) argument 20 document.write(pValue)
|
/external/pdfium/xfa/src/fxfa/src/common/ |
D | xfa_utils.h | 160 void* pValue = NULL; in Lookup() local 161 return CFX_MapPtrToPtr::Lookup((void*)key, pValue); in Lookup() 180 void* pValue = NULL; in GetNextAssoc() local 181 CFX_MapPtrToPtr::GetNextAssoc(rNextPosition, pKey, pValue); in GetNextAssoc()
|
/external/pdfium/core/src/fpdfapi/fpdf_page/ |
D | fpdf_page_graph_state.cpp | 216 FX_FLOAT* pValue, in SetFillColor() argument 219 SetColor(pData->m_FillColor, pData->m_FillRGB, pCS, pValue, nValues); in SetFillColor() 222 FX_FLOAT* pValue, in SetStrokeColor() argument 225 SetColor(pData->m_StrokeColor, pData->m_StrokeRGB, pCS, pValue, nValues); in SetStrokeColor() 230 FX_FLOAT* pValue, in SetColor() argument 240 color.SetValue(pValue); in SetColor() 245 FX_FLOAT* pValue, in SetFillPattern() argument 248 pData->m_FillColor.SetValue(pPattern, pValue, nValues); in SetFillPattern() 259 FX_FLOAT* pValue, in SetStrokePattern() argument 262 pData->m_StrokeColor.SetValue(pPattern, pValue, nValues); in SetStrokePattern()
|
/external/aac/libAACdec/src/ |
D | block.h | 233 int EvaluatePower43 ( FIXP_DBL *pValue, in EvaluatePower43() argument 240 value = *pValue; in EvaluatePower43() 258 *pValue = fMultDiv2 (invQVal, MantissaTable [lsb][exponent]) ; in EvaluatePower43()
|