Home
last modified time | relevance | path

Searched refs:pCO (Results 1 – 25 of 46) sorted by relevance

12

/dports/databases/cego/cego-2.47.11/src/
H A DCegoAttrDesc.cc231 int CegoAttrDesc::evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl) in evalReferences() argument
235 if ( pCO->getType() == CegoObject::JOIN ) in evalReferences()
237 CegoContentObject** pSubCO = pCO->getSubCOList().First(); in evalReferences()
241 pSubCO = pCO->getSubCOList().Next(); in evalReferences()
244 …else if ( pCO->getType() == CegoObject::VIEW || pCO->getType() == CegoObject::TABLE || pCO->getTy… in evalReferences()
246 refCount += evalTableReferences(pCO, fl); in evalReferences()
256 if ( ( _tableName == (Chain)pCO->getTabName() && pCO->getType() != CegoObject::ALIAS ) in evalTableReferences()
257 || ( _tableName == (Chain)pCO->getTabAlias() && _tableName != Chain()) ) in evalTableReferences()
262 if ( pCO->getType() == CegoObject::ALIAS ) in evalTableReferences()
263 _tableName = pCO->getTabAlias(); in evalTableReferences()
[all …]
H A DCegoSelect.cc248 while ( pCO ) in ~CegoSelect()
250 delete (*pCO); in ~CegoSelect()
1109 while (pCO) in getQueryId()
1204 while (pCO) in getObjectList()
2375 while (pCO) in buildJoinTables()
3111 while (pCO) in evalReferences()
3121 while (pCO) in evalReferences()
3257 while (pCO) in encode()
3267 while (pCO) in encode()
3532 while (pCO) in getEncodingLength()
[all …]
H A DCegoJoinObject.cc65 CegoContentObject **pCO = pLeftObject->getSubCOList().First(); in CegoJoinObject() local
66 while ( pCO ) in CegoJoinObject()
68 _subCOList.Insert(*pCO); in CegoJoinObject()
69 pCO = pLeftObject->getSubCOList().Next(); in CegoJoinObject()
79 CegoContentObject **pCO = pRightObject->getSubCOList().First(); in CegoJoinObject() local
80 while ( pCO ) in CegoJoinObject()
82 _subCOList.Insert(*pCO); in CegoJoinObject()
83 pCO = pRightObject->getSubCOList().Next(); in CegoJoinObject()
H A DCegoAttrDesc.h70 int evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
76 int evalTableReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
H A DCegoCondDesc.cc246 int CegoCondDesc::evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl) in evalReferences() argument
255 refCount += _pLeft->evalReferences(pCO, fl); in evalReferences()
256 refCount += _pRight->evalReferences(pCO, fl); in evalReferences()
261 refCount += _pLeft->evalReferences(pCO, fl); in evalReferences()
H A DCegoPredDesc.cc956 refCount += _pC->evalReferences(pCO, fl); in evalReferences()
961 refCount += _pNotPred->evalReferences(pCO, fl); in evalReferences()
966 refCount += _pExpr1->evalReferences(pCO, fl); in evalReferences()
967 refCount += _pExpr2->evalReferences(pCO, fl); in evalReferences()
972 refCount += _pExpr1->evalReferences(pCO, fl); in evalReferences()
973 refCount += _pExpr2->evalReferences(pCO, fl); in evalReferences()
974 refCount += _pExpr3->evalReferences(pCO, fl); in evalReferences()
980 refCount += _pExpr1->evalReferences(pCO, fl); in evalReferences()
986 refCount += _pExpr1->evalReferences(pCO, fl); in evalReferences()
992 refCount += _pExpr1->evalReferences(pCO, fl); in evalReferences()
[all …]
H A DCegoSelect.h93 int evalExtTableReferences(CegoContentObject* pCO, const ListT<CegoField>& fl);
122 int evalTableReferences(CegoContentObject* pCO, const ListT<CegoField>& fl);
172 void addObject4CO(CegoContentObject *pCO, SetT<CegoObject>& objList) const;
H A DCegoCaseCond.cc204 int CegoCaseCond::evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl) in evalReferences() argument
211 refCount += (*pPredDesc)->evalReferences(pCO, fl); in evalReferences()
218 refCount += (*pExpr)->evalReferences(pCO, fl); in evalReferences()
222 refCount+= _elseExpr->evalReferences(pCO, fl); in evalReferences()
H A DCegoTerm.cc230 int CegoTerm::evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl) in evalReferences() argument
239 refCount += _pTerm->evalReferences(pCO, fl); in evalReferences()
240 refCount += _pFactor->evalReferences(pCO, fl); in evalReferences()
245 refCount += _pFactor->evalReferences(pCO, fl); in evalReferences()
H A DCegoFactor.cc663 int CegoFactor::evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl) in evalReferences() argument
672 refCount += _pAttrDesc->evalReferences(pCO, fl); in evalReferences()
677 refCount += _pExpr->evalReferences(pCO, fl); in evalReferences()
682 refCount += _pFunction->evalReferences(pCO, fl); in evalReferences()
689 refCount += _pAggr->getExpr()->evalReferences(pCO, fl); in evalReferences()
698 refCount += _pSelect->evalExtTableReferences(pCO, fl); in evalReferences()
703 refCount += _pCaseCond->evalReferences(pCO, fl); in evalReferences()
H A DCegoExpr.cc265 int CegoExpr::evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl) in evalReferences() argument
275 refCount += _pExpr->evalReferences(pCO, fl); in evalReferences()
276 refCount += _pTerm->evalReferences(pCO, fl); in evalReferences()
281 refCount+= _pTerm->evalReferences(pCO, fl); in evalReferences()
H A DCegoCondDesc.h59 int evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
H A DCegoCaseCond.h57 int evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
H A DCegoTerm.h68 int evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
H A DCegoDistCursor.h40 CegoDistCursor(CegoDistManager* pGTM, CegoContentObject *pCO);
H A DCegoExpr.h69 int evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
H A DCegoFunction.h116 int evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
H A DCegoFactor.h90 int evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
H A DCegoQueryHelper.cc1273 CegoContentObject **pCO = coList.First(); in checkIndexForPredicate() local
1275 while ( pCO && ! found ) in checkIndexForPredicate()
1280 if ( (*pCO)->getName() == *pTableName || (*pCO)->getTabName() == *pTableName ) in checkIndexForPredicate()
1283 tsId = (*pCO)->getTabSetId(); in checkIndexForPredicate()
1284 tabName = (*pCO)->getTabName(); in checkIndexForPredicate()
1289 pCO = coList.Next(); in checkIndexForPredicate()
1300 if ( (*pCO)->getType() == CegoObject::ALIAS ) in checkIndexForPredicate()
1302 aliasList = ((CegoAliasObject*)*pCO)->getAliasList(); in checkIndexForPredicate()
H A DCegoPredDesc.h112 int evalReferences(CegoContentObject *pCO, const ListT<CegoField>& fl);
/dports/audio/mixxx/mixxx-2.3.0/src/controllers/midi/
H A Dmidicontroller.cpp260 ControlObject* pCO = ControlObject::getControl(mapping.control); in processInputMapping() local
261 if (pCO == nullptr) { in processInputMapping()
341 double currControlValue = pCO->getMidiParameter(); in processInputMapping()
353 m_st.enable(pCO); in processInputMapping()
354 if (m_st.ignore(pCO, pCO->getParameterForMidi(newValue))) { in processInputMapping()
358 pCO->setValueFromMidi(static_cast<MidiOpCode>(opCode), newValue); in processInputMapping()
/dports/multimedia/intel-media-sdk/MediaSDK-intel-mediasdk-22.1.0/_studio/mfx_lib/shared/include/
H A Dmfx_mpeg2_enc_common.h75 mfxExtCodingOptionSPSPPS* pCO = GetExtCodingOptionsSPSPPS(par->ExtParam, par->NumExtParam); in GetSPSBuffer() local
76 if (pCO) in GetSPSBuffer()
78 if (pCO->SPSBuffer && pCO->SPSBufSize!=0) in GetSPSBuffer()
80 *ppSH = pCO->SPSBuffer; in GetSPSBuffer()
81 *pLen = pCO->SPSBufSize; in GetSPSBuffer()
/dports/net-mgmt/librenms/librenms-21.5.1/includes/definitions/
H A Dpcoweb.yaml13 sysDescr: 'pCO Gateway'
/dports/math/dune-uggrid/dune-uggrid-bc2d1229420367563410ce9e519f5ff82b45266f/dune/uggrid/parallel/ddd/xfer/
H A Dcmdmsg.cc132 DDD_PROC pCO = co->dest; in PrepareCmdMsgs() local
138 while (cpl!=NULL && CPL_PROC(cpl)!=pCO) in PrepareCmdMsgs()
/dports/editors/abiword/abiword-3.0.5/src/text/fmt/xp/
H A Dfp_ContainerObject.cpp319 void fp_Container::setContainer(fp_Container * pCO) in setContainer() argument
321 UT_ASSERT(pCO != this); in setContainer()
322 m_pContainer = pCO; in setContainer()
323 if(pCO != NULL) in setContainer()
325 m_FillType.setParent(&pCO->getFillType()); in setContainer()

12