| Commit message (Expand) | Author | Age | Files | Lines |
* | BaseTools: AutoGen - move constructor out of loop | Jaben Carsey | 2018-06-29 | 1 | -2/+4 |
* | BaseTools: AutoGen - clean up access | Jaben Carsey | 2018-06-29 | 1 | -1/+2 |
* | BaseTools: AutoGen - Remove unused variables. | Jaben Carsey | 2018-06-27 | 1 | -10/+0 |
* | BaseTools: Replace StringIO.StringIO with io.BytesIO | Gary Lin | 2018-06-27 | 1 | -5/+5 |
* | BaseTools: Adjust the spaces around commas and colons | Gary Lin | 2018-06-27 | 1 | -27/+27 |
* | BaseTools: Remove the deprecated hash_key() | Gary Lin | 2018-06-27 | 1 | -2/+2 |
* | BaseTools: Remove the old python "not-equal" | Gary Lin | 2018-06-27 | 1 | -1/+1 |
* | BaseTools: Refactor python print statements | Gary Lin | 2018-06-27 | 1 | -2/+3 |
* | BaseTools: Refactor python except statements | Gary Lin | 2018-06-27 | 1 | -1/+1 |
* | BaseTools: Cleanup unneeded code | Jaben Carsey | 2018-06-13 | 1 | -184/+150 |
* | BaseTools: refactor to remove functions | Jaben Carsey | 2018-06-13 | 1 | -156/+9 |
* | BaseTools: Rename String to StringUtils. | Marvin.Haeuser@outlook.com | 2018-05-28 | 1 | -1/+1 |
* | BaseTools: Report more clear error message when PCD type mismatch | Yunhua Feng | 2018-05-22 | 1 | -8/+12 |
* | BaseTools: Library PCD type will inherit from the driver | Yunhua Feng | 2018-05-22 | 1 | -0/+16 |
* | BaseTools: Fix bug PCD type in component is not same with Pcd section | Yunhua Feng | 2018-05-22 | 1 | -0/+2 |
* | BaseTools: Fix --hash Package and Module hash value. | Lin, Derek | 2018-05-16 | 1 | -7/+11 |
* | BaseTools: dont make iterator into list if not needed | Carsey, Jaben | 2018-05-04 | 1 | -5/+5 |
* | BaseTools: remove redundant if comparison | Carsey, Jaben | 2018-05-02 | 1 | -13/+13 |
* | BaseTools: Replace Binary File type strings with predefined constant | Carsey, Jaben | 2018-05-02 | 1 | -6/+6 |
* | BaseTools: Replace PCD type strings with predefined constant | Carsey, Jaben | 2018-05-02 | 1 | -2/+2 |
* | BaseTools: DataType - cleanup list constants | Carsey, Jaben | 2018-05-02 | 1 | -16/+16 |
* | BaseTools: Define and use a set for common list | Carsey, Jaben | 2018-05-02 | 1 | -2/+2 |
* | BaseTools: replace string constants used for module types | Carsey, Jaben | 2018-05-02 | 1 | -10/+10 |
* | BaseTools: Fix one invalid change in 6be94743 | Yunhua Feng | 2018-04-26 | 1 | -1/+1 |
* | BaseTools: AutoGen - use dafultdict instead of dict | Carsey, Jaben | 2018-04-26 | 1 | -2/+1 |
* | BaseTools: Autogen - replace string constants with those from DataType | Carsey, Jaben | 2018-04-26 | 1 | -34/+34 |
* | BaseTools: replace 'UINT8','UINT16','UINT32','UINT64','VOID*' with shared con... | Carsey, Jaben | 2018-04-23 | 1 | -13/+13 |
* | BaseTools: refactor and remove un-needed use of .keys() on dictionaries | Carsey, Jaben | 2018-04-18 | 1 | -17/+15 |
* | BaseTools: use predefined constants instead of local strings | Carsey, Jaben | 2018-04-18 | 1 | -11/+11 |
* | BaseTools: fix None comparisons | Carsey, Jaben | 2018-04-17 | 1 | -1/+1 |
* | BaseTools: use set instead of list for a variable to be used with in | Carsey, Jaben | 2018-04-17 | 1 | -5/+2 |
* | BaseTools: skip updating temporary variable. | Carsey, Jaben | 2018-04-17 | 1 | -9/+3 |
* | BaseTools: no need to save the data | Carsey, Jaben | 2018-04-17 | 1 | -4/+3 |
* | BaseTools: Fix the build error caused by eca980c0c899 | Yonghong Zhu | 2018-04-11 | 1 | -1/+1 |
* | BaseTools: Fix two cases that use GUID CName as PCD Value | Yonghong Zhu | 2018-04-10 | 1 | -2/+3 |
* | BaseTools: Fix the bug for VOID* pcd max size from component section | Yonghong Zhu | 2018-04-10 | 1 | -2/+10 |
* | BaseTools: Fix a bug for Size incorrect of Void* Fixatbuild Pcd | Yonghong Zhu | 2018-04-10 | 1 | -2/+2 |
* | BaseTools: change more list to set | Carsey, Jaben | 2018-04-10 | 1 | -3/+2 |
* | BaseTools: remove unneeded function call | Carsey, Jaben | 2018-04-10 | 1 | -1/+0 |
* | BaseTools: change another list to set | Carsey, Jaben | 2018-04-10 | 1 | -2/+2 |
* | BaseTools: optimize buildoptions loop | Carsey, Jaben | 2018-04-10 | 1 | -15/+6 |
* | BaseTools: simplify testing for existance and containing data | Carsey, Jaben | 2018-04-10 | 1 | -9/+7 |
* | BaseTools: change list to set | Carsey, Jaben | 2018-04-10 | 1 | -9/+5 |
* | BaseTools: remove unused variables | Carsey, Jaben | 2018-04-10 | 1 | -10/+1 |
* | BaseTools: replace a dict with a set | Carsey, Jaben | 2018-04-10 | 1 | -2/+2 |
* | BaseTools: sets are faster to check via "in" due to hashing | Carsey, Jaben | 2018-04-10 | 1 | -6/+6 |
* | BaseTools: defaultdict(set) allows us to just add to the set | Carsey, Jaben | 2018-04-10 | 1 | -8/+5 |
* | BaseTools: small cleanup | Carsey, Jaben | 2018-04-08 | 1 | -15/+0 |
* | BaseTools: Autogen - change from list to set | Carsey, Jaben | 2018-04-08 | 1 | -21/+15 |
* | BaseTools: Autogen - move RegEx compile | Carsey, Jaben | 2018-04-08 | 1 | -7/+15 |