Skip to content
This repository was archived by the owner on Mar 29, 2019. It is now read-only.

Commit 422ce79

Browse files
author
Zhang
committed
Init
0 parents  commit 422ce79

File tree

60,893 files changed

+8803270
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60,893 files changed

+8803270
-0
lines changed

.gitignore

Lines changed: 133 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,133 @@
1+
swift-nightly-install/
2+
swift-nightly-symroot/
3+
# Created by https://www.gitignore.io/api/macos,python
4+
5+
### macOS ###
6+
*.DS_Store
7+
.AppleDouble
8+
.LSOverride
9+
10+
# Icon must end with two \r
11+
Icon
12+
13+
# Thumbnails
14+
._*
15+
16+
# Files that might appear in the root of a volume
17+
.DocumentRevisions-V100
18+
.fseventsd
19+
.Spotlight-V100
20+
.TemporaryItems
21+
.Trashes
22+
.VolumeIcon.icns
23+
.com.apple.timemachine.donotpresent
24+
25+
# Directories potentially created on remote AFP share
26+
.AppleDB
27+
.AppleDesktop
28+
Network Trash Folder
29+
Temporary Items
30+
.apdisk
31+
32+
### Python ###
33+
# Byte-compiled / optimized / DLL files
34+
__pycache__/
35+
*.py[cod]
36+
*$py.class
37+
38+
# C extensions
39+
*.so
40+
41+
# Distribution / packaging
42+
.Python
43+
build/
44+
develop-eggs/
45+
dist/
46+
downloads/
47+
eggs/
48+
.eggs/
49+
lib/
50+
lib64/
51+
parts/
52+
sdist/
53+
var/
54+
wheels/
55+
*.egg-info/
56+
.installed.cfg
57+
*.egg
58+
59+
# PyInstaller
60+
# Usually these files are written by a python script from a template
61+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
62+
*.manifest
63+
*.spec
64+
65+
# Installer logs
66+
pip-log.txt
67+
pip-delete-this-directory.txt
68+
69+
# Unit test / coverage reports
70+
htmlcov/
71+
.tox/
72+
.coverage
73+
.coverage.*
74+
.cache
75+
.pytest_cache/
76+
nosetests.xml
77+
coverage.xml
78+
*.cover
79+
.hypothesis/
80+
81+
# Translations
82+
*.mo
83+
*.pot
84+
85+
# Flask stuff:
86+
instance/
87+
.webassets-cache
88+
89+
# Scrapy stuff:
90+
.scrapy
91+
92+
# Sphinx documentation
93+
docs/_build/
94+
95+
# PyBuilder
96+
target/
97+
98+
# Jupyter Notebook
99+
.ipynb_checkpoints
100+
101+
# pyenv
102+
.python-version
103+
104+
# celery beat schedule file
105+
celerybeat-schedule.*
106+
107+
# SageMath parsed files
108+
*.sage.py
109+
110+
# Environments
111+
.env
112+
.venv
113+
env/
114+
venv/
115+
ENV/
116+
env.bak/
117+
venv.bak/
118+
119+
# Spyder project settings
120+
.spyderproject
121+
.spyproject
122+
123+
# Rope project settings
124+
.ropeproject
125+
126+
# mkdocs documentation
127+
/site
128+
129+
# mypy
130+
.mypy_cache/
131+
132+
133+
# End of https://www.gitignore.io/api/macos,python

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Swift
2+
WIP. Need Xcode 9.3

clang/.arcconfig

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"project_id" : "clang",
3+
"conduit_uri" : "https://reviews.llvm.org/"
4+
}

clang/.clang-format

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
BasedOnStyle: LLVM

clang/.clang-tidy

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
Checks: '-*,clang-diagnostic-*,llvm-*,misc-*,-misc-unused-parameters,readability-identifier-naming'
2+
CheckOptions:
3+
- key: readability-identifier-naming.ClassCase
4+
value: CamelCase
5+
- key: readability-identifier-naming.EnumCase
6+
value: CamelCase
7+
- key: readability-identifier-naming.FunctionCase
8+
value: lowerCase
9+
- key: readability-identifier-naming.UnionCase
10+
value: CamelCase
11+
- key: readability-identifier-naming.VariableCase
12+
value: CamelCase

clang/.gitignore

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
#==============================================================================#
2+
# This file specifies intentionally untracked files that git should ignore.
3+
# See: http://www.kernel.org/pub/software/scm/git/docs/gitignore.html
4+
#
5+
# This file is intentionally different from the output of `git svn show-ignore`,
6+
# as most of those are useless.
7+
#==============================================================================#
8+
9+
#==============================================================================#
10+
# File extensions to be ignored anywhere in the tree.
11+
#==============================================================================#
12+
# Temp files created by most text editors.
13+
*~
14+
# Merge files created by git.
15+
*.orig
16+
# Byte compiled python modules.
17+
*.pyc
18+
# vim swap files
19+
.*.sw?
20+
.sw?
21+
22+
#==============================================================================#
23+
# Explicit files to ignore (only matches one).
24+
#==============================================================================#
25+
cscope.files
26+
cscope.out
27+
28+
#==============================================================================#
29+
# Directories to ignore (do not add trailing '/'s, they skip symlinks).
30+
#==============================================================================#
31+
# Clang extra user tools, which is tracked independently (clang-tools-extra).
32+
tools/extra
33+
# Sphinx build products
34+
docs/_build
35+
docs/analyzer/_build
36+
# debug info testsuite
37+
test/debuginfo-tests

0 commit comments

Comments
 (0)