Home
last modified time | relevance | path

Searched refs:cltext (Results 1 – 6 of 6) sorted by relevance

/dports/security/pkcs11-tools/pkcs11-tools-2.5.0/lib/
H A Dattribctx_lexer.l40 <STR>[^\"]+ { cllval.val_str.val = strdup(cltext); cllval.val_str.len = strlen(cltext); }
108 CKM_[a-z0-9_]+ { cllval.val_mech = pkcs11_get_mechanism_type_from_name(cltext);
110 clerror(NULL, "Unknown mechanism identifier <%s>", cltext);
116 0x[[:xdigit:]]+ { if(strlen(cltext)%2==1) {
117 clerror(NULL, "Invalid hexadecimal string <%s>: odd length", cltext);
120 cllval.val_str.len = (strlen(cltext)>>1) - 1; /* we skip the '0x' prefix */
126 clerror(NULL,"Memory allocation error during lexical analysis of <%s>", cltext);
136 sscanf( &cltext[ (i<<1) + 2 ], "%2x", &tmp);
144 [[:digit:]]{8} { memcpy(cllval.val_date.as_buffer, cltext, 8); return TOK_DATE; }
153 . { return cltext[0]; } /* catch-all http://stackoverflow.com/questions/18837828/h…
H A Dattribctx_lexer.c22 #define yytext cltext
211 if ( cltext[yyl] == '\n' )\
393 extern char *cltext;
394 #define yytext_ptr cltext
1183 char *cltext; variable
1386 (cltext[clleng - 1] == '\n'); \
1473 if ( cltext[yyl] == '\n' )
1504 { cllval.val_str.val = strdup(cltext); cllval.val_str.len = strlen(cltext); }
1817 { if(strlen(cltext)%2==1) {
2714 cltext[clleng] = (yy_hold_char); \
[all …]
H A Dattribctx_lexer.h220 extern char *cltext;
221 #define yytext_ptr cltext
/dports/devel/upp/upp/bazaar/Styler/
H A DStyler.cpp209 cltext <<= SColorText(); in Updated()
235 SColorText_Write(~cltext); in OnColorAction()
267 cltext <<= THISBACK(OnColorAction); in ChamStyleCtrl()
H A DStyler.lay29 ITEM(ColorPusher, cltext, LeftPosZ(124, 20).TopPosZ(144, 20))
/dports/games/SRB2/SRB2-SRB2_release_2.2.9/src/
H A Dd_clisrv.c1045 const char *cltext; in CL_DrawConnectionStatus() local
1060 cltext = M_GetText("Downloading game state..."); in CL_DrawConnectionStatus()
1076 cltext = M_GetText("Waiting to download game state..."); in CL_DrawConnectionStatus()
1080 cltext = M_GetText("Requesting to join..."); in CL_DrawConnectionStatus()
1083 cltext = M_GetText("Connecting to server..."); in CL_DrawConnectionStatus()
1086 V_DrawCenteredString(BASEVIDWIDTH/2, BASEVIDHEIGHT-16-24, V_YELLOWMAP, cltext); in CL_DrawConnectionStatus()