HomeSort by relevance Sort by last modified time
    Searched refs:pIdx (Results 1 - 19 of 19) sorted by null

  /frameworks/compile/mclinker/include/mcld/LD/
Diagnostic.h 37 DiagnosticEngine::ArgumentKind getArgKind(unsigned int pIdx) const {
38 assert(pIdx < getNumArgs() && "Argument index is out of range!");
39 return (DiagnosticEngine::ArgumentKind)m_Engine.state().ArgumentKinds[pIdx];
42 const std::string &getArgStdStr(unsigned int pIdx) const {
43 assert(getArgKind(pIdx) == DiagnosticEngine::ak_std_string &&
45 return m_Engine.state().ArgumentStrs[pIdx];
48 const char* getArgCStr(unsigned int pIdx) const {
49 assert(getArgKind(pIdx) == DiagnosticEngine::ak_c_string &&
51 return reinterpret_cast<const char*>(m_Engine.state().ArgumentVals[pIdx]);
54 int getArgSInt(unsigned int pIdx) const
    [all...]
LDContext.h 54 const LDSection* getSection(unsigned int pIdx) const;
55 LDSection* getSection(unsigned int pIdx);
66 const LDSymbol* getSymbol(unsigned int pIdx) const;
67 LDSymbol* getSymbol(unsigned int pIdx);
  /frameworks/compile/mclinker/lib/LD/
LDContext.cpp 28 LDSection* LDContext::getSection(unsigned int pIdx)
30 if (pIdx >= m_SectionTable.size())
32 return m_SectionTable[pIdx];
35 const LDSection* LDContext::getSection(unsigned int pIdx) const
37 if (pIdx >= m_SectionTable.size())
39 return m_SectionTable[pIdx];
72 LDSymbol* LDContext::getSymbol(unsigned int pIdx)
74 if (pIdx >= m_SymTab.size())
76 return m_SymTab[pIdx];
79 const LDSymbol* LDContext::getSymbol(unsigned int pIdx) cons
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
analyze.c 112 Index *pIdx; /* An index to being analyzed */
165 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
169 if( pOnlyIdx && pOnlyIdx!=pIdx ) continue;
170 nCol = pIdx->nColumn;
171 pKey = sqlite3IndexKeyinfo(pParse, pIdx);
177 assert( iDb==sqlite3SchemaToIndex(db, pIdx->pSchema) );
178 sqlite3VdbeAddOp4(v, OP_OpenRead, iIdxCur, pIdx->tnum, iDb
    [all...]
delete.c 234 Index *pIdx; /* For looping over indices of the table */
301 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
357 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
358 assert( pIdx->pSchema==pTab->pSchema )
    [all...]
update.c 100 Index *pIdx; /* For looping over indices */
178 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
239 for(nIdx=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, nIdx++){}
244 for(j=0, pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext, j++)
    [all...]
fkey.c 188 Index *pIdx = 0; /* Value to return via *ppIdx */
225 for(pIdx=pParent->pIndex; pIdx; pIdx=pIdx->pNext){
226 if( pIdx->nColumn==nCol && pIdx->onError!=OE_None ){
227 /* pIdx is a UNIQUE index (or a PRIMARY KEY) and has the right number
235 if( pIdx->autoIndex==2 ){
249 int iCol = pIdx->aiColumn[i]; /* Index of column in parent tbl *
    [all...]
insert.c 39 ** pIdx. A column affinity string has one character for each column in
57 const char *sqlite3IndexAffinityStr(Vdbe *v, Index *pIdx){
58 if( !pIdx->zColAff ){
68 Table *pTab = pIdx->pTable;
70 pIdx->zColAff = (char *)sqlite3DbMallocRaw(0, pIdx->nColumn+2);
71 if( !pIdx->zColAff ){
75 for(n=0; n<pIdx->nColumn; n++){
76 pIdx->zColAff[n] = pTab->aCol[pIdx->aiColumn[n]].affinity
    [all...]
where.c 572 Index *pIdx /* Must be compatible with this index, if not NULL */
584 if( pIdx && pTerm->eOperator!=WO_ISNULL ){
591 idxaff = pIdx->pTable->aCol[iColumn].affinity;
602 for(j=0; pIdx->aiColumn[j]!=iColumn; j++){
603 if( NEVER(j>=pIdx->nColumn) ) return 0;
605 if( pColl && sqlite3StrICmp(pColl->zName, pIdx->azColl[j]) ) continue;
    [all...]
pragma.c 902 Index *pIdx;
905 pIdx = sqlite3FindIndex(db, zRight, zDb);
906 if( pIdx ){
908 pTab = pIdx->pTable;
914 for(i=0; i<pIdx->nColumn; i++){
915 int cnum = pIdx->aiColumn[i];
926 Index *pIdx;
932 pIdx = pTab->pIndex;
933 if( pIdx ){
940 while(pIdx){
    [all...]
vdbeblob.c 218 Index *pIdx;
236 for(pIdx=pTab->pIndex; pIdx; pIdx=pIdx->pNext){
238 for(j=0; j<pIdx->nColumn; j++){
239 if( pIdx->aiColumn[j]==iCol ){
build.c     [all...]
select.c     [all...]
expr.c     [all...]
btree.c 157 Index *pIdx = (Index *)sqliteHashData(p);
158 if( pIdx->tnum==(int)iRoot ){
159 iTab = pIdx->pTable->tnum;
    [all...]
sqliteInt.h     [all...]
  /external/chromium_org/third_party/sqlite/amalgamation/
sqlite3.c     [all...]
  /external/sqlite/dist/orig/
sqlite3.c     [all...]
  /external/sqlite/dist/
sqlite3.c     [all...]

Completed in 546 milliseconds