Home
last modified time | relevance | path

Searched refs:nexttok (Results 1 – 25 of 83) sorted by relevance

1234

/dports/cad/qflow/qflow-1.4.98/src/
H A Dreadverilog.c52 char *nexttok; variable
493 if (match(nexttok, "`ifdef") || match(nexttok, "`ifndef")) { in GetNextLineNoNewline()
521 match(nexttok, "`elsif") || match(nexttok, "`else")) { in GetNextLineNoNewline()
629 while (nexttok && strcmp(nexttok, "*/")) in SkipTokComments()
634 while (nexttok && strcmp(nexttok, "*)")) in SkipTokComments()
1360 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadVerilogFile()
1365 if ((nexttok == NULL) || (nexttok[0] == '\0')) in ReadVerilogFile()
1385 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadVerilogFile()
1391 if (!strcmp(nexttok, ";") || !strcmp(nexttok, ",")) break; in ReadVerilogFile()
1406 if ((nexttok == NULL) || !strcmp(nexttok, ";")) break; in ReadVerilogFile()
[all …]
/dports/cad/netgen-lvs/netgen-1.5.211/base/
H A Dspice.c759 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
854 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
919 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
985 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
1067 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
1236 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
1390 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
1456 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
1510 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
1573 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadSpiceFile()
[all …]
H A Dext.c149 if (*nexttok == '"') { in GetExtName()
150 strcpy(name, nexttok+1); in GetExtName()
153 else strcpy(name, nexttok); in GetExtName()
292 while (nexttok != NULL) { in ReadExt()
336 if (nexttok == NULL) { in ReadExt()
692 if ((nexttok != NULL) && (nexttok[0] != '\0')) { in ReadSim()
696 if ((nexttok != NULL) && (nexttok[0] != '\0')) { in ReadSim()
732 if ((nexttok != NULL) && (nexttok[0] != '\0')) { in ReadSim()
736 if ((nexttok != NULL) && (nexttok[0] != '\0')) { in ReadSim()
839 if (nexttok != NULL) { in ReadSim()
[all …]
H A Dverilog.c170 nexttok); in GetBusTok()
238 nexttok); in GetBusTok()
713 if ((nexttok == NULL) || (nexttok[0] == '\0')) break; in ReadVerilogFile()
757 if ((nexttok == NULL) || match(nexttok, ";")) break; in ReadVerilogFile()
907 !match(nexttok, "inout") && !match(nexttok, "real") && in ReadVerilogFile()
908 !match(nexttok, "wire") && !match(nexttok, "logic") && in ReadVerilogFile()
1125 if ((nexttok == NULL) || (nexttok[0] == '\0')) { in ReadVerilogFile()
1273 if (lhs && ((!nexttok) || (!match(nexttok, "=")))) { in ReadVerilogFile()
1287 if (nexttok && match(nexttok, "=")) { in ReadVerilogFile()
1377 while (nexttok && !match(nexttok, ";")) in ReadVerilogFile()
[all …]
H A Dntk.c216 Port(nexttok); in ReadNtk()
236 if (strrchr(nexttok, PHYSICALPIN[0]) == NULL) Node(nexttok); in ReadNtk()
239 nexttok); in ReadNtk()
243 Node(nexttok); in ReadNtk()
246 strcpy(last, nexttok); in ReadNtk()
258 strcpy(model, nexttok); in ReadNtk()
314 join(nexttok, name); in ReadNtk()
322 else if (match(nexttok, "n") || match(nexttok,"N")) { in ReadNtk()
331 strcpy(name, nexttok); in ReadNtk()
339 else if (match(nexttok, "p") || match(nexttok,"P")) { in ReadNtk()
[all …]
H A Dnetfile.c193 char *nexttok; variable
422 if (match(nexttok, "`ifdef") || match(nexttok, "`ifndef")) { in GetNextLineNoNewline()
449 else if (match(nexttok, "`ifdef") || match(nexttok, "`ifndef") || in GetNextLineNoNewline()
450 match(nexttok, "`elsif") || match(nexttok, "`else")) { in GetNextLineNoNewline()
469 if (nexttok == NULL) { in GetNextLineNoNewline()
480 if (nexttok == NULL) { in GetNextLineNoNewline()
537 if (nexttok != NULL && in SkipTok()
596 while (nexttok) { in SkipTokComments()
602 while (nexttok && !match(nexttok, "*/")) in SkipTokComments()
616 while (nexttok != NULL) in SkipNewLine()
[all …]
H A Dquery.c75 char *nexttok; in promptstring() local
87 nexttok = InputLine; in promptstring()
88 while (isspace(*nexttok) && *nexttok != '\0') nexttok++; in promptstring()
89 if (*nexttok == '\0') { in promptstring()
92 nexttok = InputLine; in promptstring()
93 while (isspace(*nexttok) && *nexttok != '\0') nexttok++; in promptstring()
94 if (*nexttok == '\0') { in promptstring()
100 strcpy(tmpstr,nexttok); in promptstring()
101 nexttok = tmpstr; in promptstring()
102 while (*nexttok != '\0' && !isspace(*nexttok)) nexttok++; in promptstring()
[all …]
/dports/lang/python311/Python-3.11.0a3/Lib/
H A Dgettext.py119 nexttok = next(tokens)
120 while nexttok == '!':
122 nexttok = next(tokens)
124 if nexttok == '(':
127 if nexttok != ')':
129 elif nexttok == 'n':
137 nexttok = next(tokens)
148 op = _c2py_ops.get(nexttok, nexttok)
157 if nexttok != ':':
164 return result, nexttok
[all …]
/dports/lang/python37/Python-3.7.12/Lib/
H A Dgettext.py116 nexttok = next(tokens)
117 while nexttok == '!':
119 nexttok = next(tokens)
121 if nexttok == '(':
124 if nexttok != ')':
126 elif nexttok == 'n':
134 nexttok = next(tokens)
145 op = _c2py_ops.get(nexttok, nexttok)
154 if nexttok != ':':
161 return result, nexttok
[all …]
/dports/math/aribas/aribas-1.64/src/
H A Dparser.c426 nexttok(strom,0);
652 nexttok(strom,1);
655 nexttok(strom,0);
702 nexttok(strom,0);
821 nexttok(strom,0);
935 nexttok(strom,0);
1030 nexttok(strom,0);
1141 nexttok(strom,1);
2145 nexttok(strom,0);
2315 nexttok(strom,1);
[all …]
/dports/lang/python27/Python-2.7.18/Lib/
H A Dgettext.py114 nexttok = next(tokens)
115 while nexttok == '!':
117 nexttok = next(tokens)
119 if nexttok == '(':
122 if nexttok != ')':
124 elif nexttok == 'n':
132 nexttok = next(tokens)
143 op = _c2py_ops.get(nexttok, nexttok)
152 if nexttok != ':':
159 return result, nexttok
[all …]
/dports/lang/python-legacy/Python-2.7.18/Lib/
H A Dgettext.py114 nexttok = next(tokens)
115 while nexttok == '!':
117 nexttok = next(tokens)
119 if nexttok == '(':
122 if nexttok != ')':
124 elif nexttok == 'n':
132 nexttok = next(tokens)
143 op = _c2py_ops.get(nexttok, nexttok)
152 if nexttok != ':':
159 return result, nexttok
[all …]
/dports/devel/swig/swig-4.0.2/Source/CParse/
H A Dcscanner.c337 int nexttok = Scanner_token(scan); in yylook() local
338 if (nexttok == SWIG_TOKEN_STAR) { in yylook()
340 } else if (nexttok == SWIG_TOKEN_NOT) { in yylook()
726 int nexttok; in yylex() local
748 nexttok = Scanner_token(scan); in yylex()
749 } while (nexttok == SWIG_TOKEN_ENDLINE || nexttok == SWIG_TOKEN_COMMENT); in yylex()
751 if (Scanner_isoperator(nexttok)) { in yylex()
758 nexttok = Scanner_token(scan); in yylex()
768 nexttok = Scanner_token(scan); in yylex()
792 nexttok = Scanner_token(scan); in yylex()
[all …]
/dports/databases/py-sqlite3/Python-3.8.12/Lib/
H A Dgettext.py117 nexttok = next(tokens)
118 while nexttok == '!':
120 nexttok = next(tokens)
122 if nexttok == '(':
125 if nexttok != ')':
127 elif nexttok == 'n':
135 nexttok = next(tokens)
146 op = _c2py_ops.get(nexttok, nexttok)
155 if nexttok != ':':
162 return result, nexttok
[all …]
/dports/lang/python310/Python-3.10.1/Lib/
H A Dgettext.py116 nexttok = next(tokens)
117 while nexttok == '!':
119 nexttok = next(tokens)
121 if nexttok == '(':
124 if nexttok != ')':
126 elif nexttok == 'n':
134 nexttok = next(tokens)
145 op = _c2py_ops.get(nexttok, nexttok)
154 if nexttok != ':':
161 return result, nexttok
[all …]
/dports/lang/python-tools/Python-3.8.12/Lib/
H A Dgettext.py117 nexttok = next(tokens)
118 while nexttok == '!':
120 nexttok = next(tokens)
122 if nexttok == '(':
125 if nexttok != ')':
127 elif nexttok == 'n':
135 nexttok = next(tokens)
146 op = _c2py_ops.get(nexttok, nexttok)
155 if nexttok != ':':
162 return result, nexttok
[all …]
/dports/lang/python39/Python-3.9.9/Lib/
H A Dgettext.py116 nexttok = next(tokens)
117 while nexttok == '!':
119 nexttok = next(tokens)
121 if nexttok == '(':
124 if nexttok != ')':
126 elif nexttok == 'n':
134 nexttok = next(tokens)
145 op = _c2py_ops.get(nexttok, nexttok)
154 if nexttok != ':':
161 return result, nexttok
[all …]
/dports/databases/py-gdbm/Python-3.8.12/Lib/
H A Dgettext.py117 nexttok = next(tokens)
118 while nexttok == '!':
120 nexttok = next(tokens)
122 if nexttok == '(':
125 if nexttok != ')':
127 elif nexttok == 'n':
135 nexttok = next(tokens)
146 op = _c2py_ops.get(nexttok, nexttok)
155 if nexttok != ':':
162 return result, nexttok
[all …]
/dports/x11-toolkits/py-tkinter/Python-3.8.12/Lib/
H A Dgettext.py117 nexttok = next(tokens)
118 while nexttok == '!':
120 nexttok = next(tokens)
122 if nexttok == '(':
125 if nexttok != ')':
127 elif nexttok == 'n':
135 nexttok = next(tokens)
146 op = _c2py_ops.get(nexttok, nexttok)
155 if nexttok != ':':
162 return result, nexttok
[all …]
/dports/lang/python38/Python-3.8.12/Lib/
H A Dgettext.py117 nexttok = next(tokens)
118 while nexttok == '!':
120 nexttok = next(tokens)
122 if nexttok == '(':
125 if nexttok != ')':
127 elif nexttok == 'n':
135 nexttok = next(tokens)
146 op = _c2py_ops.get(nexttok, nexttok)
155 if nexttok != ':':
162 return result, nexttok
[all …]
/dports/cad/verilator/verilator-4.216/src/
H A DV3ParseImp.cpp401 && (nexttok == ygenSTRENGTH || nexttok == ySUPPLY0 || nexttok == ySUPPLY1)) { in tokenPipeline()
404 if (nexttok == yBEGIN) { in tokenPipeline()
410 if (nexttok == yREF) { in tokenPipeline()
416 if (nexttok == yCLOCKING) { in tokenPipeline()
433 if (nexttok == '(') { in tokenPipeline()
439 if (nexttok == yCONSTRAINT) { in tokenPipeline()
445 if (nexttok == yCLASS) { in tokenPipeline()
457 if (nexttok == '(') { in tokenPipeline()
459 } else if (nexttok == '[') { in tokenPipeline()
461 } else if (nexttok == '{') { in tokenPipeline()
[all …]
/dports/devel/android-tools-fastboot/platform_system_core-platform-tools-29.0.5/extras/su/
H A Dsu.cpp46 char *nexttok; in extract_uidgids() local
58 nexttok = clobberablegids; in extract_uidgids()
59 tok = strsep(&nexttok, ","); in extract_uidgids()
61 tok = strsep(&nexttok, ","); in extract_uidgids()
70 while ((gids_found < *gids_count) && (tok = strsep(&nexttok, ","))) { in extract_uidgids()
75 if (nexttok && gids_found == *gids_count) { in extract_uidgids()
/dports/emulators/vice/vice-3.5/src/lib/libx264/filters/
H A Dfilters.c40 char *nexttok; in x264_split_string() local
64 nexttok = str; in x264_split_string()
67 nexttok = strstr( nexttok, sep ); in x264_split_string()
68 if( nexttok ) in x264_split_string()
69 *nexttok++ = '\0'; in x264_split_string()
87 tok = nexttok; in x264_split_string()
/dports/emulators/libretro-vice/vice-libretro-5725415/vice/src/lib/libx264/filters/
H A Dfilters.c40 char *nexttok; in x264_split_string() local
64 nexttok = str; in x264_split_string()
67 nexttok = strstr( nexttok, sep ); in x264_split_string()
68 if( nexttok ) in x264_split_string()
69 *nexttok++ = '\0'; in x264_split_string()
87 tok = nexttok; in x264_split_string()
/dports/science/healpix/Healpix_3.50/src/idl/zzz_external/textoidl/
H A Dnexttok.pro11 ; tok = nexttok( strn, tokens )
26 ; nexttok( 'x^2 + N_j^3', '^_', position=pos ) returns '^' and sets
29 ; $Id: nexttok.pro,v 1.4 2004/06/15 17:25:54 mcraig Exp $
30 ; $Log: nexttok.pro,v $
53 FUNCTION nexttok, strn, tokens, $
66 print, offset+'tok = nexttok( strn, tokens )'
82 print, offset+offset+"nexttok( 'x^2 + N_j^3', '^_', position=pos ) returns '^' and sets"

1234