HomeSort by relevance Sort by last modified time
    Searched full:pvalue (Results 126 - 150 of 456) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/fxjs/xfa/
cjx_field.cpp 235 void CJX_Field::defaultValue(CFXJSE_Value* pValue,
244 if (pValue) {
246 pWidgetAcc->SetIsNull(pValue->IsNull());
250 if (pValue && !(pValue->IsNull() || pValue->IsUndefined()))
251 wsNewText = pValue->ToWideString();
270 pValue->SetNull();
280 pValue->SetString(content.UTF8Encode().AsStringView());
283 pValue->SetFloat((float)(double)decimal)
    [all...]
cjx_manifest.cpp 34 void CJX_Manifest::defaultValue(CFXJSE_Value* pValue,
37 Script_Som_DefaultValue(pValue, bSetting, eAttribute);
40 void CJX_Manifest::action(CFXJSE_Value* pValue,
43 Script_Attribute_String(pValue, bSetting, eAttribute);
46 void CJX_Manifest::use(CFXJSE_Value* pValue,
49 Script_Attribute_String(pValue, bSetting, eAttribute);
52 void CJX_Manifest::usehref(CFXJSE_Value* pValue,
55 Script_Attribute_String(pValue, bSetting, eAttribute);
cjx_encrypt.cpp 15 void CJX_Encrypt::use(CFXJSE_Value* pValue,
18 Script_Attribute_String(pValue, bSetting, eAttribute);
21 void CJX_Encrypt::format(CFXJSE_Value* pValue,
25 void CJX_Encrypt::usehref(CFXJSE_Value* pValue,
28 Script_Attribute_String(pValue, bSetting, eAttribute);
cjx_extras.cpp 15 void CJX_Extras::use(CFXJSE_Value* pValue,
18 Script_Attribute_String(pValue, bSetting, eAttribute);
21 void CJX_Extras::type(CFXJSE_Value* pValue,
25 void CJX_Extras::usehref(CFXJSE_Value* pValue,
28 Script_Attribute_String(pValue, bSetting, eAttribute);
cjx_object.h 115 void Script_Attribute_String(CFXJSE_Value* pValue,
118 void Script_Attribute_BOOL(CFXJSE_Value* pValue,
121 void Script_Attribute_Integer(CFXJSE_Value* pValue,
125 void Script_Som_FontColor(CFXJSE_Value* pValue,
128 void Script_Som_FillColor(CFXJSE_Value* pValue,
131 void Script_Som_BorderColor(CFXJSE_Value* pValue,
134 void Script_Som_BorderWidth(CFXJSE_Value* pValue,
137 void Script_Som_ValidationMessage(CFXJSE_Value* pValue,
140 void Script_Som_MandatoryMessage(CFXJSE_Value* pValue,
143 void Script_Field_Length(CFXJSE_Value* pValue,
    [all...]
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...]
cjx_subjectdn.cpp 15 void CJX_SubjectDN::delimiter(CFXJSE_Value* pValue,
18 Script_Attribute_String(pValue, bSetting, eAttribute);
cjx_subjectdns.cpp 15 void CJX_SubjectDNs::type(CFXJSE_Value* pValue,
18 Script_Attribute_String(pValue, bSetting, eAttribute);
cjx_xmlconnection.cpp 16 void CJX_XmlConnection::dataDescription(CFXJSE_Value* pValue,
19 Script_Attribute_String(pValue, bSetting, eAttribute);
cjx_xsdconnection.cpp 16 void CJX_XsdConnection::dataDescription(CFXJSE_Value* pValue,
19 Script_Attribute_String(pValue, bSetting, eAttribute);
cjx_datawindow.cpp 51 void CJX_DataWindow::recordsBefore(CFXJSE_Value* pValue,
55 void CJX_DataWindow::currentRecordNumber(CFXJSE_Value* pValue,
59 void CJX_DataWindow::recordsAfter(CFXJSE_Value* pValue,
63 void CJX_DataWindow::isDefined(CFXJSE_Value* pValue,
cjx_desc.cpp 30 void CJX_Desc::use(CFXJSE_Value* pValue,
33 Script_Attribute_String(pValue, bSetting, eAttribute);
36 void CJX_Desc::usehref(CFXJSE_Value* pValue,
39 Script_Attribute_String(pValue, bSetting, eAttribute);
cjx_wsdlconnection.cpp 33 void CJX_WsdlConnection::dataDescription(CFXJSE_Value* pValue,
36 Script_Attribute_String(pValue, bSetting, eAttribute);
39 void CJX_WsdlConnection::execute(CFXJSE_Value* pValue,
42 Script_Attribute_String(pValue, bSetting, eAttribute);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
portabledevicetypes.h 91 PROPVARIANT *pValue) = 0;
95 const PROPVARIANT *pValue) = 0;
99 PROPVARIANT *pValue) = 0;
107 LPWSTR *pValue) = 0;
115 ULONG *pValue) = 0;
123 LONG *pValue) = 0;
131 ULONGLONG *pValue) = 0;
139 LONGLONG *pValue) = 0;
147 FLOAT *pValue) = 0;
155 HRESULT *pValue) = 0
    [all...]
  /frameworks/compile/mclinker/lib/Target/
ELFAttributeData.cpp 35 bool ELFAttributeData::ReadValue(ELFAttributeValue& pValue,
39 if (pValue.isIntValue()) {
42 pValue.setIntValue(static_cast<unsigned int>(int_value));
52 if (pValue.isStringValue()) {
53 pValue.setStringValue(pBuf);
55 size_t size = pValue.getStringValue().length() + 1 /* '\0' */;
65 const ELFAttributeValue& pValue,
71 if (pValue.isIntValue())
72 leb128::encode<uint32_t>(pBuf, pValue.getIntValue());
74 if (pValue.isStringValue())
    [all...]
  /external/pdfium/core/fpdfapi/page/
cpdf_color.cpp 30 PatternValue* pvalue = reinterpret_cast<PatternValue*>(m_pBuffer); local
32 pvalue->m_pCountedPattern ? pvalue->m_pCountedPattern->get() : nullptr;
101 PatternValue* pvalue = reinterpret_cast<PatternValue*>(m_pBuffer); local
102 if (pvalue->m_pPattern) {
103 pDocPageData = pvalue->m_pPattern->document()->GetPageData();
104 pDocPageData->ReleasePattern(pvalue->m_pPattern->pattern_obj());
106 pvalue->m_nComps = ncomps;
107 pvalue->m_pPattern = pPattern;
109 memcpy(pvalue->m_Comps, comps, ncomps * sizeof(float))
    [all...]
cpdf_colorstate.h 41 void SetFillColor(CPDF_ColorSpace* pCS, float* pValue, uint32_t nValues);
42 void SetStrokeColor(CPDF_ColorSpace* pCS, float* pValue, uint32_t nValues);
43 void SetFillPattern(CPDF_Pattern* pattern, float* pValue, uint32_t nValues);
44 void SetStrokePattern(CPDF_Pattern* pattern, float* pValue, uint32_t nValues);
66 float* pValue,
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_pixelformat.c 56 int *pvalue )
64 *pvalue = (int) count;
75 *pvalue = pfi->pfd.dwFlags & PFD_DRAW_TO_WINDOW ? TRUE : FALSE;
79 *pvalue = pfi->pfd.dwFlags & PFD_DRAW_TO_BITMAP ? TRUE : FALSE;
83 *pvalue = pfi->pfd.dwFlags & PFD_NEED_PALETTE ? TRUE : FALSE;
87 *pvalue = pfi->pfd.dwFlags & PFD_NEED_SYSTEM_PALETTE ? TRUE : FALSE;
92 *pvalue = WGL_SWAP_COPY_ARB;
94 *pvalue = WGL_SWAP_EXCHANGE_EXT;
96 *pvalue = WGL_SWAP_UNDEFINED_ARB;
100 *pvalue = FALSE
    [all...]
  /frameworks/compile/mclinker/lib/Support/
LEB128.cpp 17 size_t encode<uint64_t>(ByteType*& pBuf, uint64_t pValue) {
20 ByteType byte = pValue & 0x7f;
21 pValue >>= 7;
22 if (pValue)
26 } while (pValue);
36 size_t encode<uint32_t>(ByteType*& pBuf, uint32_t pValue) {
37 if ((pValue & ~0x7f) == 0) {
38 *pBuf++ = static_cast<ByteType>(pValue);
40 } else if ((pValue & ~0x3fff) == 0) {
41 *pBuf++ = static_cast<ByteType>((pValue & 0x7f) | 0x80)
    [all...]
  /frameworks/compile/mclinker/include/mcld/LD/
MsgHandler.h 35 void addTaggedVal(intptr_t pValue,
71 inline const MsgHandler& operator<<(const MsgHandler& pHandler, int pValue) {
72 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
77 unsigned int pValue) {
78 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
82 inline const MsgHandler& operator<<(const MsgHandler& pHandler, long pValue) {
83 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_sint);
88 unsigned long pValue) {
89 pHandler.addTaggedVal(pValue, DiagnosticEngine::ak_uint);
94 unsigned long long pValue) {
    [all...]
  /external/pdfium/core/fxcrt/css/
cfx_cssstyleselector.cpp 115 ApplyProperty(prop->eProperty, prop->pValue, pComputedStyle);
121 ApplyProperty(prop->eProperty, prop->pValue, pComputedStyle);
172 const RetainPtr<CFX_CSSValue>& pValue,
174 if (pValue->GetType() != CFX_CSSPrimitiveType::List) {
175 CFX_CSSPrimitiveType eType = pValue->GetType();
180 ToDisplay(pValue.As<CFX_CSSEnumValue>()->Value());
186 fFontSize = pValue.As<CFX_CSSNumberValue>()->Apply(fFontSize);
189 ToFontSize(pValue.As<CFX_CSSEnumValue>()->Value(), fFontSize);
194 RetainPtr<CFX_CSSNumberValue> v = pValue.As<CFX_CSSNumberValue>();
207 ToTextAlign(pValue.As<CFX_CSSEnumValue>()->Value())
    [all...]
  /external/libcxx/test/std/experimental/language.support/support.coroutines/end.to.end/
go.pass.cpp 87 T const* pvalue = nullptr; member in class:channel
93 assert(pvalue == nullptr);
95 pvalue = &value;
109 assert(!pvalue);
110 pvalue = &value;
113 assert(!pvalue);
119 while (!pvalue) goroutine::run_one();
120 auto result = *pvalue;
121 pvalue = nullptr;
146 auto result = *ch->pvalue;
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/language.support/support.coroutines/end.to.end/
go.pass.cpp 87 T const* pvalue = nullptr; member in class:channel
93 assert(pvalue == nullptr);
95 pvalue = &value;
109 assert(!pvalue);
110 pvalue = &value;
113 assert(!pvalue);
119 while (!pvalue) goroutine::run_one();
120 auto result = *pvalue;
121 pvalue = nullptr;
146 auto result = *ch->pvalue;
    [all...]

Completed in 1014 milliseconds

1 2 3 4 56 7 8 91011>>