Lines Matching defs:pName1

65434 SQLITE_PRIVATE void sqlite3Analyze(Parse *pParse, Token *pName1, Token *pName2){
65449 assert( pName2!=0 || pName1==0 );
65450 if( pName1==0 ){
65458 iDb = sqlite3FindDb(db, pName1);
65462 z = sqlite3NameFromToken(db, pName1);
65473 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pTableName);
67119 ** pName1 and pName2. If the table name was fully qualified, for example:
67123 ** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if
67128 ** Then pName1 is set to "yyy" and pName2 is "".
67130 ** This routine sets the *ppUnqual pointer to point at the token (pName1 or
67136 Token *pName1, /* The "xxx" in the name "xxx.yyy" or "xxx" */
67150 iDb = sqlite3FindDb(db, pName1);
67152 sqlite3ErrorMsg(pParse, "unknown database %T", pName1);
67159 *pUnqual = pName1;
67199 Token *pName1, /* First part of the name of the table or view */
67214 ** pName1 and pName2. If the table name was fully qualified, for example:
67218 ** Then pName1 is set to "xxx" and pName2 "yyy". On the other hand if
67223 ** Then pName1 is set to "yyy" and pName2 is "".
67225 ** The call below sets the pName pointer to point at the token (pName1 or
67230 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName);
68133 Token *pName1, /* The token that holds the name of the view */
68153 sqlite3StartTable(pParse, pName1, pName2, isTemp, 1, 0, noErr);
68161 sqlite3TwoPartName(pParse, pName1, pName2, &pName);
68836 ** Create a new index for an SQL table. pName1.pName2 is the name of the index
68853 Token *pName1, /* First part of index name. May be NULL */
68899 assert( pName1 && pName2 );
68900 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName);
70097 SQLITE_PRIVATE void sqlite3Reindex(Parse *pParse, Token *pName1, Token *pName2){
70113 if( pName1==0 ){
70118 assert( pName1->z );
70119 zColl = sqlite3NameFromToken(pParse->db, pName1);
70129 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pObjName);
83805 Token *pName1, /* The name of the trigger */
83824 assert( pName1!=0 ); /* pName1->z might be NULL, but not pName1 itself */
83835 pName = pName1;
83838 iDb = sqlite3TwoPartName(pParse, pName1, pName2, &pName);
86080 Token *pName1, /* Name of new table, or database name */
86088 sqlite3StartTable(pParse, pName1, pName2, 0, 0, 1, 0);
86102 pParse->sNameToken.n = (int)(&pModuleName->z[pModuleName->n] - pName1->z);