Home
last modified time | relevance | path

Searched refs:label (Results 1 – 25 of 131) sorted by relevance

123456

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/
Didna.py14 def nameprep(label): argument
17 for c in label:
22 label = u"".join(newlabel)
25 label = unicodedata.normalize("NFKC", label)
28 for c in label:
41 RandAL = map(stringprep.in_table_d1, label)
50 if filter(stringprep.in_table_d2, label):
60 return label
62 def ToASCII(label): argument
65 label = label.encode("ascii")
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/
Didna.py14 def nameprep(label): argument
17 for c in label:
22 label = u"".join(newlabel)
25 label = unicodedata.normalize("NFKC", label)
28 for c in label:
41 RandAL = map(stringprep.in_table_d1, label)
50 if filter(stringprep.in_table_d2, label):
60 return label
62 def ToASCII(label): argument
65 label = label.encode("ascii")
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/
DBm.vfr64 // label FORM_MAIN_ID;
120 label FORM_BOOT_LEGACY_DEVICE_ID;
121 label LABEL_END;
157 label FORM_BOOT_DEL_ID;
158 label LABEL_END;
164 label FORM_BOOT_CHG_ID;
165 label LABEL_END;
172 label FORM_BOOT_NEXT_ID;
173 label LABEL_END;
179 label FORM_TIME_OUT_ID;
[all …]
DFE.vfr32 label FORM_FILE_EXPLORER_ID;
33 label LABEL_END;
39 label FORM_BOOT_ADD_DESCRIPTION_ID;
40 label LABEL_END;
81 label FORM_DRIVER_ADD_FILE_DESCRIPTION_ID;
82 label LABEL_END;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
Dpgen.py42 for label, next in state.arcs.iteritems():
43 arcs.append((self.make_label(c, label), dfa.index(next)))
55 for label in rawfirst:
56 ilabel = self.make_label(c, label)
61 def make_label(self, c, label): argument
64 if label[0].isalpha():
66 if label in c.symbol2number:
68 if label in c.symbol2label:
69 return c.symbol2label[label]
71 c.labels.append((c.symbol2number[label], None))
[all …]
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/BdsDxe/DeviceMngr/
DDeviceManagerVfr.Vfr41 label EFI_DISK_DEVICE_CLASS;
42 // label LABEL_END; // Since next opcode is a label, so this one could be omitted to save code …
44 label EFI_VIDEO_DEVICE_CLASS;
45 // label LABEL_END;
47 label EFI_NETWORK_DEVICE_CLASS;
48 // label LABEL_END;
50 label EFI_INPUT_DEVICE_CLASS;
51 // label LABEL_END;
53 label EFI_ON_BOARD_DEVICE_CLASS;
54 // label LABEL_END;
[all …]
DDriverHealthVfr.Vfr27 label LABEL_DRIVER_HEALTH;
28 label LABEL_DRIVER_HEALTH_END;
31 label LABEL_DRIVER_HEALTH_REAPIR_ALL;
32 label LABEL_DRIVER_HEALTH_REAPIR_ALL_END;
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/
DBootMaintenanceManager.vfr42 label LABEL_FORM_MAIN_START;
47 label LABEL_FORM_MAIN_END;
111 label FORM_BOOT_ADD_ID;
112 label LABEL_END;
153 label FORM_BOOT_DEL_ID;
154 label LABEL_END;
160 label FORM_BOOT_CHG_ID;
161 label LABEL_END;
185 label FORM_DRV_ADD_FILE_ID;
186 label LABEL_END;
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserProfileManagerDxe/
DUserProfileManagerVfr.Vfr29 label LABEL_USER_MANAGE_FUNC;
30 label LABEL_END;
46 label LABEL_USER_MOD_FUNC;
47 label LABEL_END;
55 label LABEL_USER_DEL_FUNC;
56 label LABEL_END;
86 label LABEL_USER_INFO_FUNC;
87 label LABEL_END;
102 label LABEL_IP_MOD_FUNC;
103 label LABEL_END;
[all …]
/device/linaro/bootloader/arm-trusted-firmware/include/common/aarch64/
Dasm_macros.S40 .macro smc_check label argument
44 b.ne $label
54 .macro vector_base label argument
57 \label:
67 .macro vector_entry label argument
71 .type \label, %function
72 .func \label
74 \label:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dformatter.py128 label = ''
131 label = label + ('%d' % counter)
134 label = label + self.format_letter(c, counter)
137 label = label + self.format_roman(c, counter)
139 label = label + c
140 return label
143 label = ''
150 label = s + label
151 return label
156 label, index = '', 0
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dformatter.py128 label = ''
131 label = label + ('%d' % counter)
134 label = label + self.format_letter(c, counter)
137 label = label + self.format_roman(c, counter)
139 label = label + c
140 return label
143 label = ''
150 label = s + label
151 return label
156 label, index = '', 0
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/webchecker/
Dtktools.py210 def make_form_entry(parent, label, borderwidth=None): argument
226 label = Label(frame, text=label)
227 label.pack(side=LEFT)
244 def make_labeled_form_entry(parent, label, entrywidth=20, entryheight=1, argument
256 if label and label[-1] != ':': label = label + ':'
260 label = Label(frame, text=label, width=labelwidth, anchor=E)
261 label.pack(side=LEFT)
275 return entry, frame, label
299 def make_group_frame(master, name=None, label=None, fill=Y, argument
312 if label:
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DeviceManagerUiLib/
DDeviceManagerVfr.Vfr37 label LABEL_DEVICES_LIST;
38 label LABEL_END;
49 label LABEL_NETWORK_DEVICE_LIST_ID;
50 label LABEL_END;
60 label LABEL_NETWORK_DEVICE_ID;
61 label LABEL_END;
/device/linaro/bootloader/arm-trusted-firmware/plat/xilinx/zynqmp/aarch64/
Dzynqmp_common.c175 char *label = "Unknown"; in zynqmp_print_platform_name() local
179 label = "VELOCE"; in zynqmp_print_platform_name()
182 label = "EP108"; in zynqmp_print_platform_name()
185 label = "QEMU"; in zynqmp_print_platform_name()
188 label = "silicon"; in zynqmp_print_platform_name()
193 zynqmp_print_silicon_idcode(), label, zynqmp_get_ps_ver(), in zynqmp_print_platform_name()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PlatformDriOverrideDxe/
DVfr.vfr53 label FORM_ID_DEVICE;
54 label LABEL_END;
80 label FORM_ID_DRIVER;
81 label LABEL_END;
94 label FORM_ID_ORDER;
95 label LABEL_END;
/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
DIp6Config.vfr63 label HOST_ADDRESS_LABEL;
64 label LABEL_END;
71 label ROUTE_TABLE_LABEL;
72 label LABEL_END;
79 label GATEWAY_ADDRESS_LABEL;
80 label LABEL_END;
87 label DNS_ADDRESS_LABEL;
88 label LABEL_END;
/device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
DSecureBootConfig.vfr177 label FORMID_ENROLL_PK_FORM;
178 label LABEL_END;
238 label FORMID_ENROLL_KEK_FORM;
239 label LABEL_END;
274 label LABEL_KEK_DELETE;
275 label LABEL_END;
356 label LABEL_DB_DELETE;
357 label LABEL_END;
368 label LABEL_DBX_DELETE;
369 label LABEL_END;
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/support/rexpr/
Drexpr.c82 static int ArcBetweenGraphNode( NodePtr i, NodePtr j, int label );
83 static Graph BuildNFA_atom( int label );
162 if ( p->label == Epsilon )
166 else if ( p->label == *s )
453 static void ArcBetweenGraphNodes(NodePtr i,NodePtr j,int label) in ArcBetweenGraphNodes() argument
455 static void ArcBetweenGraphNodes(i, j, label) in ArcBetweenGraphNodes()
457 int label;
465 a->label = label;
470 static Graph BuildNFA_atom(int label) in BuildNFA_atom() argument
472 static Graph BuildNFA_atom(label) in BuildNFA_atom()
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/
DUserIdentifyManagerVfr.Vfr34 label LABEL_USER_NAME;
35 label LABEL_END;
40 label LABEL_PROVIDER_NAME;
41 label LABEL_END;
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Ddlg_p.c486 (zzaRet.l)->label = set_dup(zzaArg(zztasp1,2 ).label); in expr()
487 set_orin(&used_chars,(zzaRet.l)->label); in expr()
501 (zzaRet.l)->label = set_dif(normal_chars,zzaArg(zztasp1,3 ).label); in expr()
502 set_orin(&used_chars,(zzaRet.l)->label); in expr()
544 (zzaRet.l)->label = set_dup(zzaArg(zztasp1,1 ).label); in expr()
545 set_orin(&used_chars,(zzaRet.l)->label); in expr()
573 set_free(zzaRet.label); in atom_list()
580 set_orin(&(zzaRet.label),zzaArg(zztasp2,1 ).label); in atom_list()
609 zzaRet.letter=zzaArg(zztasp1,1 ).letter; zzaRet.label=set_of(zzaArg(zztasp1,1 ).letter); in near_atom()
613 &(zzaRet.label)); in near_atom()
[all …]
Ddlg_p.g49 set used_chars; /* used to label trans. arcs */
50 set used_classes; /* classes or chars used to label trans. arcs */
290 ($$.l)->label = set_dup($2.label);
291 set_orin(&used_chars,($$.l)->label);
298 ($$.l)->label = set_dif(normal_chars,$3.label);
299 set_orin(&used_chars,($$.l)->label);
325 ($$.l)->label = set_dup($1.label);
326 set_orin(&used_chars,($$.l)->label);
331 atom_list : << set_free($$.label); >>
332 (near_atom <<set_orin(&($$.label),$1.label);>>)*
[all …]
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dns_name.c173 u_char *label, *bp, *eom; in ns_name_pton() local
180 label = bp++; in ns_name_pton()
209 c = ((int)(bp - label) - 1); in ns_name_pton()
214 if (label >= eom) { in ns_name_pton()
218 *label = (u_char)c; in ns_name_pton()
238 label = bp++; in ns_name_pton()
247 c = ((int)(bp - label) - 1); in ns_name_pton()
252 if (label >= eom) { in ns_name_pton()
256 *label = (u_char)c; in ns_name_pton()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dgrammar.h17 } label; typedef
25 label *ll_label;
79 char *PyGrammar_LabelRepr(label *lb);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dgrammar.h17 } label; typedef
25 label *ll_label;
79 char *PyGrammar_LabelRepr(label *lb);

123456