Home
last modified time | relevance | path

Searched refs:SUBSTR (Results 1 – 11 of 11) sorted by relevance

/illumos-gate/usr/src/cmd/oawk/
H A Dawk.g.y51 %left NUMBER VAR ARRAY FNCN SUBSTR LSUBSTR INDEX
172 | SUBSTR '(' expr ',' expr ',' expr ')'
173 { $$ = op3(SUBSTR, $3, $5, $7); }
174 | SUBSTR '(' expr ',' expr ')'
175 { $$ = op3(SUBSTR, $3, $5, 0); }
H A Dmakeprctab.c51 { SUBSTR, "substr", "substr"},
H A Dawk.lx.l137 <A>substr RETURN(SUBSTR);
/illumos-gate/usr/src/ucbcmd/expr/
H A Dexpr.y40 %token A_STRING SUBSTR LENGTH INDEX NOARG MATCH
50 %left SUBSTR
79 | SUBSTR expr expr expr = { $$ = substr($2, $3, $4); }
115 MATCH, SUBSTR, LENGTH, INDEX };
/illumos-gate/usr/src/cmd/expr/
H A Dexpr.c57 #define SUBSTR 275 macro
98 SUBSTR, LENGTH, INDEX
603 case SUBSTR: in expres()
620 case SUBSTR: in expres()
/illumos-gate/usr/src/cmd/awk/
H A Dawk.g.y117 %left PRINT PRINTF RETURN SPLIT SPRINTF STRING SUB SUBSTR
445 | SUBSTR '(' pattern comma pattern comma pattern ')'
446 { $$ = op3(SUBSTR, $3, $5, $7); }
447 | SUBSTR '(' pattern comma pattern ')'
448 { $$ = op3(SUBSTR, $3, $5, NIL); }
H A Dmaketab.c83 { SUBSTR, "substr", "substr" },
H A Dlex.c85 { "substr", SUBSTR, SUBSTR },
/illumos-gate/usr/src/cmd/ldap/ns_ldap/
H A Didsconfig.sh4189 …ri-supported.' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
4190 …taparameters.' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
4191 …y than a URI.' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
4193 …uilding XYZ".' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
4196 …is attribute.' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
4197 …requirements.' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
4201 …of Languages.' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
4211 …"na-letter" (standard keyword from ISO 10175).' EQUALITY caseIgnoreMatch SUBSTR caseIgnoreSubstrin…
4217 …phone number.' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
4218 …phone number.' EQUALITY caseIgnoreMatch ORDERING caseIgnoreOrderingMatch SUBSTR caseIgnoreSubstrin…
[all …]
/illumos-gate/usr/src/lib/krb5/plugins/kdb/ldap/libkdb_ldap/
H A Dkerberos.ldif41 SUBSTR caseExactSubstringsMatch
/illumos-gate/usr/src/lib/libsqlite/src/
H A Dsqlite.h.in51 ** operators and for the LENGTH() and SUBSTR() functions.