Searched defs:pNode (Results 1 - 16 of 16) sorted by path

/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c22843 os2ShmNode *pNode, /* Apply locks to this open shared-memory segment */
22853 assert( sqlite3_mutex_held(pNode->mutex) || pNode->nRef==0 );
22866 rc = DosSetFileLocks(pNode->hLockFile,
22871 rc = DosSetFileLocks(pNode->hLockFile,
22877 pNode->hLockFile,
22882 ERR_TRACE(rc, ("os2ShmSystemLock: %d %s\n", rc, pNode->shmBaseName))
22895 os2ShmNode *pNode; local
22919 for( pNode = os2ShmNodeList;
22920 pNode
22842 os2ShmSystemLock( os2ShmNode *pNode, int lockType, int ofst, int nByte ) argument
22999 os2ShmNode *pNode; local
23087 os2ShmNode *pNode; local
23180 os2ShmNode *pNode = pLink->pShmNode; local
124480 RtreeNode *pNode; /* Node cursor is currently pointing at */ member in struct:RtreeCursor
124687 nodeHashInsert(Rtree *pRtree, RtreeNode *pNode) argument
124698 nodeHashDelete(Rtree *pRtree, RtreeNode *pNode) argument
124715 RtreeNode *pNode; local
124740 RtreeNode *pNode; local
124820 nodeOverwriteCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iCell ) argument
124838 nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell) argument
124854 nodeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell ) argument
124879 nodeWrite(Rtree *pRtree, RtreeNode *pNode) argument
124905 nodeRelease(Rtree *pRtree, RtreeNode *pNode) argument
124932 nodeGetRowid( Rtree *pRtree, RtreeNode *pNode, int iCell ) argument
124944 nodeGetCoord( Rtree *pRtree, RtreeNode *pNode, int iCell, int iCoord, RtreeCoord *pCoord ) argument
124958 nodeGetCell( Rtree *pRtree, RtreeNode *pNode, int iCell, RtreeCell *pCell ) argument
125319 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
125340 nodeParentIndex(Rtree *pRtree, RtreeNode *pNode, int *piIndex) argument
125371 RtreeNode *pNode = pCsr->pNode; local
125831 RtreeNode *pNode; local
125916 AdjustTree( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell ) argument
126411 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
126430 SplitNode( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
126608 removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight) argument
126657 fixBoundingBox(Rtree *pRtree, RtreeNode *pNode) argument
126684 deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight) argument
126715 Reinsert( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
126818 rtreeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
126857 reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode) argument
[all...]
/external/chromium_org/third_party/sqlite/src/ext/rtree/
H A Drtree.c212 RtreeNode *pNode; /* Node cursor is currently pointing at */ member in struct:RtreeCursor
213 int iCell; /* Index of current cell in pNode */
265 #define NCELL(pNode) readInt16(&(pNode)->zData[2])
417 ** Add node pNode to the node hash table.
419 static void nodeHashInsert(Rtree *pRtree, RtreeNode *pNode){ argument
421 assert( pNode->pNext==0 );
422 iHash = nodeHash(pNode->iNode);
423 pNode->pNext = pRtree->aHash[iHash];
424 pRtree->aHash[iHash] = pNode;
430 nodeHashDelete(Rtree *pRtree, RtreeNode *pNode) argument
447 RtreeNode *pNode; local
472 RtreeNode *pNode; local
552 nodeOverwriteCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iCell ) argument
570 nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell) argument
586 nodeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell ) argument
611 nodeWrite(Rtree *pRtree, RtreeNode *pNode) argument
637 nodeRelease(Rtree *pRtree, RtreeNode *pNode) argument
664 nodeGetRowid( Rtree *pRtree, RtreeNode *pNode, int iCell ) argument
676 nodeGetCoord( Rtree *pRtree, RtreeNode *pNode, int iCell, int iCoord, RtreeCoord *pCoord ) argument
690 nodeGetCell( Rtree *pRtree, RtreeNode *pNode, int iCell, RtreeCell *pCell ) argument
1051 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
1072 nodeParentIndex(Rtree *pRtree, RtreeNode *pNode, int *piIndex) argument
1103 RtreeNode *pNode = pCsr->pNode; local
1563 RtreeNode *pNode; local
1648 AdjustTree( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell ) argument
2143 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
2162 SplitNode( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
2340 removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight) argument
2389 fixBoundingBox(Rtree *pRtree, RtreeNode *pNode) argument
2416 deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight) argument
2447 Reinsert( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
2550 rtreeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
2589 reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode) argument
[all...]
/external/chromium_org/third_party/sqlite/src/src/
H A Dos_os2.c831 os2ShmNode *pNode, /* Apply locks to this open shared-memory segment */
841 assert( sqlite3_mutex_held(pNode->mutex) || pNode->nRef==0 );
854 rc = DosSetFileLocks(pNode->hLockFile,
859 rc = DosSetFileLocks(pNode->hLockFile,
865 pNode->hLockFile,
870 ERR_TRACE(rc, ("os2ShmSystemLock: %d %s\n", rc, pNode->shmBaseName))
883 os2ShmNode *pNode; local
907 for( pNode = os2ShmNodeList;
908 pNode
830 os2ShmSystemLock( os2ShmNode *pNode, int lockType, int ofst, int nByte ) argument
987 os2ShmNode *pNode; local
1075 os2ShmNode *pNode; local
1168 os2ShmNode *pNode = pLink->pShmNode; local
[all...]
/external/opencv/cvaux/src/
H A Dcvlcm.cpp179 // pNode : in, given node
182 // pSite: in, original site (pNode must be the begin point of pEdge
189 CvVoronoiNode2D* pNode,
355 CvVoronoiNode2D* pNode, *pNode1; local
375 pNode = CV_VORONOIEDGE2D_BEGINNODE(pEdge,pSite);
376 if(pNode->radius > LCM->maxWidth)
385 if(_cvNodeMultyplicity(pSite, pEdge,pNode,LinkedEdges,LinkedSites) == 1)
490 CvVoronoiNode2D* pNode = CV_VORONOIEDGE2D_BEGINNODE(pEdge,pSite); local
494 int multyplicity = _cvNodeMultyplicity(pSite,pEdge,pNode,LinkedEdges,LinkedSites);
507 cvSeqPush((CvSeq*)pLCMNode->contour,&pNode
577 CvVoronoiNode2D* pNode = CV_VORONOIEDGE2D_BEGINNODE(pEdge,pSite); local
632 _cvNodeMultyplicity(CvVoronoiSite2D* pSite, CvVoronoiEdge2D* pEdge, CvVoronoiNode2D* pNode, CvVoronoiEdge2D** LinkedEdges, CvVoronoiSite2D** LinkedSites) argument
[all...]
H A Dcvlee.cpp568 pNode : in, point
575 pCvVoronoiNode pNode,
584 pNode : in, point
590 void _cvCalcEdge(pCvVoronoiNode pNode,
1012 pNode : out
1018 void _cvInitVoronoiNode(pCvVoronoiNode pNode,
1076 by point pNode on two parts
1079 pNode : in, given point
1085 pCvVoronoiNode pNode,
1091 by point pNode o
1673 pCvVoronoiNode pNode; local
3073 pCvVoronoiNode pNode = pHole->node; local
3128 pCvVoronoiNode pNode = pHole->node; local
3382 _cvCalcEdge(pCvVoronoiSite pSite, pCvVoronoiNode pNode, pCvVoronoiEdge pEdge, CvVoronoiDiagramInt* pVoronoiDiagram) argument
3395 _cvCalcEdge(pCvVoronoiNode pNode, pCvVoronoiSite pSite, pCvVoronoiEdge pEdge, CvVoronoiDiagramInt* pVoronoiDiagram) argument
4428 _cvInitVoronoiNode(pCvVoronoiNode pNode, T pPoint, float radius) argument
4517 _cvDivideRightEdge(pCvVoronoiEdge pEdge,pCvVoronoiNode pNode, CvSeq* EdgeSeq) argument
4541 _cvDivideLeftEdge(pCvVoronoiEdge pEdge,pCvVoronoiNode pNode, CvSeq* EdgeSeq) argument
[all...]
/external/pdfium/core/include/fxcrt/
H A Dfx_basic.h1116 CNode* pNode = (CNode*) rPosition; local
1117 rPosition = (FX_POSITION) pNode->pNext;
1118 return pNode->data;
1123 CNode* pNode = (CNode*) rPosition; local
1124 rPosition = (FX_POSITION) pNode->pPrev;
1125 return pNode->data;
1140 CNode* pNode = (CNode*) rPosition; local
1141 return pNode->data;
1155 CNode* pNode = (CNode*) pos; local
1156 pNode
[all...]
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_document.cpp175 int CPDF_Document::_FindPageIndex(CPDF_Dictionary* pNode, FX_DWORD& skip_count, FX_DWORD objnum, int& index, int level) argument
177 if (pNode->KeyExist(FX_BSTRC("Kids"))) {
178 CPDF_Array* pKidList = pNode->GetArray(FX_BSTRC("Kids"));
185 FX_DWORD count = pNode->GetInteger(FX_BSTRC("Count"));
207 if (pKid == pNode) {
216 if (objnum == pNode->GetObjNum()) {
H A Dfpdf_parser_parser.cpp3877 CPDF_PageNode *pNode = FX_NEW CPDF_PageNode(); local
3878 pPageNode->m_childNode.Add(pNode);
3879 pNode->m_dwPageNo = ((CPDF_Reference*)pKid)->GetRefObjNum();
3922 CPDF_PageNode *pNode = FX_NEW CPDF_PageNode(); local
3923 pPageNode->m_childNode.Add(pNode);
3924 pNode->m_dwPageNo = pKid->GetRefObjNum();
3934 CPDF_PageNode *pNode = FX_NEW CPDF_PageNode(); local
3935 pPageNode->m_childNode.Add(pNode);
3936 pNode->m_dwPageNo = ((CPDF_Reference*)pKid)->GetRefObjNum();
3961 CPDF_PageNode *pNode local
4372 CPDF_PageNode *pNode = (CPDF_PageNode*)m_childNode[i]; local
[all...]
H A Dfpdf_parser_utility.cpp414 static CPDF_Object* SearchNumberNode(CPDF_Dictionary* pNode, int num) argument
416 CPDF_Array* pLimits = pNode->GetArray("Limits");
420 CPDF_Array* pNumbers = pNode->GetArray("Nums");
434 CPDF_Array* pKids = pNode->GetArray("Kids");
/external/pdfium/core/src/fpdfdoc/
H A Ddoc_basic.cpp77 static CPDF_Object* SearchNameNode(CPDF_Dictionary* pNode, const CFX_ByteString& csName, argument
83 CPDF_Array* pLimits = pNode->GetArray(FX_BSTRC("Limits"));
96 CPDF_Array* pNames = pNode->GetArray(FX_BSTRC("Names"));
118 CPDF_Array* pKids = pNode->GetArray(FX_BSTRC("Kids"));
134 static CPDF_Object* SearchNameNode(CPDF_Dictionary* pNode, int nIndex, int& nCurIndex, argument
140 CPDF_Array* pNames = pNode->GetArray(FX_BSTRC("Names"));
154 CPDF_Array* pKids = pNode->GetArray(FX_BSTRC("Kids"));
170 static int CountNames(CPDF_Dictionary* pNode, int nLevel = 0) argument
175 CPDF_Array* pNames = pNode->GetArray(FX_BSTRC("Names"));
179 CPDF_Array* pKids = pNode
[all...]
H A Ddoc_form.cpp89 _Node *pNode = (_Node *)children.GetAt(i); local
90 CPDF_FormField* pField = pNode->GetField(fields_to_go);
111 void RemoveNode(_Node *pNode, int nLevel = 0);
129 _Node *pNode = FX_NEW _Node; local
130 if (pNode == NULL) {
133 pNode->parent = pParent;
134 pNode->short_name = short_name;
135 pNode->field_ptr = field_ptr;
136 pParent->children.Add(pNode);
137 return pNode;
139 RemoveNode(_Node *pNode, int nLevel) argument
162 _Node *pNode = (_Node *)ptr_array[i]; local
174 _Node *pNode = (_Node *)ptr_array[i]; local
187 _Node *pNode = &m_Root, *pLast = NULL; local
210 _Node *pNode = &m_Root, *pLast = NULL; local
228 _Node *pNode = &m_Root, *pLast = NULL; local
258 _Node *pNode = &m_Root, *pLast = NULL; local
761 CFieldTree::_Node *pNode = m_pFieldTree->FindNode(csFieldName); local
772 CFieldTree::_Node *pNode = m_pFieldTree->FindNode(csFieldName); local
[all...]
/external/pdfium/core/src/fxcrt/
H A Dfx_basic_list.cpp74 void CFX_PtrList::FreeNode(CFX_PtrList::CNode* pNode) argument
76 pNode->pNext = m_pNodeFree;
77 m_pNodeFree = pNode;
95 CNode* pNode = (CNode*)pNewBlock->data(); local
96 pNode += m_nBlockSize - 1;
97 for (int i = m_nBlockSize - 1; i >= 0; i--, pNode--) {
98 pNode->pNext = m_pNodeFree;
99 m_pNodeFree = pNode;
103 CFX_PtrList::CNode* pNode = m_pNodeFree; local
105 pNode
122 CNode* pNode = m_pNodeHead; local
130 CNode* pNode = (CNode*) startAfter; local
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c140481 NodeWriter *pNode = &pWriter->aNodeWriter[iLayer]; local
140570 fts3AppendToNode( Blob *pNode, Blob *pPrev, const char *zTerm, int nTerm, const char *aDoclist, int nDoclist ) argument
140720 NodeWriter *pNode = &pWriter->aNodeWriter[iRoot]; local
140761 NodeWriter *pNode = &pWriter->aNodeWriter[i]; local
140920 NodeWriter *pNode; local
141174 fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild) argument
145109 nodeHashInsert(Rtree *pRtree, RtreeNode *pNode) argument
145120 nodeHashDelete(Rtree *pRtree, RtreeNode *pNode) argument
145137 RtreeNode *pNode; local
145161 RtreeNode *pNode; local
145241 nodeOverwriteCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iCell ) argument
145259 nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell) argument
145274 nodeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell ) argument
145298 nodeWrite(Rtree *pRtree, RtreeNode *pNode) argument
145323 nodeRelease(Rtree *pRtree, RtreeNode *pNode) argument
145350 nodeGetRowid( Rtree *pRtree, RtreeNode *pNode, int iCell ) argument
145362 nodeGetCoord( Rtree *pRtree, RtreeNode *pNode, int iCell, int iCoord, RtreeCoord *pCoord ) argument
145376 nodeGetCell( Rtree *pRtree, RtreeNode *pNode, int iCell, RtreeCell *pCell ) argument
145713 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
145735 nodeParentIndex(Rtree *pRtree, RtreeNode *pNode, int *piIndex) argument
145965 RtreeNode *pNode; local
146050 RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); local
146066 RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); local
146498 RtreeNode *pNode; local
146550 AdjustTree( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell ) argument
146839 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
146858 SplitNode( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
147037 removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight) argument
147086 fixBoundingBox(Rtree *pRtree, RtreeNode *pNode) argument
147113 deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight) argument
147144 Reinsert( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
147249 rtreeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
147284 reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode) argument
[all...]
/external/sqlite/dist/
H A Dsqlite3.c140513 NodeWriter *pNode = &pWriter->aNodeWriter[iLayer]; local
140602 fts3AppendToNode( Blob *pNode, Blob *pPrev, const char *zTerm, int nTerm, const char *aDoclist, int nDoclist ) argument
140752 NodeWriter *pNode = &pWriter->aNodeWriter[iRoot]; local
140793 NodeWriter *pNode = &pWriter->aNodeWriter[i]; local
140952 NodeWriter *pNode; local
141206 fts3StartNode(Blob *pNode, int iHeight, sqlite3_int64 iChild) argument
145141 nodeHashInsert(Rtree *pRtree, RtreeNode *pNode) argument
145152 nodeHashDelete(Rtree *pRtree, RtreeNode *pNode) argument
145169 RtreeNode *pNode; local
145193 RtreeNode *pNode; local
145273 nodeOverwriteCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iCell ) argument
145291 nodeDeleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell) argument
145306 nodeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell ) argument
145330 nodeWrite(Rtree *pRtree, RtreeNode *pNode) argument
145355 nodeRelease(Rtree *pRtree, RtreeNode *pNode) argument
145382 nodeGetRowid( Rtree *pRtree, RtreeNode *pNode, int iCell ) argument
145394 nodeGetCoord( Rtree *pRtree, RtreeNode *pNode, int iCell, int iCoord, RtreeCoord *pCoord ) argument
145408 nodeGetCell( Rtree *pRtree, RtreeNode *pNode, int iCell, RtreeCell *pCell ) argument
145745 nodeRowidIndex( Rtree *pRtree, RtreeNode *pNode, i64 iRowid, int *piIndex ) argument
145767 nodeParentIndex(Rtree *pRtree, RtreeNode *pNode, int *piIndex) argument
145997 RtreeNode *pNode; local
146082 RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); local
146098 RtreeNode *pNode = rtreeNodeOfFirstSearchPoint(pCsr, &rc); local
146530 RtreeNode *pNode; local
146582 AdjustTree( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell ) argument
146871 updateMapping( Rtree *pRtree, i64 iRowid, RtreeNode *pNode, int iHeight ) argument
146890 SplitNode( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
147069 removeNode(Rtree *pRtree, RtreeNode *pNode, int iHeight) argument
147118 fixBoundingBox(Rtree *pRtree, RtreeNode *pNode) argument
147145 deleteCell(Rtree *pRtree, RtreeNode *pNode, int iCell, int iHeight) argument
147176 Reinsert( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
147281 rtreeInsertCell( Rtree *pRtree, RtreeNode *pNode, RtreeCell *pCell, int iHeight ) argument
147316 reinsertNodeContent(Rtree *pRtree, RtreeNode *pNode) argument
[all...]

Completed in 773 milliseconds