Lines Matching refs:pName1

91369 SQLITE_PRIVATE void sqlite3Analyze(Parse *pParse, Token *pName1, Token *pName2){
91386 assert( pName2!=0 || pName1==0 );
91387 if( pName1==0 ){
91395 iDb = sqlite3FindDb(db, pName1);
91399 z = sqlite3NameFromToken(db, pName1);
91411 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pTableName);
93515 ** pName1 and pName2. If the table name was fully qualified, for example:
93519 ** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if
93524 ** Then pName1 is set to "yyy" and pName2 is "".
93526 ** This routine sets the *ppUnqual pointer to point at the token (pName1 or
93532 Token *pName1, /* The "xxx" in the name "xxx.yyy" or "xxx" */
93545 iDb = sqlite3FindDb(db, pName1);
93547 sqlite3ErrorMsg(pParse, "unknown database %T", pName1);
93553 *pUnqual = pName1;
93614 Token *pName1, /* First part of the name of the table or view */
93629 ** pName1 and pName2. If the table name was fully qualified, for example:
93633 ** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if
93638 ** Then pName1 is set to "yyy" and pName2 is "".
93640 ** The call below sets the pName pointer to point at the token (pName1 or
93645 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName);
94858 Token *pName1, /* The token that holds the name of the view */
94878 sqlite3StartTable(pParse, pName1, pName2, isTemp, 1, 0, noErr);
94881 sqlite3TwoPartName(pParse, pName1, pName2, &pName);
95648 ** Create a new index for an SQL table. pName1.pName2 is the name of the index
95665 Token *pName1, /* First part of index name. May be NULL */
95709 assert( pName1 && pName2 );
95710 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName);
97034 SQLITE_PRIVATE void sqlite3Reindex(Parse *pParse, Token *pName1, Token *pName2){
97050 if( pName1==0 ){
97055 assert( pName1->z );
97056 zColl = sqlite3NameFromToken(pParse->db, pName1);
97066 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pObjName);
114541 Token *pName1, /* The name of the trigger */
114560 assert( pName1!=0 ); /* pName1->z might be NULL, but not pName1 itself */
114571 pName = pName1;
114574 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName);
117076 Token *pName1, /* Name of new table, or database name */
117085 sqlite3StartTable(pParse, pName1, pName2, 0, 0, 1, ifNotExists);
117100 || (pParse->sNameToken.z==pName1->z && pName2->z==0)