Home
last modified time | relevance | path

Searched refs:targets (Results 1 – 25 of 36) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_with.py604 targets = {1: [0, 1, 2]}
605 with mock_contextmanager_generator() as targets[1][0]:
606 self.assertEqual(targets.keys(), [1])
607 self.assertEqual(targets[1][0].__class__, MockResource)
608 with mock_contextmanager_generator() as targets.values()[0][1]:
609 self.assertEqual(targets.keys(), [1])
610 self.assertEqual(targets[1][1].__class__, MockResource)
611 with mock_contextmanager_generator() as targets[2]:
612 keys = targets.keys()
624 targets = {1: [0, 1, 2]}
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Ddep_util.py32 def newer_pairwise(sources, targets): argument
38 if len(sources) != len(targets):
44 for source, target in zip(sources, targets):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_dep_util.py35 targets = os.path.join(tmpdir, 'targets')
37 os.mkdir(targets)
41 four = os.path.join(targets, 'four')
/device/linaro/bootloader/edk2/NetworkPkg/
DNetworkPkg.uni68 … "0x02 = Stop UEFI iSCSI if iSCSI HBA adapter supports booting from iSCSI IPv4 targets.\n"
69 … "0x04 = Stop UEFI iSCSI if iSCSI HBA adapter supports booting from iSCSI IPv6 targets.\n"
72 … = Stop UEFI iSCSI if iSCSI HBA adapter is currently configured to boot from iSCSI IPv4 targets.\n"
73 …40 = Stop UEFI iSCSI if iSCSI HBA adapter is currently configured to boot from iSCSI IPv6 targets."
DNetworkPkg.dec84 # 0x02 = Stop UEFI iSCSI if iSCSI HBA adapter supports booting from iSCSI IPv4 targets.
85 # 0x04 = Stop UEFI iSCSI if iSCSI HBA adapter supports booting from iSCSI IPv6 targets.
88 …x20 = Stop UEFI iSCSI if iSCSI HBA adapter is currently configured to boot from iSCSI IPv4 targets.
89 …x40 = Stop UEFI iSCSI if iSCSI HBA adapter is currently configured to boot from iSCSI IPv6 targets.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/framer/framer/
Dfunction.py94 def targets(self): member in VarArgs
169 v["ArgTargets"] = self.args.targets()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
DPython.asdl17 | Delete(expr* targets)
18 | Assign(expr* targets, expr value)
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Xcode/xcode_project32/xcode_project.xcodeproj/
Dproject.pbxproj52 targets = (
/device/linaro/bootloader/edk2/EmulatorPkg/Unix/Xcode/xcode_project64/xcode_project.xcodeproj/
Dproject.pbxproj52 targets = (
/device/linaro/bootloader/edk2/StdLib/LibC/Softfloat/
DREADME.txt30 targets. It is not just a matter of getting `make' to complete without
Dsoftfloat-source.txt127 platforms. The SoftFloat source code is distributed with targets
309 For the targets that are supplied, if the expected compiler is available
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
DPython-ast.h91 asdl_seq *targets; member
95 asdl_seq *targets; member
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
DPython-ast.h91 asdl_seq *targets; member
95 asdl_seq *targets; member
394 stmt_ty _Py_Delete(asdl_seq * targets, int lineno, int col_offset, PyArena
397 stmt_ty _Py_Assign(asdl_seq * targets, expr_ty value, int lineno, int
/device/linaro/bootloader/edk2/BaseTools/
DBuildNotes.txt25 Supported build targets (toolsetup)
/device/linaro/bootloader/edk2/BaseTools/Conf/
Dtarget.template31 # valid targets specified in the platform description…
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
Dmakefile187 # ****** These next targets are common to UNIX and PC world ********
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/
DCommon.dsc581 # Defines for standard intermediate files and build targets
907 # Defines for standard intermediate files and build targets
1088 # These are the commands to build EBC EFI targets
1178 # Defines for standard intermediate files and build targets
1355 # Defines for standard intermediate files and build targets. For the source
1609 # the obj and hpk files as dual targets of the same command.
1645 # the obj and hpk files as dual targets of the same command.
1689 # the obj and hpk files as dual targets of the same command.
1739 # the obj and hpk files as dual targets of the same command.
/device/sample/frameworks/PlatformLibrary/
DREADME.txt25 build targets and corresponding build outputs:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
DPython-ast.c1106 Delete(asdl_seq * targets, int lineno, int col_offset, PyArena *arena) in Delete() argument
1113 p->v.Delete.targets = targets; in Delete()
1120 Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena in Assign() argument
1133 p->v.Assign.targets = targets; in Assign()
2263 value = ast2obj_list(o->v.Delete.targets, ast2obj_expr); in ast2obj_stmt()
2272 value = ast2obj_list(o->v.Assign.targets, ast2obj_expr); in ast2obj_stmt()
3725 asdl_seq* targets; in obj2ast_stmt() local
3738 targets = asdl_seq_new(len, arena); in obj2ast_stmt()
3739 if (targets == NULL) goto failed; in obj2ast_stmt()
3744 asdl_seq_SET(targets, i, value); in obj2ast_stmt()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
DPython-ast.c1089 Delete(asdl_seq * targets, int lineno, int col_offset, PyArena *arena) in Delete() argument
1096 p->v.Delete.targets = targets; in Delete()
1103 Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena in Assign() argument
1116 p->v.Assign.targets = targets; in Assign()
2246 value = ast2obj_list(o->v.Delete.targets, ast2obj_expr); in ast2obj_stmt()
2255 value = ast2obj_list(o->v.Assign.targets, ast2obj_expr); in ast2obj_stmt()
3708 asdl_seq* targets; in obj2ast_stmt() local
3721 targets = asdl_seq_new(len, arena); in obj2ast_stmt()
3722 if (targets == NULL) goto failed; in obj2ast_stmt()
3727 asdl_seq_SET(targets, i, value); in obj2ast_stmt()
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/
Dunparse.py100 for target in t.targets:
128 interleave(lambda: self.write(", "), self.dispatch, t.targets)
/device/linaro/bootloader/edk2/OvmfPkg/
DOvmfPkg.dec81 ## When VirtioScsiDxe is instantiated for a HBA, the numbers of targets and
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
DREADME56 Notes for some targets:
/device/linaro/bootloader/edk2/
DBuildNotes2.txt106 Supported build targets
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
DREADME60 Notes for some targets:

12