Home
last modified time | relevance | path

Searched refs:isletter (Results 1 – 25 of 353) sorted by relevance

12345678910>>...15

/dports/math/scilab/scilab-6.1.1/scilab/modules/string/tests/unit_tests/
H A Disletter.tst11 // unit tests isletter
20 if ~isletter('a') then pause,end
21 if ~isletter('b') then pause,end
22 if ~isletter('c') then pause,end
23 if ~isletter('d') then pause,end
24 if ~isletter('e') then pause,end
25 if ~isletter('f') then pause,end
26 if ~isletter('g') then pause,end
27 if ~isletter('h') then pause,end
28 if ~isletter('i') then pause,end
[all …]
H A Disletter.dia.ref9 // unit tests isletter
17 if ~isletter('a') then bugmes();quit;end
18 if ~isletter('b') then bugmes();quit;end
19 if ~isletter('c') then bugmes();quit;end
20 if ~isletter('d') then bugmes();quit;end
21 if ~isletter('e') then bugmes();quit;end
22 if ~isletter('f') then bugmes();quit;end
23 if ~isletter('g') then bugmes();quit;end
24 if ~isletter('h') then bugmes();quit;end
25 if ~isletter('i') then bugmes();quit;end
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/m2sci/tests/unit_tests/mfiles/
H A DISLETTER.m1 % Test file for function isletter()
5 res1 = isletter([]);
11 res4 = isletter([1]);
13 res5 = isletter([1,2,3]);
15 res6 = isletter([1;2;3]);
17 res7 = isletter([1,2,3;4,5,6]);
35 res16 = isletter([i]);
37 res17 = isletter([i,2i,3i]);
39 res18 = isletter([i;2i;3i]);
59 res28 = isletter(['s']);
[all …]
/dports/math/scilab/scilab-6.1.1/scilab/modules/string/tests/nonreg_tests/
H A Dbug_5071.tst14 // isletter("é") returns [%F %F] instead of %F
19 if ~and(isletter(v) == ref) then pause,end
20 if length(v) <> size(isletter(v),'*') then pause,end
24 if ~and(isletter(v) == ref) then pause,end
25 if length(v) <> size(isletter(v),'*') then pause,end
29 if ~and(isletter(v) == ref) then pause,end
30 if length(v) <> size(isletter(v),'*') then pause,end
H A Dbug_5071.dia.ref14 // isletter("é") returns [%F %F] instead of %F
18 if ~and(isletter(v) == ref) then bugmes();quit;end
19 if length(v) <> size(isletter(v),'*') then bugmes();quit;end
23 if ~and(isletter(v) == ref) then bugmes();quit;end
24 if length(v) <> size(isletter(v),'*') then bugmes();quit;end
28 if ~and(isletter(v) == ref) then bugmes();quit;end
29 if length(v) <> size(isletter(v),'*') then bugmes();quit;end
/dports/comms/wsjtz/wsjtx/lib/
H A Djtmsg.f9019 logical c1ok,c2ok,c3ok,isdigit,isletter,isgrid4 local
23 isletter(c)=(ichar(c).ge.ichar('A')) .and. (ichar(c).le.ichar('Z'))
35 if(t(1:3).eq.'CQ ' .and. isletter(t(4:4)) .and. &
36 isletter(t(5:5)) .and. t(6:6).eq.' ') t(3:3)='_'
76 if(w1(1:3).eq.'CQ_'.and.isletter(w2(1:1)).and.isletter(w2(2:2)).and. &
H A Dchkcall.f9010 logical cok,isdigit,isletter local
13 isletter(c)=(ichar(c).ge.ichar('A')) .and. (ichar(c).le.ichar('Z'))
36 if((.not.isletter(bc(1:1))) .and. (.not.isletter(bc(2:2)))) go to 100
/dports/devel/cc65/cc65-2.19/test/ref/
H A Dwf1.c39 int isletter(char c);
61 while (((c = getchar()) != -1) && (isletter(c) == 0))
63 for (s = buf; (c = isletter(c)); c = getchar())
72 int isletter(char c) in isletter() function
/dports/math/octave/octave-6.4.0/scripts/strings/
H A Disletter.m27 ## @deftypefn {} {} isletter (@var{s})
35 function retval = isletter (s) function
46 %!error isletter ()
47 %!error isletter ("a", "b")
H A Dmodule.mk15 %reldir%/isletter.m \
/dports/cad/geda/geda-gaf-1.8.2/utils/scripts/
H A Dtragesym229 isletter=1
234 if isletter == 1:
239 isletter=1
241 if isletter == 0:
246 isletter=0
247 if isletter == 0:
/dports/misc/lifelines/lifelines-3.1.1/src/stdlib/
H A Dstdstrng.c78 if (isletter(c)) in chartype()
132 isletter (INT c) in isletter() function
/dports/math/gnuplot-tex-extras/gnuplot-5.2.8/src/
H A Ddatablock.c99 if (!isletter(c_token+1)) in datablock_command()
106 if (!equals(c_token, "<<") || !isletter(c_token+1)) in datablock_command()
/dports/math/abs/abs-src-0.908/ABV/
H A Dutil.h54 int isletter (char tok);
H A Dutil.c54 isletter (char tok) in isletter() function
/dports/math/scilab/scilab-6.1.1/scilab/modules/string/src/c/
H A Disletter.h31 STRING_IMPEXP BOOL *isletter(char *input_string, int *sizeArray);
H A Disletter.c25 BOOL *isletter(char *input_string, int *sizeArray) in isletter() function
/dports/math/calc/calc-2.14.0.14/
H A Dtoken.c43 #define isletter(ch) ((((ch) >= 'a') && ((ch) <= 'z')) || \ macro
46 #define issymbol(ch) (isletter(ch) || isdigit(ch) || ((ch) == '_'))
363 if (isletter(ch) || ch == '_') { in gettoken()
639 if ((numbuf[0] == '.') && isletter(numbuf[1])) { in eatnumber()
/dports/math/gnuplot/gnuplot-5.4.1/src/
H A Ddatablock.c96 if (!isletter(c_token+1)) in datablock_command()
103 if (!equals(c_token, "<<") || !isletter(c_token+1)) in datablock_command()
H A Dutil.h79 int isletter(int);
/dports/math/gnuplot-lite/gnuplot-5.4.1/src/
H A Ddatablock.c96 if (!isletter(c_token+1)) in datablock_command()
103 if (!equals(c_token, "<<") || !isletter(c_token+1)) in datablock_command()
H A Dutil.h79 int isletter(int);
/dports/science/afni/afni-AFNI_21.3.16/src/matlab/
H A DBrikInfo_SectionValue.m87 %if (sum(isletter(Svals))), %isletter fails when you have numbers such as 1.4e-3
/dports/print/texlive-base/texlive-20150521-source/texk/texlive/linked_scripts/de-macro/
H A Dde-macro188 def isletter(c, isatletter=False):
246 and simple_ty == item.type and isletter(item.val[0], False)):
307 if isletter(name[0], isatletter):
400 if isletter(out, isatletter):
401 while self.uplegal() and isletter(item, isatletter):
514 if isletter(name[0], isatletter):
542 and simple_ty == item.type and isletter(item.val[0], False)):
/dports/math/scilab/scilab-6.1.1/scilab/modules/m2sci/macros/compat_functions/
H A Dmtlb_isletter.sci14 // Translation function for isletter() Matlab function

12345678910>>...15