google_hash 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (85) hide show
  1. data/README +21 -0
  2. data/Rakefile +11 -0
  3. data/VERSION +1 -0
  4. data/ext/extconf.rb +15 -0
  5. data/ext/go.cpp +109 -0
  6. data/ext/sparsehash-1.5.2/AUTHORS +2 -0
  7. data/ext/sparsehash-1.5.2/COPYING +28 -0
  8. data/ext/sparsehash-1.5.2/ChangeLog +167 -0
  9. data/ext/sparsehash-1.5.2/INSTALL +236 -0
  10. data/ext/sparsehash-1.5.2/Makefile.am +157 -0
  11. data/ext/sparsehash-1.5.2/Makefile.in +1019 -0
  12. data/ext/sparsehash-1.5.2/NEWS +0 -0
  13. data/ext/sparsehash-1.5.2/README +149 -0
  14. data/ext/sparsehash-1.5.2/README.windows +25 -0
  15. data/ext/sparsehash-1.5.2/TODO +28 -0
  16. data/ext/sparsehash-1.5.2/aclocal.m4 +868 -0
  17. data/ext/sparsehash-1.5.2/compile +99 -0
  18. data/ext/sparsehash-1.5.2/config.guess +1516 -0
  19. data/ext/sparsehash-1.5.2/config.sub +1626 -0
  20. data/ext/sparsehash-1.5.2/configure +8054 -0
  21. data/ext/sparsehash-1.5.2/configure.ac +74 -0
  22. data/ext/sparsehash-1.5.2/depcomp +530 -0
  23. data/ext/sparsehash-1.5.2/doc/dense_hash_map.html +1591 -0
  24. data/ext/sparsehash-1.5.2/doc/dense_hash_set.html +1445 -0
  25. data/ext/sparsehash-1.5.2/doc/designstyle.css +115 -0
  26. data/ext/sparsehash-1.5.2/doc/implementation.html +365 -0
  27. data/ext/sparsehash-1.5.2/doc/index.html +69 -0
  28. data/ext/sparsehash-1.5.2/doc/performance.html +96 -0
  29. data/ext/sparsehash-1.5.2/doc/sparse_hash_map.html +1527 -0
  30. data/ext/sparsehash-1.5.2/doc/sparse_hash_set.html +1376 -0
  31. data/ext/sparsehash-1.5.2/doc/sparsetable.html +1393 -0
  32. data/ext/sparsehash-1.5.2/experimental/Makefile +9 -0
  33. data/ext/sparsehash-1.5.2/experimental/README +14 -0
  34. data/ext/sparsehash-1.5.2/experimental/example.c +54 -0
  35. data/ext/sparsehash-1.5.2/experimental/libchash.c +1537 -0
  36. data/ext/sparsehash-1.5.2/experimental/libchash.h +252 -0
  37. data/ext/sparsehash-1.5.2/google-sparsehash.sln +47 -0
  38. data/ext/sparsehash-1.5.2/install-sh +323 -0
  39. data/ext/sparsehash-1.5.2/m4/acx_pthread.m4 +363 -0
  40. data/ext/sparsehash-1.5.2/m4/google_namespace.m4 +42 -0
  41. data/ext/sparsehash-1.5.2/m4/namespaces.m4 +15 -0
  42. data/ext/sparsehash-1.5.2/m4/stl_hash.m4 +70 -0
  43. data/ext/sparsehash-1.5.2/m4/stl_hash_fun.m4 +36 -0
  44. data/ext/sparsehash-1.5.2/m4/stl_namespace.m4 +25 -0
  45. data/ext/sparsehash-1.5.2/missing +360 -0
  46. data/ext/sparsehash-1.5.2/mkinstalldirs +158 -0
  47. data/ext/sparsehash-1.5.2/packages/deb.sh +74 -0
  48. data/ext/sparsehash-1.5.2/packages/deb/README +7 -0
  49. data/ext/sparsehash-1.5.2/packages/deb/changelog +107 -0
  50. data/ext/sparsehash-1.5.2/packages/deb/compat +1 -0
  51. data/ext/sparsehash-1.5.2/packages/deb/control +17 -0
  52. data/ext/sparsehash-1.5.2/packages/deb/copyright +35 -0
  53. data/ext/sparsehash-1.5.2/packages/deb/docs +16 -0
  54. data/ext/sparsehash-1.5.2/packages/deb/rules +117 -0
  55. data/ext/sparsehash-1.5.2/packages/deb/sparsehash.dirs +2 -0
  56. data/ext/sparsehash-1.5.2/packages/deb/sparsehash.install +2 -0
  57. data/ext/sparsehash-1.5.2/packages/rpm.sh +86 -0
  58. data/ext/sparsehash-1.5.2/packages/rpm/rpm.spec +61 -0
  59. data/ext/sparsehash-1.5.2/src/config.h.in +131 -0
  60. data/ext/sparsehash-1.5.2/src/config.h.include +23 -0
  61. data/ext/sparsehash-1.5.2/src/google/dense_hash_map +310 -0
  62. data/ext/sparsehash-1.5.2/src/google/dense_hash_set +287 -0
  63. data/ext/sparsehash-1.5.2/src/google/sparse_hash_map +294 -0
  64. data/ext/sparsehash-1.5.2/src/google/sparse_hash_set +275 -0
  65. data/ext/sparsehash-1.5.2/src/google/sparsehash/densehashtable.h +1062 -0
  66. data/ext/sparsehash-1.5.2/src/google/sparsehash/sparsehashtable.h +1015 -0
  67. data/ext/sparsehash-1.5.2/src/google/sparsetable +1468 -0
  68. data/ext/sparsehash-1.5.2/src/google/type_traits.h +250 -0
  69. data/ext/sparsehash-1.5.2/src/hashtable_unittest.cc +1375 -0
  70. data/ext/sparsehash-1.5.2/src/simple_test.cc +103 -0
  71. data/ext/sparsehash-1.5.2/src/sparsetable_unittest.cc +696 -0
  72. data/ext/sparsehash-1.5.2/src/time_hash_map.cc +488 -0
  73. data/ext/sparsehash-1.5.2/src/type_traits_unittest.cc +492 -0
  74. data/ext/sparsehash-1.5.2/src/windows/config.h +149 -0
  75. data/ext/sparsehash-1.5.2/src/windows/google/sparsehash/sparseconfig.h +32 -0
  76. data/ext/sparsehash-1.5.2/src/windows/port.cc +63 -0
  77. data/ext/sparsehash-1.5.2/src/windows/port.h +81 -0
  78. data/ext/sparsehash-1.5.2/src/words +8944 -0
  79. data/ext/sparsehash-1.5.2/vsprojects/hashtable_unittest/hashtable_unittest.vcproj +187 -0
  80. data/ext/sparsehash-1.5.2/vsprojects/sparsetable_unittest/sparsetable_unittest.vcproj +172 -0
  81. data/ext/sparsehash-1.5.2/vsprojects/time_hash_map/time_hash_map.vcproj +187 -0
  82. data/ext/sparsehash-1.5.2/vsprojects/type_traits_unittest/type_traits_unittest.vcproj +169 -0
  83. data/ext/test.rb +10 -0
  84. data/test/spec.go +70 -0
  85. metadata +147 -0
@@ -0,0 +1,187 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="7.10"
5
+ Name="hashtable_unittest"
6
+ ProjectGUID="{FCDB3718-F01C-4DE4-B9F5-E10F2C5C0535}"
7
+ Keyword="Win32Proj">
8
+ <Platforms>
9
+ <Platform
10
+ Name="Win32"/>
11
+ </Platforms>
12
+ <Configurations>
13
+ <Configuration
14
+ Name="Debug|Win32"
15
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
16
+ IntermediateDirectory="$(ConfigurationName)"
17
+ ConfigurationType="1"
18
+ CharacterSet="2">
19
+ <Tool
20
+ Name="VCCLCompilerTool"
21
+ Optimization="0"
22
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
23
+ MinimalRebuild="TRUE"
24
+ BasicRuntimeChecks="3"
25
+ RuntimeLibrary="5"
26
+ UsePrecompiledHeader="0"
27
+ WarningLevel="3"
28
+ Detect64BitPortabilityProblems="TRUE"
29
+ DebugInformationFormat="4"/>
30
+ <Tool
31
+ Name="VCCustomBuildTool"/>
32
+ <Tool
33
+ Name="VCLinkerTool"
34
+ OutputFile="$(OutDir)/hashtable_unittest.exe"
35
+ LinkIncremental="2"
36
+ GenerateDebugInformation="TRUE"
37
+ ProgramDatabaseFile="$(OutDir)/hashtable_unittest.pdb"
38
+ SubSystem="1"
39
+ TargetMachine="1"/>
40
+ <Tool
41
+ Name="VCMIDLTool"/>
42
+ <Tool
43
+ Name="VCPostBuildEventTool"/>
44
+ <Tool
45
+ Name="VCPreBuildEventTool"/>
46
+ <Tool
47
+ Name="VCPreLinkEventTool"/>
48
+ <Tool
49
+ Name="VCResourceCompilerTool"/>
50
+ <Tool
51
+ Name="VCWebServiceProxyGeneratorTool"/>
52
+ <Tool
53
+ Name="VCXMLDataGeneratorTool"/>
54
+ <Tool
55
+ Name="VCWebDeploymentTool"/>
56
+ <Tool
57
+ Name="VCManagedWrapperGeneratorTool"/>
58
+ <Tool
59
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
60
+ </Configuration>
61
+ <Configuration
62
+ Name="Release|Win32"
63
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
64
+ IntermediateDirectory="$(ConfigurationName)"
65
+ ConfigurationType="1"
66
+ CharacterSet="2">
67
+ <Tool
68
+ Name="VCCLCompilerTool"
69
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
70
+ RuntimeLibrary="4"
71
+ UsePrecompiledHeader="0"
72
+ WarningLevel="3"
73
+ Detect64BitPortabilityProblems="TRUE"
74
+ DebugInformationFormat="3"/>
75
+ <Tool
76
+ Name="VCCustomBuildTool"/>
77
+ <Tool
78
+ Name="VCLinkerTool"
79
+ OutputFile="$(OutDir)/hashtable_unittest.exe"
80
+ LinkIncremental="1"
81
+ GenerateDebugInformation="TRUE"
82
+ SubSystem="1"
83
+ OptimizeReferences="2"
84
+ EnableCOMDATFolding="2"
85
+ TargetMachine="1"/>
86
+ <Tool
87
+ Name="VCMIDLTool"/>
88
+ <Tool
89
+ Name="VCPostBuildEventTool"/>
90
+ <Tool
91
+ Name="VCPreBuildEventTool"/>
92
+ <Tool
93
+ Name="VCPreLinkEventTool"/>
94
+ <Tool
95
+ Name="VCResourceCompilerTool"/>
96
+ <Tool
97
+ Name="VCWebServiceProxyGeneratorTool"/>
98
+ <Tool
99
+ Name="VCXMLDataGeneratorTool"/>
100
+ <Tool
101
+ Name="VCWebDeploymentTool"/>
102
+ <Tool
103
+ Name="VCManagedWrapperGeneratorTool"/>
104
+ <Tool
105
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
106
+ </Configuration>
107
+ </Configurations>
108
+ <References>
109
+ </References>
110
+ <Files>
111
+ <Filter
112
+ Name="Source Files"
113
+ Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
114
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
115
+ <File
116
+ RelativePath="..\..\src\hashtable_unittest.cc">
117
+ <FileConfiguration
118
+ Name="Debug|Win32">
119
+ <Tool
120
+ Name="VCCLCompilerTool"
121
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
122
+ </FileConfiguration>
123
+ <FileConfiguration
124
+ Name="Release|Win32">
125
+ <Tool
126
+ Name="VCCLCompilerTool"
127
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
128
+ </FileConfiguration>
129
+ </File>
130
+ <File
131
+ RelativePath="..\..\src\windows\port.cc">
132
+ <FileConfiguration
133
+ Name="Debug|Win32">
134
+ <Tool
135
+ Name="VCCLCompilerTool"
136
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
137
+ </FileConfiguration>
138
+ <FileConfiguration
139
+ Name="Release|Win32">
140
+ <Tool
141
+ Name="VCCLCompilerTool"
142
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
143
+ </FileConfiguration>
144
+ </File>
145
+ </Filter>
146
+ <Filter
147
+ Name="Header Files"
148
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
149
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
150
+ <File
151
+ RelativePath="..\..\src\windows\config.h">
152
+ </File>
153
+ <File
154
+ RelativePath="..\..\src\google\dense_hash_map">
155
+ </File>
156
+ <File
157
+ RelativePath="..\..\src\google\dense_hash_set">
158
+ </File>
159
+ <File
160
+ RelativePath="..\..\src\google\sparsehash\densehashtable.h">
161
+ </File>
162
+ <File
163
+ RelativePath="..\..\src\windows\port.h">
164
+ </File>
165
+ <File
166
+ RelativePath="..\..\src\google\sparse_hash_map">
167
+ </File>
168
+ <File
169
+ RelativePath="..\..\src\google\sparse_hash_set">
170
+ </File>
171
+ <File
172
+ RelativePath="..\..\src\windows\google\sparsehash\sparseconfig.h">
173
+ </File>
174
+ <File
175
+ RelativePath="..\..\src\google\sparsehash\sparsehashtable.h">
176
+ </File>
177
+ <File
178
+ RelativePath="..\..\src\google\sparsetable">
179
+ </File>
180
+ <File
181
+ RelativePath="..\..\src\google\type_traits.h">
182
+ </File>
183
+ </Filter>
184
+ </Files>
185
+ <Globals>
186
+ </Globals>
187
+ </VisualStudioProject>
@@ -0,0 +1,172 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="7.10"
5
+ Name="sparsetable_unittest"
6
+ ProjectGUID="{E420867B-8BFA-4739-99EC-E008AB762FF9}"
7
+ Keyword="Win32Proj">
8
+ <Platforms>
9
+ <Platform
10
+ Name="Win32"/>
11
+ </Platforms>
12
+ <Configurations>
13
+ <Configuration
14
+ Name="Debug|Win32"
15
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
16
+ IntermediateDirectory="$(ConfigurationName)"
17
+ ConfigurationType="1"
18
+ CharacterSet="2">
19
+ <Tool
20
+ Name="VCCLCompilerTool"
21
+ Optimization="0"
22
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
23
+ MinimalRebuild="TRUE"
24
+ BasicRuntimeChecks="3"
25
+ RuntimeLibrary="5"
26
+ UsePrecompiledHeader="0"
27
+ WarningLevel="3"
28
+ Detect64BitPortabilityProblems="TRUE"
29
+ DebugInformationFormat="4"/>
30
+ <Tool
31
+ Name="VCCustomBuildTool"/>
32
+ <Tool
33
+ Name="VCLinkerTool"
34
+ OutputFile="$(OutDir)/sparsetable_unittest.exe"
35
+ LinkIncremental="2"
36
+ GenerateDebugInformation="TRUE"
37
+ ProgramDatabaseFile="$(OutDir)/sparsetable_unittest.pdb"
38
+ SubSystem="1"
39
+ TargetMachine="1"/>
40
+ <Tool
41
+ Name="VCMIDLTool"/>
42
+ <Tool
43
+ Name="VCPostBuildEventTool"/>
44
+ <Tool
45
+ Name="VCPreBuildEventTool"/>
46
+ <Tool
47
+ Name="VCPreLinkEventTool"/>
48
+ <Tool
49
+ Name="VCResourceCompilerTool"/>
50
+ <Tool
51
+ Name="VCWebServiceProxyGeneratorTool"/>
52
+ <Tool
53
+ Name="VCXMLDataGeneratorTool"/>
54
+ <Tool
55
+ Name="VCWebDeploymentTool"/>
56
+ <Tool
57
+ Name="VCManagedWrapperGeneratorTool"/>
58
+ <Tool
59
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
60
+ </Configuration>
61
+ <Configuration
62
+ Name="Release|Win32"
63
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
64
+ IntermediateDirectory="$(ConfigurationName)"
65
+ ConfigurationType="1"
66
+ CharacterSet="2">
67
+ <Tool
68
+ Name="VCCLCompilerTool"
69
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
70
+ RuntimeLibrary="4"
71
+ UsePrecompiledHeader="0"
72
+ WarningLevel="3"
73
+ Detect64BitPortabilityProblems="TRUE"
74
+ DebugInformationFormat="3"/>
75
+ <Tool
76
+ Name="VCCustomBuildTool"/>
77
+ <Tool
78
+ Name="VCLinkerTool"
79
+ OutputFile="$(OutDir)/sparsetable_unittest.exe"
80
+ LinkIncremental="1"
81
+ GenerateDebugInformation="TRUE"
82
+ SubSystem="1"
83
+ OptimizeReferences="2"
84
+ EnableCOMDATFolding="2"
85
+ TargetMachine="1"/>
86
+ <Tool
87
+ Name="VCMIDLTool"/>
88
+ <Tool
89
+ Name="VCPostBuildEventTool"/>
90
+ <Tool
91
+ Name="VCPreBuildEventTool"/>
92
+ <Tool
93
+ Name="VCPreLinkEventTool"/>
94
+ <Tool
95
+ Name="VCResourceCompilerTool"/>
96
+ <Tool
97
+ Name="VCWebServiceProxyGeneratorTool"/>
98
+ <Tool
99
+ Name="VCXMLDataGeneratorTool"/>
100
+ <Tool
101
+ Name="VCWebDeploymentTool"/>
102
+ <Tool
103
+ Name="VCManagedWrapperGeneratorTool"/>
104
+ <Tool
105
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
106
+ </Configuration>
107
+ </Configurations>
108
+ <References>
109
+ </References>
110
+ <Files>
111
+ <Filter
112
+ Name="Source Files"
113
+ Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
114
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
115
+ <File
116
+ RelativePath="..\..\src\windows\port.cc">
117
+ <FileConfiguration
118
+ Name="Debug|Win32">
119
+ <Tool
120
+ Name="VCCLCompilerTool"
121
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
122
+ </FileConfiguration>
123
+ <FileConfiguration
124
+ Name="Release|Win32">
125
+ <Tool
126
+ Name="VCCLCompilerTool"
127
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
128
+ </FileConfiguration>
129
+ </File>
130
+ <File
131
+ RelativePath="..\..\src\sparsetable_unittest.cc">
132
+ <FileConfiguration
133
+ Name="Debug|Win32">
134
+ <Tool
135
+ Name="VCCLCompilerTool"
136
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
137
+ </FileConfiguration>
138
+ <FileConfiguration
139
+ Name="Release|Win32">
140
+ <Tool
141
+ Name="VCCLCompilerTool"
142
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
143
+ </FileConfiguration>
144
+ </File>
145
+ </Filter>
146
+ <Filter
147
+ Name="Header Files"
148
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
149
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
150
+ <File
151
+ RelativePath="..\..\src\windows\config.h">
152
+ </File>
153
+ <File
154
+ RelativePath="..\..\src\windows\port.h">
155
+ </File>
156
+ <File
157
+ RelativePath="..\..\src\windows\google\sparsehash\sparseconfig.h">
158
+ </File>
159
+ <File
160
+ RelativePath="..\..\src\google\sparsehash\sparsehashtable.h">
161
+ </File>
162
+ <File
163
+ RelativePath="..\..\src\google\sparsetable">
164
+ </File>
165
+ <File
166
+ RelativePath="..\..\src\google\type_traits.h">
167
+ </File>
168
+ </Filter>
169
+ </Files>
170
+ <Globals>
171
+ </Globals>
172
+ </VisualStudioProject>
@@ -0,0 +1,187 @@
1
+ <?xml version="1.0" encoding="Windows-1252"?>
2
+ <VisualStudioProject
3
+ ProjectType="Visual C++"
4
+ Version="7.10"
5
+ Name="time_hash_map"
6
+ ProjectGUID="{A74E5DB8-5295-487A-AB1D-23859F536F45}"
7
+ Keyword="Win32Proj">
8
+ <Platforms>
9
+ <Platform
10
+ Name="Win32"/>
11
+ </Platforms>
12
+ <Configurations>
13
+ <Configuration
14
+ Name="Debug|Win32"
15
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
16
+ IntermediateDirectory="$(ConfigurationName)"
17
+ ConfigurationType="1"
18
+ CharacterSet="2">
19
+ <Tool
20
+ Name="VCCLCompilerTool"
21
+ Optimization="0"
22
+ PreprocessorDefinitions="WIN32;_DEBUG;_CONSOLE"
23
+ MinimalRebuild="TRUE"
24
+ BasicRuntimeChecks="3"
25
+ RuntimeLibrary="5"
26
+ UsePrecompiledHeader="0"
27
+ WarningLevel="3"
28
+ Detect64BitPortabilityProblems="TRUE"
29
+ DebugInformationFormat="4"/>
30
+ <Tool
31
+ Name="VCCustomBuildTool"/>
32
+ <Tool
33
+ Name="VCLinkerTool"
34
+ OutputFile="$(OutDir)/time_hash_map.exe"
35
+ LinkIncremental="2"
36
+ GenerateDebugInformation="TRUE"
37
+ ProgramDatabaseFile="$(OutDir)/time_hash_map.pdb"
38
+ SubSystem="1"
39
+ TargetMachine="1"/>
40
+ <Tool
41
+ Name="VCMIDLTool"/>
42
+ <Tool
43
+ Name="VCPostBuildEventTool"/>
44
+ <Tool
45
+ Name="VCPreBuildEventTool"/>
46
+ <Tool
47
+ Name="VCPreLinkEventTool"/>
48
+ <Tool
49
+ Name="VCResourceCompilerTool"/>
50
+ <Tool
51
+ Name="VCWebServiceProxyGeneratorTool"/>
52
+ <Tool
53
+ Name="VCXMLDataGeneratorTool"/>
54
+ <Tool
55
+ Name="VCWebDeploymentTool"/>
56
+ <Tool
57
+ Name="VCManagedWrapperGeneratorTool"/>
58
+ <Tool
59
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
60
+ </Configuration>
61
+ <Configuration
62
+ Name="Release|Win32"
63
+ OutputDirectory="$(SolutionDir)$(ConfigurationName)"
64
+ IntermediateDirectory="$(ConfigurationName)"
65
+ ConfigurationType="1"
66
+ CharacterSet="2">
67
+ <Tool
68
+ Name="VCCLCompilerTool"
69
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE"
70
+ RuntimeLibrary="4"
71
+ UsePrecompiledHeader="0"
72
+ WarningLevel="3"
73
+ Detect64BitPortabilityProblems="TRUE"
74
+ DebugInformationFormat="3"/>
75
+ <Tool
76
+ Name="VCCustomBuildTool"/>
77
+ <Tool
78
+ Name="VCLinkerTool"
79
+ OutputFile="$(OutDir)/time_hash_map.exe"
80
+ LinkIncremental="1"
81
+ GenerateDebugInformation="TRUE"
82
+ SubSystem="1"
83
+ OptimizeReferences="2"
84
+ EnableCOMDATFolding="2"
85
+ TargetMachine="1"/>
86
+ <Tool
87
+ Name="VCMIDLTool"/>
88
+ <Tool
89
+ Name="VCPostBuildEventTool"/>
90
+ <Tool
91
+ Name="VCPreBuildEventTool"/>
92
+ <Tool
93
+ Name="VCPreLinkEventTool"/>
94
+ <Tool
95
+ Name="VCResourceCompilerTool"/>
96
+ <Tool
97
+ Name="VCWebServiceProxyGeneratorTool"/>
98
+ <Tool
99
+ Name="VCXMLDataGeneratorTool"/>
100
+ <Tool
101
+ Name="VCWebDeploymentTool"/>
102
+ <Tool
103
+ Name="VCManagedWrapperGeneratorTool"/>
104
+ <Tool
105
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
106
+ </Configuration>
107
+ </Configurations>
108
+ <References>
109
+ </References>
110
+ <Files>
111
+ <Filter
112
+ Name="Source Files"
113
+ Filter="cpp;c;cxx;def;odl;idl;hpj;bat;asm;asmx"
114
+ UniqueIdentifier="{4FC737F1-C7A5-4376-A066-2A32D752A2FF}">
115
+ <File
116
+ RelativePath="..\..\src\windows\port.cc">
117
+ <FileConfiguration
118
+ Name="Debug|Win32">
119
+ <Tool
120
+ Name="VCCLCompilerTool"
121
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
122
+ </FileConfiguration>
123
+ <FileConfiguration
124
+ Name="Release|Win32">
125
+ <Tool
126
+ Name="VCCLCompilerTool"
127
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
128
+ </FileConfiguration>
129
+ </File>
130
+ <File
131
+ RelativePath="..\..\src\time_hash_map.cc">
132
+ <FileConfiguration
133
+ Name="Debug|Win32">
134
+ <Tool
135
+ Name="VCCLCompilerTool"
136
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
137
+ </FileConfiguration>
138
+ <FileConfiguration
139
+ Name="Release|Win32">
140
+ <Tool
141
+ Name="VCCLCompilerTool"
142
+ AdditionalIncludeDirectories="..\..\src\windows; ..\..\src"/>
143
+ </FileConfiguration>
144
+ </File>
145
+ </Filter>
146
+ <Filter
147
+ Name="Header Files"
148
+ Filter="h;hpp;hxx;hm;inl;inc;xsd"
149
+ UniqueIdentifier="{93995380-89BD-4b04-88EB-625FBE52EBFB}">
150
+ <File
151
+ RelativePath="..\..\src\windows\config.h">
152
+ </File>
153
+ <File
154
+ RelativePath="..\..\src\google\dense_hash_map">
155
+ </File>
156
+ <File
157
+ RelativePath="..\..\src\google\dense_hash_set">
158
+ </File>
159
+ <File
160
+ RelativePath="..\..\src\google\sparsehash\densehashtable.h">
161
+ </File>
162
+ <File
163
+ RelativePath="..\..\src\windows\port.h">
164
+ </File>
165
+ <File
166
+ RelativePath="..\..\src\google\sparse_hash_map">
167
+ </File>
168
+ <File
169
+ RelativePath="..\..\src\google\sparse_hash_set">
170
+ </File>
171
+ <File
172
+ RelativePath="..\..\src\windows\google\sparsehash\sparseconfig.h">
173
+ </File>
174
+ <File
175
+ RelativePath="..\..\src\google\sparsehash\sparsehashtable.h">
176
+ </File>
177
+ <File
178
+ RelativePath="..\..\src\google\sparsetable">
179
+ </File>
180
+ <File
181
+ RelativePath="..\..\src\google\type_traits.h">
182
+ </File>
183
+ </Filter>
184
+ </Files>
185
+ <Globals>
186
+ </Globals>
187
+ </VisualStudioProject>