HomeSort by relevance Sort by last modified time
    Searched defs:pValue (Results 1 - 25 of 48) sorted by null

1 2

  /external/pdfium/core/fxcrt/css/
cfx_csspropertyholder.h 21 RetainPtr<CFX_CSSValue> pValue;
cfx_cssdeclaration.cpp 294 return p->pValue;
301 RetainPtr<CFX_CSSValue> pValue,
306 pHolder->pValue = pValue;
442 const CFX_CSSPropertyValueTable* pValue =
444 return pValue ? pdfium::MakeRetain<CFX_CSSEnumValue>(pValue->eName) : nullptr;
500 const CFX_CSSPropertyValueTable* pValue =
502 if (pValue) {
503 list.push_back(pdfium::MakeRetain<CFX_CSSEnumValue>(pValue->eName))
    [all...]
  /external/python/cpython2/Doc/includes/
run-func.c 7 PyObject *pArgs, *pValue;
29 pValue = PyInt_FromLong(atoi(argv[i + 3]));
30 if (!pValue) {
36 /* pValue reference stolen here: */
37 PyTuple_SetItem(pArgs, i, pValue);
39 pValue = PyObject_CallObject(pFunc, pArgs);
41 if (pValue != NULL) {
42 printf("Result of call: %ld\n", PyInt_AsLong(pValue));
43 Py_DECREF(pValue);
  /external/python/cpython3/Doc/includes/
run-func.c 7 PyObject *pArgs, *pValue;
29 pValue = PyLong_FromLong(atoi(argv[i + 3]));
30 if (!pValue) {
36 /* pValue reference stolen here: */
37 PyTuple_SetItem(pArgs, i, pValue);
39 pValue = PyObject_CallObject(pFunc, pArgs);
41 if (pValue != NULL) {
42 printf("Result of call: %ld\n", PyLong_AsLong(pValue));
43 Py_DECREF(pValue);
  /external/pdfium/core/fpdfapi/parser/
fpdf_parser_utility.cpp 197 CPDF_Object* pValue = it.second.get();
199 if (pValue && !pValue->IsInline()) {
200 buf << " " << pValue->GetObjNum() << " 0 R ";
202 buf << pValue;
cpdf_dictionary.cpp 251 CPDF_Object* pValue = it.second.get();
257 if (!pValue->IsInline()) {
259 !archive->WriteDWord(pValue->GetObjNum()) ||
263 } else if (!pValue->WriteTo(archive)) {
  /external/pdfium/core/fpdfdoc/
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()) {
cpdf_nametree.cpp 428 CPDF_Object* pValue = LookupValue(sName);
429 if (!pValue) {
433 pValue = pDests->GetDirectObjectFor(PDF_EncodeText(sName));
435 if (!pValue)
437 if (CPDF_Array* pArray = pValue->AsArray())
439 if (CPDF_Dictionary* pDict = pValue->AsDictionary())
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...]
  /external/pdfium/core/fxcrt/xml/
cxml_element.cpp 94 const WideString* pValue = Lookup(ByteString(bsSpace), ByteString(bsName));
95 if (pValue)
96 attr = *pValue;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
lex.c 687 char *pValue;
695 &pValue,
761 char *pValue;
771 &pValue,
841 char *pValue;
851 &pValue,
misc.c     [all...]
  /external/pdfium/fxjs/xfa/
cjx_tree.cpp 74 auto pValue = pdfium::MakeUnique<CFXJSE_Value>(pScriptContext->GetIsolate());
76 (jsObject->*(lpAttributeInfo->callback))(pValue.get(), false,
78 return CJS_Return(pValue->DirectGetValue().Get(runtime->GetIsolate()));
95 auto pValue = pdfium::MakeUnique<CFXJSE_Value>(pScriptContext->GetIsolate());
96 ResolveNodeList(pValue.get(), runtime->ToWideString(params[0]),
101 return CJS_Return(pValue->DirectGetValue().Get(runtime->GetIsolate()));
104 void CJX_Tree::all(CFXJSE_Value* pValue,
114 ResolveNodeList(pValue, wsExpression, dwFlag, nullptr);
117 void CJX_Tree::classAll(CFXJSE_Value* pValue,
126 ResolveNodeList(pValue, wsExpression
    [all...]
  /external/pdfium/fxjs/
cfxjse_context.cpp 196 auto pValue = pdfium::MakeUnique<CFXJSE_Value>(m_pIsolate);
201 pValue->ForceSetValue(hGlobalObject);
202 return 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...]
cfxjse_value.cpp 75 v8::Local<v8::Value> pValue = v8::Local<v8::Value>::New(m_pIsolate, m_hValue);
76 ASSERT(!pValue.IsEmpty());
78 if (!pValue->IsObject())
81 return FXJSE_RetrieveObjectBinding(pValue.As<v8::Object>(), lpClass);
114 v8::Local<v8::Value> pValue = v8::Number::New(m_pIsolate, ftod(fFloat));
115 m_hValue.Reset(m_pIsolate, pValue);
219 v8::Local<v8::Value> pValue =
227 pValue)
  /hardware/interfaces/automotive/vehicle/2.0/default/tests/
VehicleHalManager_test.cpp 56 VehiclePropValuePtr pValue;
62 pValue = getValuePool()->obtainString(kCarMake);
69 pValue = getValuePool()->obtainFloat(42.42);
74 pValue = getValuePool()->obtainComplex();
75 pValue->value.int32Values = hidl_vec<int32_t> { 10, 20 };
76 pValue->value.int64Values = hidl_vec<int64_t> { 30, 40 };
77 pValue->value.floatValues = hidl_vec<float_t> { 1.1, 2.2 };
78 pValue->value.bytes = hidl_vec<uint8_t> { 1, 2, 3 };
79 pValue->value.stringValue = kCarMake;
86 pValue = getValuePool()->obtain(mValues[key])
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/TftpServer/
TftpServer.c     [all...]
  /external/pdfium/core/fpdfapi/edit/
cpdf_creator.cpp 291 CPDF_Object* pValue = it.second.get();
299 if (!pValue->IsInline()) {
301 !m_Archive->WriteDWord(pValue->GetObjNum()) ||
305 } else if (!WriteDirectObj(objnum, pValue, !bSignValue)) {
627 CPDF_Object* pValue = it.second.get();
637 if (!pValue->IsInline()) {
639 !m_Archive->WriteDWord(pValue->GetObjNum()) ||
643 } else if (!pValue->WriteTo(m_Archive.get())) {
  /external/pdfium/xfa/fxfa/
cxfa_ffwidgethandler.cpp 324 CXFA_Node* pValue = CreateCopyNode(XFA_Element::Value, pCaption);
325 CXFA_Node* pText = CreateCopyNode(XFA_Element::Text, pValue);
565 CXFA_Node* pValue = CreateCopyNode(XFA_Element::Value, pParent);
566 CreateCopyNode(eValue, pValue);
567 return pValue;
  /external/icu/icu4c/source/common/
ucnv_ct.cpp 347 uint32_t pValue;
413 pValueLength = ucnv_MBCSFromUChar32(myConverterData->myConverterArray[i], sourceChar, &pValue, useFallback);
423 tmpTargetBuffer[tmpTargetBufferLength++] = (uint8_t)(pValue >> (n * 8));
431 pValueLength = ucnv_MBCSFromUChar32(myConverterData->myConverterArray[currentState], sourceChar, &pValue, useFallback);
434 tmpTargetBuffer[tmpTargetBufferLength++] = (uint8_t)(pValue >> (n * 8));
  /prebuilts/go/darwin-x86/src/fmt/
fmt_test.go 109 var pValue P
846 {"%s", &pValue, "String(p)"}, // String method...
847 {"%p", &pValue, "0xPTR"}, // ... is not called with %p.
    [all...]
  /prebuilts/go/linux-x86/src/fmt/
fmt_test.go 109 var pValue P
846 {"%s", &pValue, "String(p)"}, // String method...
847 {"%p", &pValue, "0xPTR"}, // ... is not called with %p.
    [all...]
  /external/icu/icu4c/source/i18n/
collationdatabuilder.cpp     [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_colorspace.cpp 414 CPDF_Object* pValue = it.second.get();
415 if (ToName(pValue))
416 pRet.reset(ColorspaceFromName(pValue->GetString()));
    [all...]

Completed in 720 milliseconds

1 2