| /external/pdfium/core/fpdfapi/page/ |
| cpdf_colorstate.cpp | 73 float* pValue, 76 SetColor(pData->m_FillColor, pData->m_FillRGB, pCS, pValue, nValues); 80 float* pValue, 83 SetColor(pData->m_StrokeColor, pData->m_StrokeRGB, pCS, pValue, nValues); 87 float* pValue, 90 pData->m_FillColor.SetValue(pPattern, pValue, nValues); 105 float* pValue, 108 pData->m_StrokeColor.SetValue(pPattern, pValue, nValues); 126 float* pValue, 136 color.SetValue(pValue); [all...] |
| /frameworks/compile/mclinker/include/mcld/Support/ |
| LEB128.h | 23 size_t encode(ByteType*& pBuf, IntType pValue); 36 size_t size(IntType pValue) { 38 while (pValue > 0x80) { 39 pValue >>= 7; 52 size_t encode<uint64_t>(ByteType*& pBuf, uint64_t pValue); 55 size_t encode<uint32_t>(ByteType*& pBuf, uint32_t pValue); 61 size_t encode<int64_t>(ByteType*& pBuf, int64_t pValue); 64 size_t encode<int32_t>(ByteType*& pBuf, int32_t pValue); 96 size_t encode(char*& pBuf, IntType pValue) { 97 return encode<IntType>(reinterpret_cast<ByteType*&>(pBuf), pValue); [all...] |
| /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
| tom.h | 162 virtual HRESULT WINAPI GetSaved(__LONG32 *pValue) = 0; 164 virtual HRESULT WINAPI GetDefaultTabStop(float *pValue) = 0; 192 HRESULT (WINAPI *GetSaved)(ITextDocument *This,__LONG32 *pValue); 194 HRESULT (WINAPI *GetDefaultTabStop)(ITextDocument *This,float *pValue); 224 #define ITextDocument_GetSaved(This,pValue) (This)->lpVtbl->GetSaved(This,pValue) 226 #define ITextDocument_GetDefaultTabStop(This,pValue) (This)->lpVtbl->GetDefaultTabStop(This,pValue) 249 HRESULT WINAPI ITextDocument_GetSaved_Proxy(ITextDocument *This,__LONG32 *pValue); 253 HRESULT WINAPI ITextDocument_GetDefaultTabStop_Proxy(ITextDocument *This,float *pValue); [all...] |
| wdsbp.h | 24 PVOID pValue 58 PVOID pValue,
|
| /external/pdfium/fxjs/xfa/ |
| cjx_object.cpp | 142 void CJX_Object::className(CFXJSE_Value* pValue, 149 pValue->SetString( 332 void* pValue = nullptr; 334 if (GetMapModuleValue(pKey, pValue)) 335 return {!!pValue}; 371 void* pValue = nullptr; 372 if (GetMapModuleValue(pKey, pValue)) 373 return {static_cast<int32_t>(reinterpret_cast<uintptr_t>(pValue))}; 383 void* pValue = nullptr; 384 if (GetMapModuleValue(pKey, pValue)) { [all...] |
| cjx_delta.cpp | 30 void CJX_Delta::currentValue(CFXJSE_Value* pValue, 34 void CJX_Delta::savedValue(CFXJSE_Value* pValue, 38 void CJX_Delta::target(CFXJSE_Value* pValue,
|
| cjx_hostpseudomodel.cpp | 73 void CJX_HostPseudoModel::appType(CFXJSE_Value* pValue, 84 pValue->SetString("Exchange"); 87 void CJX_HostPseudoModel::calculationsEnabled(CFXJSE_Value* pValue, 97 pValue->ToBoolean()); 100 pValue->SetBoolean(pNotify->GetDocEnvironment()->IsCalculationsEnabled(hDoc)); 103 void CJX_HostPseudoModel::currentPage(CFXJSE_Value* pValue, 112 pNotify->GetDocEnvironment()->SetCurrentPage(hDoc, pValue->ToInteger()); 115 pValue->SetInteger(pNotify->GetDocEnvironment()->GetCurrentPage(hDoc)); 118 void CJX_HostPseudoModel::language(CFXJSE_Value* pValue, 129 pValue->SetString [all...] |
| /external/pdfium/fxjs/ |
| cjs_v8.cpp | 67 v8::Local<v8::Value> pValue) { 70 if (pArray->Set(m_isolate->GetCurrentContext(), index, pValue).IsNothing()) 143 int CJS_V8::ToInt32(v8::Local<v8::Value> pValue) { 144 if (pValue.IsEmpty()) 147 v8::MaybeLocal<v8::Int32> maybe_int32 = pValue->ToInt32(context); 153 bool CJS_V8::ToBoolean(v8::Local<v8::Value> pValue) { 154 if (pValue.IsEmpty()) 157 v8::MaybeLocal<v8::Boolean> maybe_boolean = pValue->ToBoolean(context); 163 double CJS_V8::ToDouble(v8::Local<v8::Value> pValue) { 164 if (pValue.IsEmpty() [all...] |
| cjs_v8.h | 45 int ToInt32(v8::Local<v8::Value> pValue); 46 bool ToBoolean(v8::Local<v8::Value> pValue); 47 double ToDouble(v8::Local<v8::Value> pValue); 48 WideString ToWideString(v8::Local<v8::Value> pValue); 49 ByteString ToByteString(v8::Local<v8::Value> pValue); 50 v8::Local<v8::Object> ToObject(v8::Local<v8::Value> pValue); 51 v8::Local<v8::Array> ToArray(v8::Local<v8::Value> pValue); 65 v8::Local<v8::Value> pValue); 76 v8::Local<v8::Value> pValue);
|
| cfxjse_engine.h | 29 static CXFA_Object* ToObject(CFXJSE_Value* pValue, CFXJSE_Class* pClass); 32 CFXJSE_Value* pValue); 35 CFXJSE_Value* pValue); 38 CFXJSE_Value* pValue); 41 CFXJSE_Value* pValue); 92 CFXJSE_Value* pValue, 99 CFXJSE_Value* pValue,
|
| cfxjse_engine.cpp | 66 CXFA_ThisProxy* ToThisProxy(CFXJSE_Value* pValue, CFXJSE_Class* pClass) { 67 return static_cast<CXFA_ThisProxy*>(pValue->ToHostObject(pClass)); 86 CXFA_Object* CFXJSE_Engine::ToObject(CFXJSE_Value* pValue, 88 CFXJSE_HostObject* pHostObj = pValue->ToHostObject(pClass); 143 CFXJSE_Value* pValue = pThisObject ? GetJSValueFromMap(pThisObject) : nullptr; 144 return m_JsContext->ExecuteScript(btScript.c_str(), hRetValue, pValue); 149 CFXJSE_Value* pValue, 159 pValue->Assign(GetJSValueFromMap(resolveRs.objects.front())); 166 (jsObject->*(lpAttributeInfo->callback))(pValue, bSetting, 175 CFXJSE_Value* pValue) { [all...] |
| ijs_runtime.h | 35 CFXJSE_Value* pValue) = 0; 37 CFXJSE_Value* pValue) = 0;
|
| /external/tensorflow/tensorflow/python/lib/core/ |
| py_util.cc | 48 PyObject* pvalue; local 50 PyErr_Fetch(&ptype, &pvalue, &ptraceback); 51 PyErr_NormalizeException(&ptype, &pvalue, &ptraceback); 53 if (pvalue) { 54 PyObject* str = PyObject_Str(pvalue); 63 Py_DECREF(pvalue);
|
| /external/libxml2/result/ |
| att6.rde | 8 3 3 #text 0 1 pvalue->ReferencedOrder.SellersOrderID
|
| att6.rdr | 8 3 3 #text 0 1 pvalue->ReferencedOrder.SellersOrderID
|
| /external/pdfium/core/fpdfdoc/ |
| cpdf_formfield.cpp | 306 CPDF_Object* pValue = FPDF_GetFieldAttr(m_pDict.Get(), bDefault ? "DV" : "V"); 307 if (!pValue) { 310 pValue = FPDF_GetFieldAttr(m_pDict.Get(), "V"); 311 if (!pValue && m_Type != Text) 312 pValue = FPDF_GetFieldAttr(m_pDict.Get(), "DV"); 314 if (!pValue) 318 switch (pValue->GetType()) { 321 return pValue->GetUnicodeText(); 323 pValue = pValue->AsArray()->GetDirectObjectAt(0) [all...] |
| cpdf_pagelabel.cpp | 97 CPDF_Object* pValue = nullptr; 100 pValue = numberTree.LookupValue(n); 101 if (pValue) 107 if (pValue) { 108 pValue = pValue->GetDirect(); 109 if (CPDF_Dictionary* pLabel = pValue->AsDictionary()) {
|
| /frameworks/wilhelm/src/android/ |
| android_Effect.h | 23 int32_t param, int32_t param2, void *pValue); 26 int32_t param, int32_t param2, void *pValue); 34 int32_t param, void *pValue); 37 int32_t param, void *pValue); 45 int32_t param, void *pValue); 48 int32_t param, void *pValue); 67 int32_t param, void *pValue); 70 int32_t param, void *pValue); 140 int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize); 143 int32_t param, uint32_t paramSizeMax, void *pValue, uint32_t valueSize) [all...] |
| /external/testng/doc/ |
| banner.js | 11 // @param pValue the string that should apear as the value
13 function writeTD(pCurrentPage, pHRef, pValue)
20 document.write(pValue)
|
| /prebuilts/misc/common/swig/include/2.0.11/perl5/ |
| perlinit.swg | 68 sv_setpv(sv, (const char *) swig_constants[i].pvalue); 71 SWIG_MakePtr(sv, swig_constants[i].pvalue, *(swig_constants[i].ptype),0); 74 SWIG_MakePackedObj(sv, swig_constants[i].pvalue, swig_constants[i].lvalue, *(swig_constants[i].ptype));
|
| /external/pdfium/core/fxcrt/css/ |
| cfx_csspropertyholder.h | 21 RetainPtr<CFX_CSSValue> pValue;
|
| /frameworks/compile/mclinker/include/mcld/Target/ |
| GOT.h | 39 Entry(uint64_t pValue, SectionData* pParent) 40 : TargetFragment(Fragment::Target, pParent), f_Value(pValue) {} 46 void setValue(uint64_t pValue) { f_Value = pValue; }
|
| ELFAttributeValue.h | 87 bool equals(const ELFAttributeValue& pValue) const; 89 bool operator==(const ELFAttributeValue& pValue) const { 90 return equals(pValue); 92 bool operator!=(const ELFAttributeValue& pValue) const { 93 return !equals(pValue);
|
| /frameworks/compile/mclinker/lib/Target/ |
| ELFAttributeValue.cpp | 52 bool ELFAttributeValue::equals(const ELFAttributeValue& pValue) const { 53 if ((pValue.type() != m_Type) || isUninitialized()) 56 if (isIntValue() && (m_IntValue != pValue.getIntValue())) 59 if (isStringValue() && (m_StringValue != pValue.getStringValue()))
|
| /frameworks/av/media/libeffects/testlibs/ |
| EffectEqualizer.cpp | 121 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue); 122 int Equalizer_setParameter(AudioEqualizer * pEqualizer, int32_t *pParam, void *pValue); 354 // pValue - pointer to variable to hold retrieved value 358 // *pValue updated with parameter value 366 int Equalizer_getParameter(AudioEqualizer * pEqualizer, int32_t *pParam, uint32_t *pValueSize, void *pValue) 422 *(uint16_t *)pValue = (uint16_t)kNumBands; 423 ALOGV("Equalizer_getParameter() EQ_PARAM_NUM_BANDS %d", *(int16_t *)pValue); 427 *(int16_t *)pValue = -9600; 428 *((int16_t *)pValue + 1) = 4800; 430 *(int32_t *)pValue, *((int32_t *)pValue + 1)) [all...] |