Searched refs:substr (Results 1 - 25 of 305) sorted by relevance

1234567891011>>

/macosx-10.10.1/dtrace-147/test/tst/common/funcs/
H A Dtst.substr.d.out4 if (substr("foobarbazbop", 3) ne "barbazbop") {
5 printf("perl => substr(\"foobarbazbop\", 3) = \"%s\"\n",
6 substr("foobarbazbop", 3));
7 printf(" D => substr(\"foobarbazbop\", 3) = \"%s\"\n",
12 if (substr("foobarbazbop", 300) ne "") {
13 printf("perl => substr(\"foobarbazbop\", 300) = \"%s\"\n",
14 substr("foobarbazbop", 300));
15 printf(" D => substr(\"foobarbazbop\", 300) = \"%s\"\n",
20 if (substr("foobarbazbop", -10) ne "obarbazbop") {
21 printf("perl => substr(\"foobarbazbo
[all...]
H A Dtst.index.d33 string substr;
43 command[i].substr = "barbaz";
47 command[i].substr = "foo";
51 command[i].substr = "foo";
55 command[i].substr = "barbazzy";
59 command[i].substr = "foobar";
63 command[i].substr = "foobarbaz";
67 command[i].substr = "foobar";
71 command[i].substr = "";
75 command[i].substr
[all...]
/macosx-10.10.1/zsh-61/zsh/Src/
H A Dsignames1.awk12 sigtail = substr($0, sigindex, 80)
14 signam = substr(tmp[1], 4, 20)
15 if (substr($0, sigindex-1, 1) == "_")
H A Dmakepro.awk61 line = substr(line, 1, RSTART) " " substr(line, RSTART+1)
71 line = substr(line, 1, RSTART-1) " _ (" substr(line, RSTART) ")"
73 line = substr(line, 1, RSTART+RLENGTH-2) "@!" substr(line, RSTART+RLENGTH)
75 line = substr(line, 1, RSTART-1) "@{" substr(line, RSTART+5, RLENGTH-7) "@}" substr(line, RSTART+RLENGTH)
77 line = substr(lin
[all...]
/macosx-10.10.1/zsh-61/zsh/Src/Modules/
H A Derrnames1.awk14 etail = substr($0, eindex, 80)
16 enam = substr(tmp[1], 2, 20)
H A Dcurses_keys.awk5 keytail = substr($0, keyindex, 80)
7 keynam = substr(tmp[1], 5, 30)
/macosx-10.10.1/curl-83.1.2/curl/packages/NetWare/
H A Dget_ver.awk30 copyright_string = substr($0, 28, length($0)-28)
32 version_string = substr($3, 2, length($3)-2)
/macosx-10.10.1/dtrace-147/test/tst/common/version/
H A Dtst.1.0.d40 int substr;
/macosx-10.10.1/swig-12/Lib/ruby/
H A Dstd_string.i6 AUTODOC(substr, "Return a portion of the String");
/macosx-10.10.1/postfix-255/postfix/src/postconf/
H A Dextract.awk23 int_vars["int " substr($3,2,length($3)-2) ";"] = 1
31 str_vars["char *" substr($3,2,length($3)-2) ";"] = 1
39 str_fn_vars["char *" substr($3,2,length($3)-2) ";"] = 1
48 raw_vars["char *" substr($3,2,length($3)-2) ";"] = 1
56 bool_vars["int " substr($3,2,length($3)-2) ";"] = 1
64 time_vars["int " substr($3,2,length($3)-2) ";"] = 1
72 nint_vars["int " substr($3,2,length($3)-2) ";"] = 1
80 nbool_vars["int " substr($3,2,length($3)-2) ";"] = 1
88 long_vars["long " substr($3,2,length($3)-2) ";"] = 1
/macosx-10.10.1/BerkeleyDB-21/db/db_printlog/
H A Drectype.awk9 types[ntypes] = substr(RECTYPE, 1, ndx - 1);
10 RECTYPE = substr(RECTYPE, ndx + 1, length(RECTYPE) - ndx);
H A Drange.awk8 file = substr($1, 2, i - 2);
11 offset = substr($1, start, l - start + 1);
13 offset = substr($1, start, i - 1);
H A Dfileid.awk9 files[nfiles] = substr(FILEID, 1, ndx - 1);
10 FILEID = substr(FILEID, ndx + 1, length(FILEID) - ndx);
H A Dpgno.awk9 pgno[npages] = substr(PGNO, 1, ndx - 1);
10 PGNO = substr(PGNO, ndx + 1, length(PGNO) - ndx);
H A Dtxn.awk7 txn[ntxns] = substr(TXN, 1, ndx - 1);
8 TXN = substr(TXN, ndx + 1, length(TXN) - ndx);
/macosx-10.10.1/dtrace-147/test/tst/common/safety/
H A Dtst.substr.d27 #pragma ident "@(#)tst.substr.d 1.1 06/08/28 SMI"
41 trace(substr((char *)rand(), rand() ^ vtimestamp));
47 trace(substr((char *)rand(), -rand() ^ vtimestamp));
/macosx-10.10.1/Heimdal-398.1.2/lib/roken/
H A Droken.awk30 x = substr($0, i, 1)
/macosx-10.10.1/tcpdump-61/tcpdump/
H A Dstime.awk18 printf "%7.2f\t%g\n", tim-tzero, substr($6,1,i-1)/1024
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/
H A Dgtest-spi.h101 const string& substr);
117 // statement will cause exactly one fatal Google Test failure with 'substr'
138 #define EXPECT_FATAL_FAILURE(statement, substr) \
146 &gtest_failures, ::testing::TestPartResult::kFatalFailure, (substr));\
155 #define EXPECT_FATAL_FAILURE_ON_ALL_THREADS(statement, substr) \
163 &gtest_failures, ::testing::TestPartResult::kFatalFailure, (substr));\
174 // statement will cause exactly one non-fatal Google Test failure with 'substr'
204 #define EXPECT_NONFATAL_FAILURE(statement, substr) \
209 (substr));\
218 #define EXPECT_NONFATAL_FAILURE_ON_ALL_THREADS(statement, substr) \
[all...]
/macosx-10.10.1/ruby-106/ruby/sample/
H A Drcs.awk18 c = (0 < i && i < length($0)) ? substr($0, i, 1) : "0";
23 c = substr(ss, t, 1);
26 c = substr(s, xl + hdw, 1);
/macosx-10.10.1/vim-55/runtime/doc/
H A Dmakehtml.awk42 sample == "yes" && substr($0,1,4) == "&lt;" { sample = "no"; gsub(/^&lt;/, " "); }
43 sample == "yes" && substr($0,1,1) != " " && substr($0,1,1) != " " && length($0) > 0 { sample = "no" }
53 substr($0,length($0)-4,5) == " &gt;" { sample = "yes"; gsub(/ &gt;$/, ""); }
57 substr($0,length($0),1) == "~" { print "<B><FONT COLOR=\"PURPLE\">" substr($0,1,length($0)-1) "</FONT></B>"; next; }
149 substr($0,1,5) == " vim:" { next; }
150 substr($0,1,4) == "vim:" { next; }
152 substr($0,1,3) == "===" && substr(
[all...]
/macosx-10.10.1/apache-793/httpd/build/
H A DmkconfNW.awk115 s=substr($0,RSTART+2,RLENGTH-4)
120 s=substr($0,RSTART+5,RLENGTH-6)
125 s=substr($0,RSTART+5,RLENGTH-6)
130 s=substr($0,RSTART+8,RLENGTH-9)
/macosx-10.10.1/apr-32/apr/apr/build/
H A Dwin32ver.awk23 icon = substr(ARGV[i], 6);
26 vendor = substr(ARGV[i], 8);
30 special = substr(ARGV[i], 9);
60 copyright = substr($0, RLENGTH + 1);
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/win/
H A Dsver.sh12 VERSION=`expr substr "$i" 2 $END`
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Base/
H A DMIMETypeUtilities.js36 return lastPathComponent.substr(index + 1);

Completed in 290 milliseconds

1234567891011>>