代码搜索结果
找到约 10,000 项符合
L 的代码
language.l31
//chinese string
#define qtn_app_caption_string "倒计时"
#define qtn_app_short_caption_string "倒计时"
#define str_look "查看"
#define str_add "添加"
#define str_modify
listboxapp.l01
/**
*
* @brief Resource file containing English strings for HelloWorldLoc application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// APPLICATION INFORMATION
#define ELangu
dynamiclist.l01
/**
*
* @brief Resource file containing English strings for DynamicList application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// APPLICATION INFORMATION
#define ELanguage
language.l01
//english string
#define qtn_app_caption_string "ClassSchedule"
#define qtn_app_short_caption_string "ClassSchedule"
#define str_detail "Detail"
#define str_search_for
language.l31
#define qtn_app_caption_string "课程表"
#define qtn_app_short_caption_string "课程表"
#define str_detail "详细信息"
#define str_search_for "查询"
#define str_modify "
bluetoothchat.l01
/**
*
* @brief Resource file containing English strings for BluetoothChat application
*
* Copyright (c) EMCC Software Ltd 2003
* @version 1.0
*/
// APPLICATION INFORMATION
#define ELanguage
wc5.l
/* Oops; slight change from wc3.l introduces backtracking */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* cc +
wc4.l
/* Fastest version of wc: add rules to pick up newlines, too */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
words {word}{ws}+
%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* +
wc1.l
/* First cut at a flex-based "wc" tool. */
ws [ \t]
nonws [^ \t\n]
%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;
{nonws}+ cc += yyleng; ++wc;
{ws}+ cc += yyleng;
\n ++lc; ++cc;
wc2.l
/* Somewhat faster "wc" tool: match more text with each rule */
ws [ \t]
nonws [^ \t\n]
word {ws}*{nonws}+
%option main noyywrap
%%
int cc = 0, wc = 0, lc = 0;
{word}{ws}* cc += yyleng; ++wc;