Home
last modified time | relevance | path

Searched refs:sortorder (Results 1 – 2 of 2) sorted by relevance

/titanic_41/usr/src/cmd/infocmp/
H A Dinfocmp.c133 sortorder = none; /* sort the fields for printing */ variable
249 switch ((int) sortorder) { in boolcompare()
269 switch ((int) sortorder) { in numcompare()
290 switch ((int) sortorder) { in strcompare()
308 if (sortorder != by_database) { in sortnames()
964 sortorder = by_database; in main()
966 sortorder = by_terminfo; in main()
968 sortorder = by_longnames; in main()
970 sortorder = by_cap; in main()
1060 if (sortorder == none) in main()
[all …]
/titanic_41/usr/src/lib/libsqlite/src/
H A Dparse.y193 ccons ::= PRIMARY KEY sortorder onconf(R). {sqliteAddPrimaryKey(pParse,0,R);} in onconf()
442 sortlist(A) ::= sortlist(X) COMMA sortitem(Y) collate(C) sortorder(Z). {
446 sortlist(A) ::= sortitem(Y) collate(C) sortorder(Z). {
452 %type sortorder {int}
455 sortorder(A) ::= ASC. {A = SQLITE_SO_ASC;}
456 sortorder(A) ::= DESC. {A = SQLITE_SO_DESC;}
457 sortorder(A) ::= . {A = SQLITE_SO_ASC;}
756 idxitem(A) ::= nm(X) sortorder. {A = X;}