Home
last modified time | relevance | path

Searched refs:labels (Results 1 – 24 of 24) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
Didna.py157 labels = dots.split(input)
158 if labels and len(labels[-1])==0:
160 del labels[-1]
163 for label in labels:
178 labels = dots.split(input)
183 labels = input.split(".")
185 if labels and len(labels[-1]) == 0:
187 del labels[-1]
192 for label in labels:
206 labels = dots.split(input)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
Didna.py157 labels = dots.split(input)
158 if labels and len(labels[-1])==0:
160 del labels[-1]
163 for label in labels:
178 labels = dots.split(input)
183 labels = input.split(".")
185 if labels and len(labels[-1]) == 0:
187 del labels[-1]
192 for label in labels:
206 labels = dots.split(input)
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
Dgrammar.py81 self.labels = [(0, "EMPTY")]
108 new.labels = self.labels[:]
125 pprint(self.labels)
Dconv.py199 labels = []
214 labels.append((x, y))
217 self.labels = labels
233 assert nlabels == len(self.labels), (lineno, line)
253 for ilabel, (type, value) in enumerate(self.labels):
Dpgen.py63 ilabel = len(c.labels)
71 c.labels.append((c.symbol2number[label], None))
82 c.labels.append((itoken, None))
94 c.labels.append((token.NAME, value))
103 c.labels.append((itoken, None))
Dparse.py124 t, v = self.grammar.labels[i]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Ddis.py64 labels = findlabels(code)
82 if i in labels: print '>>',
112 labels = findlabels(code)
120 if i in labels: print '>>',
158 labels = []
174 if label not in labels:
175 labels.append(label)
176 return labels
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Ddis.py64 labels = findlabels(code)
82 if i in labels: print '>>',
112 labels = findlabels(code)
120 if i in labels: print '>>',
158 labels = []
174 if label not in labels:
175 labels.append(label)
176 return labels
Dmailbox.py1250 labels = set()
1252 labels.update(label_list)
1253 labels.difference_update(self._special_labels)
1254 return list(labels)
1270 labels = [label.strip() for label
1273 label_lists.append(labels)
1305 labels = []
1310 labels.append(label)
1315 for label in labels:
1726 def set_labels(self, labels): argument
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dgprof2html.py38 labels = {}
45 labels[fname] = fname
60 if fname not in labels:
71 if part in labels:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
Dmetagrammar.c121 static label labels[19] = { variable
145 {19, labels},
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
Dmetagrammar.c121 static label labels[19] = { variable
145 {19, labels},
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/sorcerer/lib/
Dastlib.c327 ast_scanmatch(ScanAST *t, SORAST *u, SORAST **labels[], int *n) in ast_scanmatch() argument
329 ast_scanmatch(t, u, labels, n) in ast_scanmatch()
332 SORAST **labels[];
348 require(labels!=NULL, "label found in template, but no array of labels");
350 *(labels[sib->label_num-1]) = u;
354 if ( !ast_scanmatch(sib->down, u->ast_down, labels, n) ) return 0;
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
DPCCTSAST.cpp247 scanmatch(ScanAST *t, PCCTS_AST **labels[], int *n) in scanmatch() argument
261 require(labels!=NULL, "label found in template, but no array of labels"); in scanmatch()
263 *(labels[sib->label_num-1]) = u; in scanmatch()
269 if ( !u->down()->scanmatch(sib->down(), labels, n) ) return 0; in scanmatch()
DPCCTSAST.h98 int scanmatch(ScanAST *t, PCCTS_AST **labels[], int *n);
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
DPCCTSAST.cpp252 scanmatch(ScanAST *t, PCCTS_AST **labels[], int *n) in scanmatch() argument
266 require(labels!=NULL, "label found in template, but no array of labels"); in scanmatch()
268 *(labels[sib->label_num-1]) = u; in scanmatch()
280 if ( !u->down()->scanmatch(sib->down(), labels, n) ) return 0; in scanmatch()
DPCCTSAST.h98 int scanmatch(ScanAST *t, PCCTS_AST **labels[], int *n);
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dparser.dlg921 err("cannot mix old-style $i with new-style labels");
943 err("cannot mix old-style $i with new-style labels");
976 err("cannot mix old-style $i with new-style labels");
1007 /* MR10 */ /* element labels might exist without an elem when */
1019 …/* MR10 */ /* element labels contain pointer to the owners node …
Dantlr.g317 err("cannot mix old-style $i with new-style labels");
335 err("cannot mix old-style $i with new-style labels");
364 err("cannot mix old-style $i with new-style labels");
392 /* MR10 */ /* element labels might exist without an elem when */
404 /* MR10 */ /* element labels contain pointer to the owners node …
1608 if ( UsedOldStyleAttrib ) err("cannot mix with new-style labels with old-style $i");
1627 /* add to list of element labels for this rule */
1629 /* MR7 */ leAdd(l); /* list of labels waiting for exception group definitions */
2501 * of token references (either labels or reg exprs). Return a
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dns_print.c506 u_int type, algorithm, labels, footprint; in ns_sprintrrf() local
517 labels = *rdata++; in ns_sprintrrf()
522 if (labels != (u_int)dn_count_labels(name)) in ns_sprintrrf()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dgraminit.c2001 static label labels[169] = { variable
2175 {169, labels},
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dgraminit.c2001 static label labels[169] = { variable
2175 {169, labels},
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DCHANGES_FROM_133_BEFORE_MR13.txt2657 referenced using element labels when ASTs are enabled (-gt option).
2670 Numeric labels work in all cases.
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/
DCHANGES_FROM_133_before_mr13.txt2657 referenced using element labels when ASTs are enabled (-gt option).
2670 Numeric labels work in all cases.