| /netbsd-src/lib/libc/citrus/modules/ |
| H A D | citrus_hz.c | 89 escape_t *escape; member 100 #define GL(escape) ((escape)->left) argument 101 #define GR(escape) ((escape)->right) argument 102 #define SET(escape) ((escape)->set) argument 103 #define ESC(escape) ((escape)->ch) argument 104 #define INIT(escape) (TAILQ_FIRST(SET(escape))) argument 109 escape_t *escape; in find_escape() local 113 TAILQ_FOREACH(escape, set, entry) { in find_escape() 114 if (ESC(escape) == ch) in find_escape() 118 return escape; in find_escape() [all …]
|
| /netbsd-src/external/bsd/openpam/dist/lib/libpam/ |
| H A D | openpam_readword.c | 61 int ch, escape, quote; in openpam_readword() local 67 escape = quote = 0; in openpam_readword() 71 if (!escape) in openpam_readword() 75 escape = 0; in openpam_readword() 76 } else if (escape) { in openpam_readword() 86 escape = 1; in openpam_readword() 99 while ((ch = fgetc(f)) != EOF && (!is_ws(ch) || quote || escape)) { in openpam_readword() 100 if (ch == '\\' && !escape && quote != '\'') { in openpam_readword() 102 escape = ch; in openpam_readword() 103 } else if ((ch == '\'' || ch == '"') && !quote && !escape) { in openpam_readword() [all …]
|
| /netbsd-src/sys/arch/x68k/dev/ |
| H A D | ite.c | 1218 if (ip->escape == 0) in iteputchar() 1226 if (ip->escape == 0) in iteputchar() 1238 if ((c >= 0x20 && ip->escape != 0) || ip->escape == DCS) { in iteputchar() 1240 if (c >= 0x20 && ip->escape != 0) { in iteputchar() 1242 switch (ip->escape) { in iteputchar() 1253 ip->escape = 0; in iteputchar() 1263 ip->escape = 0; in iteputchar() 1269 ip->escape = 0; in iteputchar() 1275 ip->escape in iteputchar() [all...] |
| /netbsd-src/sys/arch/amiga/dev/ |
| H A D | ite.c | 1345 if (ip->escape) { in iteputchar() 1346 switch (ip->escape) { in iteputchar() 1355 ip->escape = 0; in iteputchar() 1363 ip->escape = 0; in iteputchar() 1367 ip->escape = 0; in iteputchar() 1371 ip->escape = 0; in iteputchar() 1375 ip->escape = 0; in iteputchar() 1379 ip->escape = 0; in iteputchar() 1383 ip->escape = 0; in iteputchar() 1387 ip->escape = 0; in iteputchar() [all …]
|
| /netbsd-src/sys/arch/atari/dev/ |
| H A D | ite.c | 1383 if (sc->escape) in iteputchar() 1385 switch (sc->escape) in iteputchar() 1394 sc->escape = 0; in iteputchar() 1399 sc->escape = 0; in iteputchar() 1404 sc->escape = 0; in iteputchar() 1409 sc->escape = 0; in iteputchar() 1414 sc->escape = 0; in iteputchar() 1419 sc->escape = 0; in iteputchar() 1424 sc->escape = 0; in iteputchar() 1429 sc->escape = 0; in iteputchar() [all …]
|
| /netbsd-src/external/bsd/openldap/dist/libraries/libldap/ |
| H A D | filter.c | 157 int balance, escape; in find_right_paren() local 160 escape = 0; in find_right_paren() 162 if ( !escape ) { in find_right_paren() 170 escape = ( *s == '\\' && !escape ); in find_right_paren() 335 int parens, balance, escape; in ldap_pvt_put_filter() local 434 escape = 0; in ldap_pvt_put_filter() 438 if ( escape == 0 ) { in ldap_pvt_put_filter() 446 if ( *next == '\\' && ! escape ) { in ldap_pvt_put_filter() 447 escape = 1; in ldap_pvt_put_filter() 449 escape = 0; in ldap_pvt_put_filter() [all …]
|
| /netbsd-src/sys/arch/x68k/x68k/ |
| H A D | kgdb_stub.c | 134 int escape, len; in kgdb_recv() local 138 csum = len = escape = 0; in kgdb_recv() 145 escape = 1; in kgdb_recv() 149 if (escape) in kgdb_recv() 154 if (escape) in kgdb_recv() 159 if (escape) in kgdb_recv() 168 csum = len = escape = 0; in kgdb_recv() 181 escape = 0; in kgdb_recv() 190 escape = 0; in kgdb_recv()
|
| /netbsd-src/external/bsd/openldap/dist/contrib/ldapc++/src/ |
| H A D | LDAPUrl.cpp | 426 bool escape=false; in percentEncode() local 431 escape = true; in percentEncode() 435 escape = true; in percentEncode() 437 escape = false; in percentEncode() 443 escape = true; in percentEncode() 445 escape = false; in percentEncode() 467 escape = false; in percentEncode() 471 escape = false; in percentEncode() 473 escape = true; in percentEncode() 477 if ( escape ) { in percentEncode()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
| H A D | SourceCoverageViewHTML.cpp | 26 std::string escape(StringRef Str, const CoverageViewOptions &Opts) { in escape() function 270 << escape(PathToStyle, Opts) << "'>"; in emitPrelude() 327 std::string LinkText = escape(LinkTextStr, Opts); in buildLinkToFile() 329 escape(getOutputPath(SF, "html", /*InToplevel=*/false), Opts); in buildLinkToFile() 417 OSRef << tag(ProjectTitleTag, escape(Opts.ProjectTitle, Opts)); in createIndexFile() 420 OSRef << tag(CreatedTimeTag, escape(Opts.CreatedTimeStr, Opts)); in createIndexFile() 462 OSRef << tag("h5", escape(Opts.getLLVMVersionString(), Opts)); in createIndexFile() 477 OS << BeginSourceNameDiv << tag("pre", escape(getSourceName(), getOptions())) in renderSourceName() 530 Snippets[I] = escape(Snippets[I], getOptions()); in renderLine() 732 escape("Unexecuted instantiation: " + ISV.FunctionName.str(), in renderInstantiationView() [all …]
|
| /netbsd-src/external/bsd/nvi/docs/internals/ |
| H A D | quoting | 5 There are four escape characters in historic ex/vi: 25 The set of characters that users might want to escape are as follows. 29 escape (^[) 36 Historic practice was that ^V was the only way to escape any 39 don't see any strong reason to make it possible to escape 45 nvi, if you escape either character, autoindent erasure is 70 ex and vi are that it was possible to escape a <newline> in 78 arguments. Backslash will generally escape any following 83 cases where it's impossible to escape a character, generally 118 ^V to escape those characters. The exceptions are starred in the [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/ |
| H A D | report.py | 464 return escape('bt_' + smash('bug_category') + '_' + smash('bug_type')) 501 encode_value(bug, 'bug_file', lambda x: escape(chop(prefix, x))) 502 encode_value(bug, 'bug_category', escape) 503 encode_value(bug, 'bug_type', escape) 504 encode_value(bug, 'report_file', lambda x: escape(chop(output_dir, x))) 514 encode_value(crash, 'source', lambda x: escape(chop(prefix, x))) 515 encode_value(crash, 'problem', escape) 516 encode_value(crash, 'file', lambda x: escape(chop(output_dir, x))) 517 encode_value(crash, 'info', lambda x: escape(chop(output_dir, x))) 518 encode_value(crash, 'stderr', lambda x: escape(chop(output_dir, x))) [all …]
|
| /netbsd-src/external/gpl2/gettext/dist/gettext-runtime/po/ |
| H A D | el.po | 235 " -e enable expansion of some escape sequences\n" 293 " -e enable expansion of some escape sequences\n" 461 #~ " -e, --no-escape do not use C escapes in output (default)\n" 462 #~ " -E, --escape use C escapes in output, no extended chars\n" 483 #~ " -e, --no-escape ������� ������ ������� �������� ��� C ���� " 486 #~ " -E, --escape ����� ������� �������� ��� C ���� �����,\n" 598 #~ " -e, --no-escape do not use C escapes in output " 600 #~ " -E, --escape use C escapes in output, no extended " 623 #~ " -e, --no-escape ������� ������ ������� �������� ��� C ���� " 626 #~ " -E, --escape ����� ������� �������� ��� C ���� �����,\n" [all …]
|
| H A D | nn.po | 208 " -e enable expansion of some escape sequences\n" 218 " -e sl� p� ekspandering av nokre escape-sekvensar\n" 264 " -e enable expansion of some escape sequences\n" 274 " -e sl� p� ekspandering av nokre escape-sekvensar\n" 406 #~ " -e, --no-escape do not use C escapes in output (default)\n" 407 #~ " -E, --escape use C escapes in output, no extended chars\n" 425 #~ " -e, --no-escape ikkje bruk C-escapekoder i utdata (forvalgt)\n" 426 #~ " -E, --escape bruk C-escapekoder i utdata, ingen utvida " 442 #~ " -e, --no-escape do not use C escapes in output " 444 #~ " -E, --escape use C escapes in output, no extended " [all …]
|
| H A D | gl.po | 218 " -e enable expansion of some escape sequences\n" 228 " -e permiti-la expansi�n dalgunhas secuencias de escape\n" 273 " -e enable expansion of some escape sequences\n" 283 " -e permiti-la expansi�n dalgunhas secuencias de escape\n" 410 #~ " -e, --no-escape do not use C escapes in output (default)\n" 411 #~ " -E, --escape use C escapes in output, no extended chars\n" 435 #~ " -e, --no-escape non usar secuencias de escape de C na " 438 #~ " -E, --escape usar secuencias de escape de C na sa�da, " 534 #~ " -e, --no-escape do not use C escapes in output " 536 #~ " -E, --escape use C escapes in output, no extended " [all …]
|
| H A D | cs.po | 250 " -e enable expansion of some escape sequences\n" 260 " -e umo�n� expanzi n�kter�ch escape sekvenc�\n" 309 " -e enable expansion of some escape sequences\n" 319 " -e umo�n� expanzi n�kter�ch escape sekvenc�\n" 470 #~ " -e, --no-escape do not use C escapes in output (default)\n" 471 #~ " -E, --escape use C escapes in output, no extended chars\n" 496 #~ " -e, --no-escape zak�e C escape sekvence ve v�stupu " 498 #~ " -E, --escape pou�ije C escape sekvence ve v�stupu, bez\n" 593 #~ " -e, --no-escape do not use C escapes in output " 595 #~ " -E, --escape use C escapes in output, no extended " [all …]
|
| H A D | no.po | 215 " -e enable expansion of some escape sequences\n" 225 " -e sl� p� ekspandering av noen escape-sekvenser\n" 271 " -e enable expansion of some escape sequences\n" 281 " -e sl� p� ekspandering av noen escape-sekvenser\n" 405 #~ " -e, --no-escape do not use C escapes in output (default)\n" 406 #~ " -E, --escape use C escapes in output, no extended chars\n" 427 #~ " -e, --no-escape ikke bruke C-escapekoder i utdata " 429 #~ " -E, --escape bruk C-escaper i utdata, ingen utvidede " 518 #~ " -e, --no-escape do not use C escapes in output " 520 #~ " -E, --escape use C escapes in output, no extended " [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/diag-build/ |
| H A D | diag-build.sh | 90 escape () { function 94 escCC=$(escape $CC) 95 escCXX=$(escape $CXX)
|
| /netbsd-src/external/bsd/less/dist/ |
| H A D | lessecho.man | 13 put. But any metacharacter in the output is preceded by an "escape" 19 … [1m-e[4m[22mx[24m Specifies "[4mx[24m", rather than backslash, to be the escape char for 20 metachars. If [4mx[24m is "-", no escape char is used and arguments 37 … [1m-f[4m[22mn[24m Specifies "[4mn[24m" to be the escape char for metachars, as an inte‐
|
| /netbsd-src/external/bsd/flex/dist/tests/ |
| H A D | Makefile.am | 407 $(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape -o $@ $< 413 $(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape --reentrant -o $@ $< 422 …$(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape -o $@ --tables-verify --tables-file=$(basename $@).… 431 $(AM_V_LEX)$(FLEX) -o $@ --unsafe-no-m4-sect3-escape --tables-file=$(basename $@).tables $< 465 $(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape -P $(subst -,_,$(basename $(*F))) $* -o $@ $< 471 …$(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape -P $(subst -,_,$(basename $(*F))) --reentrant $* -… 480 …$(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape -P $(subst -,_,$(basename $(*F))) --tables-file="ta… 486 …$(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape -P $(subst -,_,$(basename $(*F))) -R --tables-file=… 495 …$(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape -P $(subst -,_,$(basename $(*F))) --tables-file="ta… 504 …$(AM_V_LEX)$(FLEX) --unsafe-no-m4-sect3-escape -P $(subst -,_,$(basename $(*F))) -R --tables-file=…
|
| /netbsd-src/usr.bin/dc/ |
| H A D | inout.c | 239 bool escape; in read_string() local 241 escape = false; in read_string() 248 if (!escape) { in read_string() 256 if (ch == '\\' && !escape) in read_string() 257 escape = true; in read_string() 259 escape = false; in read_string()
|
| /netbsd-src/external/gpl2/dtc/dist/tests/ |
| H A D | escapes.dts | 5 escape-str = "nastystring: \a\b\t\n\v\f\r\\\""; 6 escape-str-2 = "\xde\xad\xbe\xef";
|
| /netbsd-src/external/gpl3/gcc.old/dist/gcc/config/rx/ |
| H A D | linux.h | 207 int escape; \ 209 switch (escape = ESCAPES[ch]) \ 219 putc (escape, (FILE)); \
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/config/rx/ |
| H A D | linux.h | 207 int escape; \ 209 switch (escape = ESCAPES[ch]) \ 219 putc (escape, (FILE)); \
|
| /netbsd-src/sys/external/bsd/drm2/dist/drm/vmwgfx/ |
| H A D | vmwgfx_overlay.c | 75 struct vmw_escape_header escape; member 90 fill_escape(&cmd->escape, sizeof(cmd->flush)); in fill_flush() 113 struct vmw_escape_header escape; in vmw_overlay_send_put() member 141 fill_escape(&cmds->escape, sizeof(*items) * (num_items + 1)); in vmw_overlay_send_put() 195 struct vmw_escape_header escape; in vmw_overlay_send_stop() member 214 fill_escape(&cmds->escape, sizeof(cmds->body)); in vmw_overlay_send_stop()
|
| /netbsd-src/external/bsd/kyua-cli/dist/utils/format/ |
| H A D | formatter_test.cpp | 127 ATF_TEST_CASE_WITHOUT_HEAD(escape); 128 ATF_TEST_CASE_BODY(escape) in ATF_TEST_CASE_BODY() argument 255 ATF_ADD_TEST_CASE(tcs, escape); in ATF_INIT_TEST_CASES()
|