-
Notifications
You must be signed in to change notification settings - Fork 2
/
terms.dict
4973 lines (4973 loc) · 55.4 KB
/
terms.dict
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
abi
abis
abstract
abstract class
abstract factory
abstract syntax tree
access
access control
accessibility
access modifiers
access specifier
access token
accesstokens
access vba
accountmanager
accumulate
accumulator
acid
ack
acl
acr
action
actioncable
actioncontroller
actionfilterattribute
actionlink
actionlistener
actionmailer
actionscript
activechart
active directory
active form
activerecord
activereports
activity state
actor
adal.js
adapter
adb
addchild
add in
addition
addressbook
addressof
adhoc polymorphism
admin
administrator
admob
adobe
adodb
ado.net
adserver
adventureworks
aem
aes gcm
affiliate
afnetworking
afnetworking
afsslpinningmodecertificate
agda
aggregate
aggregation
aggregation framework
ag grid
ahk
ajax
ajax request
akamai
akka
akka cluster
akka.net
akka.net cluster
akka persistence
akka stream
alamofire
alarmmanager
alembic
alertdialog
alexa
alexa skills kit
alfresco
alfresco share
alfresco webscripts
algolia
alias
alignment
allocation
allocator
alm
alpha
alpha beta pruning
alpine
amazon
amazon cloudformation
amazon cognito
amazon dynamodb
amazon ec
amazon elb
amazon emr
amazon kinesis
amazon lambda
amazon redshift
amazon sns
amazon swf
amazon vpc
amazon web services
ambiguous call
amd
amqp
anaconda
anagram
analysis
analytics
anchor
android
android actionbar
android actionbar compat
android actionmode
android activity
android adapter
android animation
android appbarlayout
android asynctask
android audiomanager
android background
android bitmap
android broadcastreceiver
android build type
android calendar
android camera
android camera
android canvas
android cardview
android cast api
android collapsingtoolbar
android color
android constraintlayout
android contentprovider
android contentresolver
android coordinatorlayout
android custom view
android database
android databinding
android datepicker
android designer
android design library
android dialog
android drawable
android edittext
android emulator
android espresso
android ffmpeg
android file
android fileprovider
android filterable
android fingerprint api
android fragmentactivity
android fragmentmanager
android fragments
android gallery
android gesture
android glide
android gps
android gradle
android graphics
android gridview
android imageview
android inapp purchase
android inflate
android instant run
android intent
android intentservice
android junit
android keystore
android layout
android layoutparams
android lifecycle
android loader
android.lollipop
android. .lollipop
android manifest
android maps
android maps v
android.marshmallow
android mediaplayer
android mediascanner
android.mk
android music player
android n
android navigation bar
android navigation drawer
android ndk
android networking
android notifications
android.nougat
android pay
android pendingintent
android permissions
android popupwindow
android proguard
android resources
android screen
android sdcard
android sdk tools
android search
android searchmanager
android security
android service
android sharedpreferences
android snackbar
android softkeyboard
android source
android sqlite
android statusbar
android studio
android studio.
android styles
android support design
android support library
android switch
android tablayout
android tabs
android testing
android textinputlayout
android theme
android timepicker
android toolbar
android transitions
android tv
android vectordrawable
android view
android viewholder
android viewpager
android volley
android wear
android wear data api
android webview
android wifi
android windowmanager
android xml
angle
angular
angularaot
angularchangedetection
angularcli
angular cli
angularcompiler
angular compiler cli
angularcomponents
angular components
angular directive
angulardirectives
angularfire
angularfire
angularforms
angularhttp
angularjs
angularjs
angularjs.
angularjs components
angularjs directive
angularjs e e
angularjs ng repeat
angularjs scope
angularjs track by
angularjs validation
angularmaterial
angularmaterial
angular material
angular material
angularmdl
angularmodules
angular ng if
angular ngmodel
angular permission
angularpipe
angular promise
angularproviders
angularrouter
angularrouter
angularrouting
angular routing
angularservices
angular services
angularstrap
angulartemplate
angulartesting
angular ui bootstrap
angular ui router
angular ui typeahead
angularuniversal
angularupgrade
angular viewencapsulation
animated gif
animation
annotations
anomaly detection
anonymous class
anonymous function
anonymous types
ansi
ansible
ansible playbook
ansi colors
ansi escape
ant
ant contrib
antivirus
antivirus integration
antlr
antlr
aot
apache
apache apex
apache camel
apache commons lang
apache commons lang
apachedds
apache flink
apache httpclient.x
apache kafka
apache kafka connect
apache kafka streams
apache karaf
apache pig
apache poi
apache spark
apache spark ml
apache spark mllib
apache spark sql
apache storm
apache stringutils
apache tez
apache zeppelin
apache zookeeper
apartmentstate
apcu
apdu
apex
api
api.ai
api design
apigee
apigee
apk
app
appcelerator
appcelerator hyperloop
appcelerator titanium
appcompat
appcompatactivity
appcompat vr
appcontainer
appdata
app engine flexible
app engine ndb
app extension
app group
app id
appium
appium
appkit
apple
applepay
apple push notifications
applescript
apple vpp
apple watch
applicationcontext
application pool
apply
appserver
app store
appstore approval
appstore sandbox
apriori
apscheduler
arabic
arangodb
arbitrary precision
arcgis
arcgis js api
architecture
archive
arcives
arduino
arduino ide
arduino uno
arearange
arg
argonaut
argparse
argument dependent lookup
arguments
argv
arithmetic expressions
arm
arquillian
arrayaccess
arraybuffer
array formulas
arraylist
arrays
arrow functions
arrows
artifactory
artifacts
artificial intelligence
ascii
ascx
asp classic
aspectj
aspectj maven plugin
aspect ratio
asp.net
asp.net core
asp.net core.
asp.net core localization
asp.net core middleware
asp.net core mvc
asp.net core webapi
asp.net identity
asp.net mvc
asp.net mvc
asp.net mvc apiexplorer
asp.net mvc filters
asp.net mvc scaffolding
asp.net web api
asp.net web api
asp.net web api routing
aspose
aspose.words
assembly
assets
assignment operator
associated types
associativity
asymptotic complexity
async await
asynchronous
atexit
atlassian sourcetree
atom editor
atomic
attachconsole
attr
attributes
audio
audio processing
audio recording
audiotoolbox
augmented reality
aurelia
aurelia binding
aurelia bundling
aurelia cli
aurelia framework
aurelia router
auth
authentication
authenticator
authorization
authorize
authorize attribute
auto
autobahn
autoboxing
autocad
autocloseable
autocomplete
autocompletetextview
autoconfiguration
autofac
autofocus
autohotkey
autolayout
autolayout
autoload
automapper
automated tests
automatic ref counting
automation
automator
autoresize
autoresizingmask
autorest
auto rotation
autoscaling
autotools
autowired
avasset
avassetexportsession
avaudioplayer
avcaptureoutput
avd
average
avfoundation
avmutablecomposition
avplayer
avplayerviewcontroller
avr
avro
avx
awk
aws
aws api gateway
aws code deploy
aws kinesis firehose
aws lambda
aws rds
axapta
az application insights
azure
azuread
azure data lake
azure diagnostics
azure documentdb
azure functions
azure iot sdk
azure keyvault
azure media services
azure notificationhub
azure powershell
azure resource manager
azureservicebus
azure servicebus queues
azure service fabric
azure storage blobs
azure virtual machine
azure vm scale set
azure web app service
azure webjobs
azure webjobssdk
azure web sites
babel
babeljs
babel node
backbone.js
backend
background
background audio
background color
background image
background process
background service
backpropagation
backreference
backslash
backtracking
backup
backwards compatibility
bamboo
bar chart
barcode
base
base class
bash
batch file
batch insert
batch processing
bayesian
bazel
b b
bbox
bcrypt
bdd
beacon
bean validation
beautifier
beautifulsoup
becomefirstresponder
belongsto
benchmarking
beta
bezier curve
bids
bigcommerce
bigdata
biginteger
bignum
big o
billing
binary
binaryfiles
binaryformatter
binary search tree
binary tree
binding
bing api
bing maps
binning
bins
binutils
bioconductor
bioinformatics
bipartite
bit
bitboard
bitbucket
bitbucket pipelines
bitcode
bit fields
bit manipulation
bitmap
bitnami
bits
bit shift
bitwise operators
blackjack
blade
blank line
blink
blob
blobstore
block
block cipher
blocking
blockingcollection
blockly
blogs
bluebird
bluecove
blueimp
blueprint
bluetooth
bluetooth lowenergy
bochs
bokeh
bookdown
bookmarklet
bookmarks
boolean
boolean expression
boost
boost asio
boost fusion
boost mpl
boost python
boost spirit
boost thread
boost variant
bootbox
boot docker
bootloader
bootstrap
bootstrap modal
bootstrap table
bootstrap typeahead
border
botframework
boto
bots
bottle
bottom sheet
bottom up
bounds checker
bower
bower install
box d
boxplot
box shadow
bpf
br
brace initialization
branch
branching strategy
branch prediction
break
breakout
broadcast
broccolijs
browser
browser automation
browser cache
browser history
browserify
browser link
browser sync
brute force
bs
bsd
bstr
buffer
buffering
buffer overflow
build
buildconfiguration
build.gradle
build script
built in
built in types
bulkinsert
bundle
bundler
button
bxslider
byte
bytearray
bytebuffer
bytecode
c
c#
c#.
c++
caanimation
cabasicanimation
caching
caffe
cagradientlayer
cakephp
cakephp
cakephp.
cakephp.x
calabash
calabash
calabash android
calayer
calc
calculated columns
calculus
calendar
calibration
callback
camelcasing
camera
camera calibration
can
canny operator
canvas
captcha
cardarrayadapter
card.io
cardslib
caret
carousel
cart
cas
casablanca
case
cashapelayer
casperjs
cassandra
casting
castle windsor
catamorphism
category theory
catel
c++builder
c++ cx
cde
cdi
cefsharp
celery
cell formatting
centering
centos
centos
ceph
cerberus
certificate
cesium
c++ faq
cfml
cgcontext
cglayer
cgpath
cgpoint
cgroups
chai
chained select
channel
channelfactory
char
character
character codes
character encoding
charles
chart.js
chart.js
charts
charts
chat
chatbot
checkbox
checkbox
checkboxes
checked exceptions
checkerframework
checkpointing
checksum
cherry pick
chess
child process
children
childviewcontroller
chmod
chocolatey
choropleth
chromebook
chromecast
chromium
chromium embedded
chrono
chroot
cidr
cidr netmask
cifilter
cin
circe
circleci
circuits framework
circular dependency
ckan
claims based identity
clang
clang++
clang format
class
classcastexception
classification
classloader
classname
classnotfoundexception
classpath
clearcase
clearcase ucm
cli
clickonce
clip
clip path
cllocationmanager
clojure
clojurescript
closures
cloud
cloudant
cloudera cdh
cloudflare
cloudformation
cloudfoundry
cloudhub
cloudide
cloudinary
cloudkit
clr
cluster analysis
cluster computing
cmake
cmath
cmd
cmdlets
cmis
cncontact
cntk
cocoa
cocoapods
cocoa touch
cocos d android
cocos d iphone
cocos d x
cocos d x.
code analysis
codeception
code duplication
code generation
codeigniter
codelite
codenameone
codesign
code signing
code signing certificate
coding style
coffeescript
coin change
coldfusion
collapsingtoolbarlayout
collections
collectors
collision
collision detection
colorbar
colors
color scheme
colspan
com
combinations
combinatorics
combinators
combobox
com interop
command
commandbar
commandbinding
command line
command line arguments
command line interface
command line parser
command line tool
command prompt
comma operator
comments
commit
commonjs
commonschunkplugin
common table expression
communication
comonad
compact framework
comparator
compare
comparison
comparison operators
compatibility
compcert
compilation
compiler bug
compiler construction
compiler errors
compiler optimization
compiler warnings
compile time
compile time constant
completionhandler
complexity theory
complextype
components
composer php
compositetype
compression
compss
computed properties
computer science
computer vision
concat
concatenation
concourse
concurrency
concurrent.futures
concurrenthashmap
concurrentmodification
concurrent programming
conda
conditional
conditional formatting
conditional operator
condition variable
confidence interval
config
configuration
configurationelementcollection
confluent
connection
connection pooling
connection string
console application
console.log
const
constants
constexpr
constraint layout
constraints
constructor
consul
contactless smartcard
contacts
containers
contenteditable
content management system
content security policy
content type
contextmenu
context sensitive grammar
continuation
continuous integration
contorls
contrib
control
controller
controllers
conversion operator
converter
conv neural network
convolution
cookies
coordinates
copy
copy constructor
copy paste
coq
cordova
cordova plugins
core
core animation
core audio
core bluetooth
coreclr
core data
core foundation
core graphics
core image