make #includes consistent
commit6ec64e8bf9a7b4c8f2f31eb36928225071b7ba41
authorSara Golemon <sgolemon@fb.com>
Wed, 15 May 2013 19:36:25 +0000 (15 12:36 -0700)
committerSara Golemon <sgolemon@fb.com>
Wed, 15 May 2013 20:05:06 +0000 (15 13:05 -0700)
treed8b2e17a5e2f880b729841676de9517bf596d6f8
parentfef62f03a272f403b0ddf2e30eb4d4ac9a92c531
make #includes consistent

I was learning from @jdelong and he said that you should use
double quotes for local includes and angle brackets for library
includes. I asked why our code was the way it was, and he said he wanted
to clean it up. I beat him to it :)

Conflicts:

hphp/runtime/base/server/admin_request_handler.cpp
hphp/runtime/vm/named_entity.h
1223 files changed:
hphp/compiler/analysis/alias_manager.cpp
hphp/compiler/analysis/alias_manager.h
hphp/compiler/analysis/analysis_result.cpp
hphp/compiler/analysis/analysis_result.h
hphp/compiler/analysis/ast_walker.cpp
hphp/compiler/analysis/ast_walker.h
hphp/compiler/analysis/bit_set_vec.cpp
hphp/compiler/analysis/bit_set_vec.h
hphp/compiler/analysis/block_scope.cpp
hphp/compiler/analysis/block_scope.h
hphp/compiler/analysis/class_scope.cpp
hphp/compiler/analysis/class_scope.h
hphp/compiler/analysis/code_error.cpp
hphp/compiler/analysis/code_error.h
hphp/compiler/analysis/constant_table.cpp
hphp/compiler/analysis/constant_table.h
hphp/compiler/analysis/control_flow.cpp
hphp/compiler/analysis/control_flow.h
hphp/compiler/analysis/data_flow.cpp
hphp/compiler/analysis/data_flow.h
hphp/compiler/analysis/depth_first_visitor.h
hphp/compiler/analysis/dictionary.cpp
hphp/compiler/analysis/dictionary.h
hphp/compiler/analysis/emitter.cpp
hphp/compiler/analysis/emitter.h
hphp/compiler/analysis/expr_dict.cpp
hphp/compiler/analysis/expr_dict.h
hphp/compiler/analysis/file_scope.cpp
hphp/compiler/analysis/file_scope.h
hphp/compiler/analysis/function_container.cpp
hphp/compiler/analysis/function_container.h
hphp/compiler/analysis/function_scope.cpp
hphp/compiler/analysis/function_scope.h
hphp/compiler/analysis/live_dict.cpp
hphp/compiler/analysis/live_dict.h
hphp/compiler/analysis/peephole.cpp
hphp/compiler/analysis/peephole.h
hphp/compiler/analysis/ref_dict.cpp
hphp/compiler/analysis/ref_dict.h
hphp/compiler/analysis/symbol_table.cpp
hphp/compiler/analysis/symbol_table.h
hphp/compiler/analysis/type.cpp
hphp/compiler/analysis/type.h
hphp/compiler/analysis/variable_table.cpp
hphp/compiler/analysis/variable_table.h
hphp/compiler/builtin_symbols.cpp
hphp/compiler/builtin_symbols.h
hphp/compiler/code_generator.cpp
hphp/compiler/code_generator.h
hphp/compiler/compiler.cpp
hphp/compiler/construct.cpp
hphp/compiler/construct.h
hphp/compiler/expression/array_element_expression.cpp
hphp/compiler/expression/array_element_expression.h
hphp/compiler/expression/array_pair_expression.cpp
hphp/compiler/expression/array_pair_expression.h
hphp/compiler/expression/assignment_expression.cpp
hphp/compiler/expression/assignment_expression.h
hphp/compiler/expression/binary_op_expression.cpp
hphp/compiler/expression/binary_op_expression.h
hphp/compiler/expression/class_constant_expression.cpp
hphp/compiler/expression/class_constant_expression.h
hphp/compiler/expression/closure_expression.cpp
hphp/compiler/expression/closure_expression.h
hphp/compiler/expression/constant_expression.cpp
hphp/compiler/expression/constant_expression.h
hphp/compiler/expression/dynamic_function_call.cpp
hphp/compiler/expression/dynamic_function_call.h
hphp/compiler/expression/dynamic_variable.cpp
hphp/compiler/expression/dynamic_variable.h
hphp/compiler/expression/encaps_list_expression.cpp
hphp/compiler/expression/encaps_list_expression.h
hphp/compiler/expression/expression.cpp
hphp/compiler/expression/expression.h
hphp/compiler/expression/expression_list.cpp
hphp/compiler/expression/expression_list.h
hphp/compiler/expression/function_call.cpp
hphp/compiler/expression/function_call.h
hphp/compiler/expression/include_expression.cpp
hphp/compiler/expression/include_expression.h
hphp/compiler/expression/list_assignment.cpp
hphp/compiler/expression/list_assignment.h
hphp/compiler/expression/modifier_expression.cpp
hphp/compiler/expression/modifier_expression.h
hphp/compiler/expression/new_object_expression.cpp
hphp/compiler/expression/new_object_expression.h
hphp/compiler/expression/object_method_expression.cpp
hphp/compiler/expression/object_method_expression.h
hphp/compiler/expression/object_property_expression.cpp
hphp/compiler/expression/object_property_expression.h
hphp/compiler/expression/parameter_expression.cpp
hphp/compiler/expression/parameter_expression.h
hphp/compiler/expression/qop_expression.cpp
hphp/compiler/expression/qop_expression.h
hphp/compiler/expression/scalar_expression.cpp
hphp/compiler/expression/scalar_expression.h
hphp/compiler/expression/simple_function_call.cpp
hphp/compiler/expression/simple_function_call.h
hphp/compiler/expression/simple_variable.cpp
hphp/compiler/expression/simple_variable.h
hphp/compiler/expression/static_class_name.cpp
hphp/compiler/expression/static_class_name.h
hphp/compiler/expression/static_member_expression.cpp
hphp/compiler/expression/static_member_expression.h
hphp/compiler/expression/unary_op_expression.cpp
hphp/compiler/expression/unary_op_expression.h
hphp/compiler/expression/user_attribute.cpp
hphp/compiler/expression/user_attribute.h
hphp/compiler/expression/yield_expression.cpp
hphp/compiler/expression/yield_expression.h
hphp/compiler/hphp.h
hphp/compiler/option.cpp
hphp/compiler/option.h
hphp/compiler/package.cpp
hphp/compiler/package.h
hphp/compiler/parser/parser.cpp
hphp/compiler/parser/parser.h
hphp/compiler/statement/block_statement.cpp
hphp/compiler/statement/block_statement.h
hphp/compiler/statement/break_statement.cpp
hphp/compiler/statement/break_statement.h
hphp/compiler/statement/case_statement.cpp
hphp/compiler/statement/case_statement.h
hphp/compiler/statement/catch_statement.cpp
hphp/compiler/statement/catch_statement.h
hphp/compiler/statement/class_constant.cpp
hphp/compiler/statement/class_constant.h
hphp/compiler/statement/class_statement.cpp
hphp/compiler/statement/class_statement.h
hphp/compiler/statement/class_variable.cpp
hphp/compiler/statement/class_variable.h
hphp/compiler/statement/continue_statement.cpp
hphp/compiler/statement/continue_statement.h
hphp/compiler/statement/do_statement.cpp
hphp/compiler/statement/do_statement.h
hphp/compiler/statement/echo_statement.cpp
hphp/compiler/statement/echo_statement.h
hphp/compiler/statement/exp_statement.cpp
hphp/compiler/statement/exp_statement.h
hphp/compiler/statement/finally_statement.cpp
hphp/compiler/statement/finally_statement.h
hphp/compiler/statement/for_statement.cpp
hphp/compiler/statement/for_statement.h
hphp/compiler/statement/foreach_statement.cpp
hphp/compiler/statement/foreach_statement.h
hphp/compiler/statement/function_statement.cpp
hphp/compiler/statement/function_statement.h
hphp/compiler/statement/global_statement.cpp
hphp/compiler/statement/global_statement.h
hphp/compiler/statement/goto_statement.cpp
hphp/compiler/statement/goto_statement.h
hphp/compiler/statement/if_branch_statement.cpp
hphp/compiler/statement/if_branch_statement.h
hphp/compiler/statement/if_statement.cpp
hphp/compiler/statement/if_statement.h
hphp/compiler/statement/interface_statement.cpp
hphp/compiler/statement/interface_statement.h
hphp/compiler/statement/label_statement.cpp
hphp/compiler/statement/label_statement.h
hphp/compiler/statement/loop_statement.cpp
hphp/compiler/statement/loop_statement.h
hphp/compiler/statement/method_statement.cpp
hphp/compiler/statement/method_statement.h
hphp/compiler/statement/return_statement.cpp
hphp/compiler/statement/return_statement.h
hphp/compiler/statement/statement.cpp
hphp/compiler/statement/statement.h
hphp/compiler/statement/statement_list.cpp
hphp/compiler/statement/statement_list.h
hphp/compiler/statement/static_statement.cpp
hphp/compiler/statement/static_statement.h
hphp/compiler/statement/switch_statement.cpp
hphp/compiler/statement/switch_statement.h
hphp/compiler/statement/throw_statement.cpp
hphp/compiler/statement/throw_statement.h
hphp/compiler/statement/trait_alias_statement.cpp
hphp/compiler/statement/trait_alias_statement.h
hphp/compiler/statement/trait_prec_statement.cpp
hphp/compiler/statement/trait_prec_statement.h
hphp/compiler/statement/try_statement.cpp
hphp/compiler/statement/try_statement.h
hphp/compiler/statement/typedef_statement.cpp
hphp/compiler/statement/typedef_statement.h
hphp/compiler/statement/unset_statement.cpp
hphp/compiler/statement/unset_statement.h
hphp/compiler/statement/use_trait_statement.cpp
hphp/compiler/statement/use_trait_statement.h
hphp/compiler/statement/while_statement.cpp
hphp/compiler/statement/while_statement.h
hphp/compiler/type_annotation.cpp
hphp/compiler/type_annotation.h
hphp/hhvm/global_variables.cpp
hphp/hhvm/main.cpp
hphp/hhvm/process_init.cpp
hphp/hhvm/process_init.h
hphp/runtime/base/array/array_data.cpp
hphp/runtime/base/array/array_data.h
hphp/runtime/base/array/array_init.cpp
hphp/runtime/base/array/array_init.h
hphp/runtime/base/array/array_inline.h
hphp/runtime/base/array/array_iterator.cpp
hphp/runtime/base/array/array_iterator.h
hphp/runtime/base/array/array_util.cpp
hphp/runtime/base/array/array_util.h
hphp/runtime/base/array/hphp_array.cpp
hphp/runtime/base/array/hphp_array.h
hphp/runtime/base/array/hphp_array_sort.cpp
hphp/runtime/base/array/policy_array.cpp
hphp/runtime/base/array/policy_array.h
hphp/runtime/base/array/sort_helpers.h
hphp/runtime/base/base_includes.h
hphp/runtime/base/binary_operations.h
hphp/runtime/base/bstring.cpp
hphp/runtime/base/builtin_functions.cpp
hphp/runtime/base/builtin_functions.h
hphp/runtime/base/class_info.cpp
hphp/runtime/base/class_info.h
hphp/runtime/base/code_coverage.cpp
hphp/runtime/base/code_coverage.h
hphp/runtime/base/comparisons.cpp
hphp/runtime/base/comparisons.h
hphp/runtime/base/complex_types.h
hphp/runtime/base/crash_reporter.cpp
hphp/runtime/base/debuggable.cpp
hphp/runtime/base/debuggable.h
hphp/runtime/base/execution_context.cpp
hphp/runtime/base/execution_context.h
hphp/runtime/base/externals.h
hphp/runtime/base/file/bzip2_file.cpp
hphp/runtime/base/file/bzip2_file.h
hphp/runtime/base/file/file.cpp
hphp/runtime/base/file/file.h
hphp/runtime/base/file/file_stream_wrapper.cpp
hphp/runtime/base/file/file_stream_wrapper.h
hphp/runtime/base/file/http_stream_wrapper.cpp
hphp/runtime/base/file/http_stream_wrapper.h
hphp/runtime/base/file/mem_file.cpp
hphp/runtime/base/file/mem_file.h
hphp/runtime/base/file/output_file.cpp
hphp/runtime/base/file/output_file.h
hphp/runtime/base/file/php_stream_wrapper.cpp
hphp/runtime/base/file/php_stream_wrapper.h
hphp/runtime/base/file/pipe.cpp
hphp/runtime/base/file/pipe.h
hphp/runtime/base/file/plain_file.cpp
hphp/runtime/base/file/plain_file.h
hphp/runtime/base/file/socket.cpp
hphp/runtime/base/file/socket.h
hphp/runtime/base/file/ssl_socket.cpp
hphp/runtime/base/file/ssl_socket.h
hphp/runtime/base/file/stream_wrapper.cpp
hphp/runtime/base/file/stream_wrapper.h
hphp/runtime/base/file/stream_wrapper_registry.cpp
hphp/runtime/base/file/stream_wrapper_registry.h
hphp/runtime/base/file/temp_file.cpp
hphp/runtime/base/file/temp_file.h
hphp/runtime/base/file/url_file.cpp
hphp/runtime/base/file/url_file.h
hphp/runtime/base/file/user_file.cpp
hphp/runtime/base/file/user_file.h
hphp/runtime/base/file/user_stream_wrapper.cpp
hphp/runtime/base/file/user_stream_wrapper.h
hphp/runtime/base/file/zip_file.cpp
hphp/runtime/base/file/zip_file.h
hphp/runtime/base/hardware_counter.cpp
hphp/runtime/base/hardware_counter.h
hphp/runtime/base/hphp.h
hphp/runtime/base/hphp_system.cpp
hphp/runtime/base/hphp_system.h
hphp/runtime/base/hphp_value.cpp
hphp/runtime/base/hphp_value.h
hphp/runtime/base/ini_setting.cpp
hphp/runtime/base/ini_setting.h
hphp/runtime/base/intercept.cpp
hphp/runtime/base/intercept.h
hphp/runtime/base/list_assignment.cpp
hphp/runtime/base/list_assignment.h
hphp/runtime/base/macros.h
hphp/runtime/base/md5.h
hphp/runtime/base/memory/leak_detectable.cpp
hphp/runtime/base/memory/leak_detectable.h
hphp/runtime/base/memory/memory_manager.cpp
hphp/runtime/base/memory/memory_manager.h
hphp/runtime/base/memory/smart_allocator.cpp
hphp/runtime/base/memory/smart_allocator.h
hphp/runtime/base/memory/sweepable.cpp
hphp/runtime/base/memory/sweepable.h
hphp/runtime/base/object_data.cpp
hphp/runtime/base/object_data.h
hphp/runtime/base/preg.cpp
hphp/runtime/base/preg.h
hphp/runtime/base/program_functions.cpp
hphp/runtime/base/program_functions.h
hphp/runtime/base/ref_data.cpp
hphp/runtime/base/resource_data.cpp
hphp/runtime/base/resource_data.h
hphp/runtime/base/runtime_error.cpp
hphp/runtime/base/runtime_error.h
hphp/runtime/base/runtime_option.cpp
hphp/runtime/base/runtime_option.h
hphp/runtime/base/server/access_log.cpp
hphp/runtime/base/server/access_log.h
hphp/runtime/base/server/admin_request_handler.cpp
hphp/runtime/base/server/admin_request_handler.h
hphp/runtime/base/server/dynamic_content_cache.cpp
hphp/runtime/base/server/dynamic_content_cache.h
hphp/runtime/base/server/files_match.cpp
hphp/runtime/base/server/files_match.h
hphp/runtime/base/server/http_protocol.cpp
hphp/runtime/base/server/http_protocol.h
hphp/runtime/base/server/http_request_handler.cpp
hphp/runtime/base/server/http_request_handler.h
hphp/runtime/base/server/http_server.cpp
hphp/runtime/base/server/http_server.h
hphp/runtime/base/server/ip_block_map.cpp
hphp/runtime/base/server/ip_block_map.h
hphp/runtime/base/server/job_queue_vm_stack.h
hphp/runtime/base/server/libevent_server.cpp
hphp/runtime/base/server/libevent_server.h
hphp/runtime/base/server/libevent_server_with_fd.cpp
hphp/runtime/base/server/libevent_server_with_fd.h
hphp/runtime/base/server/libevent_server_with_takeover.cpp
hphp/runtime/base/server/libevent_server_with_takeover.h
hphp/runtime/base/server/libevent_transport.cpp
hphp/runtime/base/server/libevent_transport.h
hphp/runtime/base/server/pagelet_server.cpp
hphp/runtime/base/server/pagelet_server.h
hphp/runtime/base/server/replay_transport.cpp
hphp/runtime/base/server/replay_transport.h
hphp/runtime/base/server/request_uri.cpp
hphp/runtime/base/server/request_uri.h
hphp/runtime/base/server/rpc_request_handler.cpp
hphp/runtime/base/server/rpc_request_handler.h
hphp/runtime/base/server/satellite_server.cpp
hphp/runtime/base/server/satellite_server.h
hphp/runtime/base/server/server.cpp
hphp/runtime/base/server/server.h
hphp/runtime/base/server/server_note.cpp
hphp/runtime/base/server/server_note.h
hphp/runtime/base/server/server_stats.cpp
hphp/runtime/base/server/server_stats.h
hphp/runtime/base/server/service_thread.cpp
hphp/runtime/base/server/service_thread.h
hphp/runtime/base/server/source_root_info.cpp
hphp/runtime/base/server/source_root_info.h
hphp/runtime/base/server/static_content_cache.cpp
hphp/runtime/base/server/static_content_cache.h
hphp/runtime/base/server/transport.cpp
hphp/runtime/base/server/transport.h
hphp/runtime/base/server/upload.cpp
hphp/runtime/base/server/upload.h
hphp/runtime/base/server/virtual_host.cpp
hphp/runtime/base/server/virtual_host.h
hphp/runtime/base/server/xbox_server.cpp
hphp/runtime/base/server/xbox_server.h
hphp/runtime/base/shared/concurrent_shared_store.cpp
hphp/runtime/base/shared/concurrent_shared_store.h
hphp/runtime/base/shared/immutable_map.cpp
hphp/runtime/base/shared/immutable_map.h
hphp/runtime/base/shared/immutable_obj.cpp
hphp/runtime/base/shared/immutable_obj.h
hphp/runtime/base/shared/shared_map.cpp
hphp/runtime/base/shared/shared_map.h
hphp/runtime/base/shared/shared_store_base.cpp
hphp/runtime/base/shared/shared_store_base.h
hphp/runtime/base/shared/shared_store_stats.cpp
hphp/runtime/base/shared/shared_store_stats.h
hphp/runtime/base/shared/shared_string.cpp
hphp/runtime/base/shared/shared_string.h
hphp/runtime/base/shared/shared_variant.cpp
hphp/runtime/base/shared/shared_variant.h
hphp/runtime/base/stat_cache.cpp
hphp/runtime/base/stat_cache.h
hphp/runtime/base/stats.cpp
hphp/runtime/base/stats.h
hphp/runtime/base/string_data.cpp
hphp/runtime/base/string_data.h
hphp/runtime/base/string_offset.cpp
hphp/runtime/base/string_offset.h
hphp/runtime/base/string_util.cpp
hphp/runtime/base/string_util.h
hphp/runtime/base/thread_info.cpp
hphp/runtime/base/thread_init_fini.cpp
hphp/runtime/base/thread_init_fini.h
hphp/runtime/base/time/dateinterval.cpp
hphp/runtime/base/time/dateinterval.h
hphp/runtime/base/time/datetime.cpp
hphp/runtime/base/time/datetime.h
hphp/runtime/base/time/timestamp.cpp
hphp/runtime/base/time/timestamp.h
hphp/runtime/base/time/timezone.cpp
hphp/runtime/base/time/timezone.h
hphp/runtime/base/timeout_thread.cpp
hphp/runtime/base/timeout_thread.h
hphp/runtime/base/tv_helpers.cpp
hphp/runtime/base/tv_helpers.h
hphp/runtime/base/type_array.cpp
hphp/runtime/base/type_array.h
hphp/runtime/base/type_conversions.cpp
hphp/runtime/base/type_conversions.h
hphp/runtime/base/type_object.cpp
hphp/runtime/base/type_object.h
hphp/runtime/base/type_string.cpp
hphp/runtime/base/type_string.h
hphp/runtime/base/type_variant.cpp
hphp/runtime/base/type_variant.h
hphp/runtime/base/types.h
hphp/runtime/base/util/countable.cpp
hphp/runtime/base/util/countable.h
hphp/runtime/base/util/curl_tls_workarounds.cpp
hphp/runtime/base/util/curl_tls_workarounds.h
hphp/runtime/base/util/exceptions.cpp
hphp/runtime/base/util/exceptions.h
hphp/runtime/base/util/extended_logger.cpp
hphp/runtime/base/util/extended_logger.h
hphp/runtime/base/util/http_client.cpp
hphp/runtime/base/util/http_client.h
hphp/runtime/base/util/libevent_http_client.cpp
hphp/runtime/base/util/libevent_http_client.h
hphp/runtime/base/util/php_thrift_buffer.cpp
hphp/runtime/base/util/php_thrift_buffer.h
hphp/runtime/base/util/request_local.h
hphp/runtime/base/util/simple_counter.cpp
hphp/runtime/base/util/simple_counter.h
hphp/runtime/base/util/smart_object.h
hphp/runtime/base/util/smart_ptr.h
hphp/runtime/base/util/string_buffer.cpp
hphp/runtime/base/util/string_buffer.h
hphp/runtime/base/util/thrift_buffer.cpp
hphp/runtime/base/util/thrift_buffer.h
hphp/runtime/base/variable_serializer.cpp
hphp/runtime/base/variable_serializer.h
hphp/runtime/base/variable_unserializer.cpp
hphp/runtime/base/variable_unserializer.h
hphp/runtime/base/zend/intl_convert.cpp
hphp/runtime/base/zend/intl_convert.h
hphp/runtime/base/zend/utf8_decode.cpp
hphp/runtime/base/zend/zend_collator.cpp
hphp/runtime/base/zend/zend_collator.h
hphp/runtime/base/zend/zend_functions.cpp
hphp/runtime/base/zend/zend_functions.h
hphp/runtime/base/zend/zend_ini.lex.yy.cpp
hphp/runtime/base/zend/zend_ini.tab.cpp
hphp/runtime/base/zend/zend_math.h
hphp/runtime/base/zend/zend_pack.cpp
hphp/runtime/base/zend/zend_pack.h
hphp/runtime/base/zend/zend_php_config.h
hphp/runtime/base/zend/zend_printf.cpp
hphp/runtime/base/zend/zend_printf.h
hphp/runtime/base/zend/zend_qsort.cpp
hphp/runtime/base/zend/zend_rand.cpp
hphp/runtime/base/zend/zend_scanf.cpp
hphp/runtime/base/zend/zend_scanf.h
hphp/runtime/base/zend/zend_string.cpp
hphp/runtime/base/zend/zend_string.h
hphp/runtime/base/zend/zend_strtod.cpp
hphp/runtime/base/zend/zend_strtod.h
hphp/runtime/base/zend/zend_url.cpp
hphp/runtime/base/zend/zend_url.h
hphp/runtime/eval/debugger/break_point.cpp
hphp/runtime/eval/debugger/break_point.h
hphp/runtime/eval/debugger/cmd/all.h
hphp/runtime/eval/debugger/cmd/cmd_abort.cpp
hphp/runtime/eval/debugger/cmd/cmd_abort.h
hphp/runtime/eval/debugger/cmd/cmd_break.cpp
hphp/runtime/eval/debugger/cmd/cmd_break.h
hphp/runtime/eval/debugger/cmd/cmd_complete.cpp
hphp/runtime/eval/debugger/cmd/cmd_complete.h
hphp/runtime/eval/debugger/cmd/cmd_config.cpp
hphp/runtime/eval/debugger/cmd/cmd_config.h
hphp/runtime/eval/debugger/cmd/cmd_constant.cpp
hphp/runtime/eval/debugger/cmd/cmd_constant.h
hphp/runtime/eval/debugger/cmd/cmd_continue.cpp
hphp/runtime/eval/debugger/cmd/cmd_continue.h
hphp/runtime/eval/debugger/cmd/cmd_down.cpp
hphp/runtime/eval/debugger/cmd/cmd_down.h
hphp/runtime/eval/debugger/cmd/cmd_eval.cpp
hphp/runtime/eval/debugger/cmd/cmd_eval.h
hphp/runtime/eval/debugger/cmd/cmd_example.cpp
hphp/runtime/eval/debugger/cmd/cmd_example.h
hphp/runtime/eval/debugger/cmd/cmd_exception.cpp
hphp/runtime/eval/debugger/cmd/cmd_exception.h
hphp/runtime/eval/debugger/cmd/cmd_extended.cpp
hphp/runtime/eval/debugger/cmd/cmd_extended.h
hphp/runtime/eval/debugger/cmd/cmd_extension.cpp
hphp/runtime/eval/debugger/cmd/cmd_extension.h
hphp/runtime/eval/debugger/cmd/cmd_flow_control.cpp
hphp/runtime/eval/debugger/cmd/cmd_flow_control.h
hphp/runtime/eval/debugger/cmd/cmd_frame.cpp
hphp/runtime/eval/debugger/cmd/cmd_frame.h
hphp/runtime/eval/debugger/cmd/cmd_global.cpp
hphp/runtime/eval/debugger/cmd/cmd_global.h
hphp/runtime/eval/debugger/cmd/cmd_help.cpp
hphp/runtime/eval/debugger/cmd/cmd_help.h
hphp/runtime/eval/debugger/cmd/cmd_info.cpp
hphp/runtime/eval/debugger/cmd/cmd_info.h
hphp/runtime/eval/debugger/cmd/cmd_instrument.cpp
hphp/runtime/eval/debugger/cmd/cmd_instrument.h
hphp/runtime/eval/debugger/cmd/cmd_interrupt.cpp
hphp/runtime/eval/debugger/cmd/cmd_interrupt.h
hphp/runtime/eval/debugger/cmd/cmd_list.cpp
hphp/runtime/eval/debugger/cmd/cmd_list.h
hphp/runtime/eval/debugger/cmd/cmd_machine.cpp
hphp/runtime/eval/debugger/cmd/cmd_machine.h
hphp/runtime/eval/debugger/cmd/cmd_macro.cpp
hphp/runtime/eval/debugger/cmd/cmd_macro.h
hphp/runtime/eval/debugger/cmd/cmd_next.cpp
hphp/runtime/eval/debugger/cmd/cmd_next.h
hphp/runtime/eval/debugger/cmd/cmd_out.cpp
hphp/runtime/eval/debugger/cmd/cmd_out.h
hphp/runtime/eval/debugger/cmd/cmd_print.cpp
hphp/runtime/eval/debugger/cmd/cmd_print.h
hphp/runtime/eval/debugger/cmd/cmd_quit.cpp
hphp/runtime/eval/debugger/cmd/cmd_quit.h
hphp/runtime/eval/debugger/cmd/cmd_run.cpp
hphp/runtime/eval/debugger/cmd/cmd_run.h
hphp/runtime/eval/debugger/cmd/cmd_shell.cpp
hphp/runtime/eval/debugger/cmd/cmd_shell.h
hphp/runtime/eval/debugger/cmd/cmd_signal.cpp
hphp/runtime/eval/debugger/cmd/cmd_signal.h
hphp/runtime/eval/debugger/cmd/cmd_step.cpp
hphp/runtime/eval/debugger/cmd/cmd_step.h
hphp/runtime/eval/debugger/cmd/cmd_thread.cpp
hphp/runtime/eval/debugger/cmd/cmd_thread.h
hphp/runtime/eval/debugger/cmd/cmd_up.cpp
hphp/runtime/eval/debugger/cmd/cmd_up.h
hphp/runtime/eval/debugger/cmd/cmd_user.cpp
hphp/runtime/eval/debugger/cmd/cmd_user.h
hphp/runtime/eval/debugger/cmd/cmd_variable.cpp
hphp/runtime/eval/debugger/cmd/cmd_variable.h
hphp/runtime/eval/debugger/cmd/cmd_where.cpp
hphp/runtime/eval/debugger/cmd/cmd_where.h
hphp/runtime/eval/debugger/cmd/cmd_zend.cpp
hphp/runtime/eval/debugger/cmd/cmd_zend.h
hphp/runtime/eval/debugger/debugger.cpp
hphp/runtime/eval/debugger/debugger.h
hphp/runtime/eval/debugger/debugger_base.cpp
hphp/runtime/eval/debugger/debugger_base.h
hphp/runtime/eval/debugger/debugger_client.cpp
hphp/runtime/eval/debugger/debugger_client.h
hphp/runtime/eval/debugger/debugger_command.cpp
hphp/runtime/eval/debugger/debugger_command.h
hphp/runtime/eval/debugger/debugger_proxy.cpp
hphp/runtime/eval/debugger/debugger_proxy.h
hphp/runtime/eval/debugger/debugger_server.cpp
hphp/runtime/eval/debugger/debugger_server.h
hphp/runtime/eval/debugger/debugger_thrift_buffer.cpp
hphp/runtime/eval/debugger/debugger_thrift_buffer.h
hphp/runtime/eval/debugger/dummy_sandbox.cpp
hphp/runtime/eval/debugger/dummy_sandbox.h
hphp/runtime/eval/debugger/inst_point.cpp
hphp/runtime/eval/debugger/inst_point.h
hphp/runtime/eval/runtime/file_repository.cpp
hphp/runtime/eval/runtime/file_repository.h
hphp/runtime/ext/JSON_parser.cpp
hphp/runtime/ext/JSON_parser.h
hphp/runtime/ext/asio/asio_context.cpp
hphp/runtime/ext/asio/asio_context.h
hphp/runtime/ext/asio/asio_external_thread_event.cpp
hphp/runtime/ext/asio/asio_external_thread_event.h
hphp/runtime/ext/asio/asio_session.cpp
hphp/runtime/ext/asio/asio_session.h
hphp/runtime/ext/asio/blockable_wait_handle.cpp
hphp/runtime/ext/asio/continuation_wait_handle.cpp
hphp/runtime/ext/asio/external_thread_event_wait_handle.cpp
hphp/runtime/ext/asio/gen_array_wait_handle.cpp
hphp/runtime/ext/asio/reschedule_wait_handle.cpp
hphp/runtime/ext/asio/set_result_to_ref_wait_handle.cpp
hphp/runtime/ext/asio/static_exception_wait_handle.cpp
hphp/runtime/ext/asio/static_result_wait_handle.cpp
hphp/runtime/ext/asio/static_wait_handle.cpp
hphp/runtime/ext/asio/wait_handle.cpp
hphp/runtime/ext/asio/waitable_wait_handle.cpp
hphp/runtime/ext/bcmath/bcmath.h
hphp/runtime/ext/ext.h
hphp/runtime/ext/ext_apache.cpp
hphp/runtime/ext/ext_apache.h
hphp/runtime/ext/ext_apc.cpp
hphp/runtime/ext/ext_apc.h
hphp/runtime/ext/ext_apd.cpp
hphp/runtime/ext/ext_apd.h
hphp/runtime/ext/ext_array.cpp
hphp/runtime/ext/ext_array.h
hphp/runtime/ext/ext_asio.cpp
hphp/runtime/ext/ext_asio.h
hphp/runtime/ext/ext_bcmath.cpp
hphp/runtime/ext/ext_bcmath.h
hphp/runtime/ext/ext_bzip2.cpp
hphp/runtime/ext/ext_bzip2.h
hphp/runtime/ext/ext_class.cpp
hphp/runtime/ext/ext_class.h
hphp/runtime/ext/ext_closure.cpp
hphp/runtime/ext/ext_closure.h
hphp/runtime/ext/ext_collections.cpp
hphp/runtime/ext/ext_collections.h
hphp/runtime/ext/ext_continuation.cpp
hphp/runtime/ext/ext_continuation.h
hphp/runtime/ext/ext_ctype.cpp
hphp/runtime/ext/ext_ctype.h
hphp/runtime/ext/ext_curl.cpp
hphp/runtime/ext/ext_curl.h
hphp/runtime/ext/ext_datetime.cpp
hphp/runtime/ext/ext_datetime.h
hphp/runtime/ext/ext_debugger.cpp
hphp/runtime/ext/ext_debugger.h
hphp/runtime/ext/ext_domdocument.cpp
hphp/runtime/ext/ext_domdocument.h
hphp/runtime/ext/ext_domdocument_includes.h
hphp/runtime/ext/ext_error.cpp
hphp/runtime/ext/ext_error.h
hphp/runtime/ext/ext_fb.cpp
hphp/runtime/ext/ext_fb.h
hphp/runtime/ext/ext_file.cpp
hphp/runtime/ext/ext_file.h
hphp/runtime/ext/ext_function.cpp
hphp/runtime/ext/ext_function.h
hphp/runtime/ext/ext_hash.cpp
hphp/runtime/ext/ext_hash.h
hphp/runtime/ext/ext_hotprofiler.cpp
hphp/runtime/ext/ext_iconv.cpp
hphp/runtime/ext/ext_iconv.h
hphp/runtime/ext/ext_icu.cpp
hphp/runtime/ext/ext_icu.h
hphp/runtime/ext/ext_icu_ucnv.cpp
hphp/runtime/ext/ext_icu_ucnv.h
hphp/runtime/ext/ext_icu_ucsdet.cpp
hphp/runtime/ext/ext_icu_ucsdet.h
hphp/runtime/ext/ext_icu_uspoof.cpp
hphp/runtime/ext/ext_icu_uspoof.h
hphp/runtime/ext/ext_image.cpp
hphp/runtime/ext/ext_image.h
hphp/runtime/ext/ext_imagesprite.cpp
hphp/runtime/ext/ext_imagesprite.h
hphp/runtime/ext/ext_imagesprite_include.h
hphp/runtime/ext/ext_imap.cpp
hphp/runtime/ext/ext_imap.h
hphp/runtime/ext/ext_intl.cpp
hphp/runtime/ext/ext_intl.h
hphp/runtime/ext/ext_ipc.cpp
hphp/runtime/ext/ext_ipc.h
hphp/runtime/ext/ext_iterator.cpp
hphp/runtime/ext/ext_iterator.h
hphp/runtime/ext/ext_json.cpp
hphp/runtime/ext/ext_json.h
hphp/runtime/ext/ext_ldap.cpp
hphp/runtime/ext/ext_ldap.h
hphp/runtime/ext/ext_magick.cpp
hphp/runtime/ext/ext_magick.h
hphp/runtime/ext/ext_mailparse.cpp
hphp/runtime/ext/ext_mailparse.h
hphp/runtime/ext/ext_math.cpp
hphp/runtime/ext/ext_math.h
hphp/runtime/ext/ext_mb.cpp
hphp/runtime/ext/ext_mb.h
hphp/runtime/ext/ext_mcrypt.cpp
hphp/runtime/ext/ext_mcrypt.h
hphp/runtime/ext/ext_memcache.cpp
hphp/runtime/ext/ext_memcache.h
hphp/runtime/ext/ext_memcached.cpp
hphp/runtime/ext/ext_memcached.h
hphp/runtime/ext/ext_misc.cpp
hphp/runtime/ext/ext_misc.h
hphp/runtime/ext/ext_mysql.cpp
hphp/runtime/ext/ext_mysql.h
hphp/runtime/ext/ext_network.cpp
hphp/runtime/ext/ext_network.h
hphp/runtime/ext/ext_openssl.cpp
hphp/runtime/ext/ext_openssl.h
hphp/runtime/ext/ext_options.cpp
hphp/runtime/ext/ext_options.h
hphp/runtime/ext/ext_output.cpp
hphp/runtime/ext/ext_output.h
hphp/runtime/ext/ext_pdo.cpp
hphp/runtime/ext/ext_pdo.h
hphp/runtime/ext/ext_posix.cpp
hphp/runtime/ext/ext_posix.h
hphp/runtime/ext/ext_preg.cpp
hphp/runtime/ext/ext_preg.h
hphp/runtime/ext/ext_process.cpp
hphp/runtime/ext/ext_process.h
hphp/runtime/ext/ext_reflection.cpp
hphp/runtime/ext/ext_reflection.h
hphp/runtime/ext/ext_server.cpp
hphp/runtime/ext/ext_server.h
hphp/runtime/ext/ext_session.cpp
hphp/runtime/ext/ext_session.h
hphp/runtime/ext/ext_simplexml.cpp
hphp/runtime/ext/ext_simplexml.h
hphp/runtime/ext/ext_simplexml_include.h
hphp/runtime/ext/ext_soap.cpp
hphp/runtime/ext/ext_soap.h
hphp/runtime/ext/ext_socket.cpp
hphp/runtime/ext/ext_socket.h
hphp/runtime/ext/ext_spl.cpp
hphp/runtime/ext/ext_spl.h
hphp/runtime/ext/ext_splfile.cpp
hphp/runtime/ext/ext_splfile.h
hphp/runtime/ext/ext_sqlite3.cpp
hphp/runtime/ext/ext_sqlite3.h
hphp/runtime/ext/ext_stream.cpp
hphp/runtime/ext/ext_stream.h
hphp/runtime/ext/ext_string.cpp
hphp/runtime/ext/ext_string.h
hphp/runtime/ext/ext_thread.cpp
hphp/runtime/ext/ext_thread.h
hphp/runtime/ext/ext_thrift.h
hphp/runtime/ext/ext_url.cpp
hphp/runtime/ext/ext_url.h
hphp/runtime/ext/ext_variable.cpp
hphp/runtime/ext/ext_variable.h
hphp/runtime/ext/ext_xml.cpp
hphp/runtime/ext/ext_xml.h
hphp/runtime/ext/ext_xmlreader.cpp
hphp/runtime/ext/ext_xmlreader.h
hphp/runtime/ext/ext_xmlwriter.cpp
hphp/runtime/ext/ext_xmlwriter.h
hphp/runtime/ext/ext_zlib.cpp
hphp/runtime/ext/ext_zlib.h
hphp/runtime/ext/extension.cpp
hphp/runtime/ext/extension.h
hphp/runtime/ext/hash/hash_adler32.cpp
hphp/runtime/ext/hash/hash_adler32.h
hphp/runtime/ext/hash/hash_crc32.cpp
hphp/runtime/ext/hash/hash_crc32.h
hphp/runtime/ext/hash/hash_engine.h
hphp/runtime/ext/hash/hash_fnv1.cpp
hphp/runtime/ext/hash/hash_fnv1.h
hphp/runtime/ext/hash/hash_furc.cpp
hphp/runtime/ext/hash/hash_gost.cpp
hphp/runtime/ext/hash/hash_gost.h
hphp/runtime/ext/hash/hash_haval.cpp
hphp/runtime/ext/hash/hash_haval.h
hphp/runtime/ext/hash/hash_md.cpp
hphp/runtime/ext/hash/hash_md.h
hphp/runtime/ext/hash/hash_murmur.cpp
hphp/runtime/ext/hash/hash_ripemd.cpp
hphp/runtime/ext/hash/hash_ripemd.h
hphp/runtime/ext/hash/hash_salsa.cpp
hphp/runtime/ext/hash/hash_salsa.h
hphp/runtime/ext/hash/hash_sha.cpp
hphp/runtime/ext/hash/hash_sha.h
hphp/runtime/ext/hash/hash_snefru.cpp
hphp/runtime/ext/hash/hash_snefru.h
hphp/runtime/ext/hash/hash_tiger.cpp
hphp/runtime/ext/hash/hash_tiger.h
hphp/runtime/ext/hash/hash_whirlpool.cpp
hphp/runtime/ext/hash/hash_whirlpool.h
hphp/runtime/ext/icu/ICUMatcher.cpp
hphp/runtime/ext/icu/ICUMatcher.h
hphp/runtime/ext/icu/ICUTransliterator.cpp
hphp/runtime/ext/icu/ICUTransliterator.h
hphp/runtime/ext/icu/LifeEventTokenizer.cpp
hphp/runtime/ext/icu/LifeEventTokenizer.h
hphp/runtime/ext/mailparse/mime.cpp
hphp/runtime/ext/mailparse/mime.h
hphp/runtime/ext/mailparse/rfc822.cpp
hphp/runtime/ext/mailparse/rfc822.h
hphp/runtime/ext/mysql_stats.cpp
hphp/runtime/ext/mysql_stats.h
hphp/runtime/ext/pdo_driver.cpp
hphp/runtime/ext/pdo_driver.h
hphp/runtime/ext/pdo_mysql.cpp
hphp/runtime/ext/pdo_mysql.h
hphp/runtime/ext/pdo_sqlite.cpp
hphp/runtime/ext/pdo_sqlite.h
hphp/runtime/ext/soap/encoding.cpp
hphp/runtime/ext/soap/encoding.h
hphp/runtime/ext/soap/packet.cpp
hphp/runtime/ext/soap/packet.h
hphp/runtime/ext/soap/schema.cpp
hphp/runtime/ext/soap/sdl.cpp
hphp/runtime/ext/soap/sdl.h
hphp/runtime/ext/soap/soap.cpp
hphp/runtime/ext/soap/soap.h
hphp/runtime/ext/soap/xml.cpp
hphp/runtime/ext/soap/xml.h
hphp/runtime/ext/thrift/binary.cpp
hphp/runtime/ext/thrift/compact.cpp
hphp/runtime/ext/thrift/transport.h
hphp/runtime/ext_hhvm/ext_hhvm.h
hphp/runtime/vm/as.cpp
hphp/runtime/vm/as.h
hphp/runtime/vm/backup_gc.cpp
hphp/runtime/vm/blob_helper.h
hphp/runtime/vm/bytecode.cpp
hphp/runtime/vm/bytecode.h
hphp/runtime/vm/class.cpp
hphp/runtime/vm/class.h
hphp/runtime/vm/core_types.h
hphp/runtime/vm/debug/debug.cpp
hphp/runtime/vm/debug/debug.h
hphp/runtime/vm/debug/dwarf.cpp
hphp/runtime/vm/debug/dwarf.h
hphp/runtime/vm/debug/elfwriter.cpp
hphp/runtime/vm/debug/elfwriter.h
hphp/runtime/vm/debug/gdb-jit.cpp
hphp/runtime/vm/debug/gdb-jit.h
hphp/runtime/vm/debugger_hook.cpp
hphp/runtime/vm/debugger_hook.h
hphp/runtime/vm/event_hook.cpp
hphp/runtime/vm/event_hook.h
hphp/runtime/vm/fixed_string_map.cpp
hphp/runtime/vm/fixed_string_map.h
hphp/runtime/vm/func.cpp
hphp/runtime/vm/func.h
hphp/runtime/vm/funcdict.cpp
hphp/runtime/vm/funcdict.h
hphp/runtime/vm/hhbc.cpp
hphp/runtime/vm/hhbc.h
hphp/runtime/vm/indexed_string_map.h
hphp/runtime/vm/instance.cpp
hphp/runtime/vm/instance.h
hphp/runtime/vm/instrumentation.cpp
hphp/runtime/vm/instrumentation.h
hphp/runtime/vm/instrumentation_hook.h
hphp/runtime/vm/member_operations.cpp
hphp/runtime/vm/member_operations.h
hphp/runtime/vm/name_value_table.h
hphp/runtime/vm/name_value_table_wrapper.cpp
hphp/runtime/vm/name_value_table_wrapper.h
hphp/runtime/vm/named_entity.h
hphp/runtime/vm/object_allocator_sizes.cpp
hphp/runtime/vm/pendq.cpp
hphp/runtime/vm/php_debug.cpp
hphp/runtime/vm/repo.cpp
hphp/runtime/vm/repo.h
hphp/runtime/vm/repo_helpers.cpp
hphp/runtime/vm/repo_helpers.h
hphp/runtime/vm/request_arena.h
hphp/runtime/vm/runtime.cpp
hphp/runtime/vm/runtime.h
hphp/runtime/vm/translator/abi-x64.h
hphp/runtime/vm/translator/annotation.cpp
hphp/runtime/vm/translator/annotation.h
hphp/runtime/vm/translator/asm-x64-test.cpp
hphp/runtime/vm/translator/collector.cpp
hphp/runtime/vm/translator/fixup.h
hphp/runtime/vm/translator/hopt/check.cpp
hphp/runtime/vm/translator/hopt/codegen.cpp
hphp/runtime/vm/translator/hopt/codegen.h
hphp/runtime/vm/translator/hopt/cse.h
hphp/runtime/vm/translator/hopt/dce.cpp
hphp/runtime/vm/translator/hopt/hhbctranslator.cpp
hphp/runtime/vm/translator/hopt/hhbctranslator.h
hphp/runtime/vm/translator/hopt/ir.cpp
hphp/runtime/vm/translator/hopt/ir.h
hphp/runtime/vm/translator/hopt/irfactory.cpp
hphp/runtime/vm/translator/hopt/irfactory.h
hphp/runtime/vm/translator/hopt/irtranslator.cpp
hphp/runtime/vm/translator/hopt/jumpsopts.cpp
hphp/runtime/vm/translator/hopt/linearscan.cpp
hphp/runtime/vm/translator/hopt/linearscan.h
hphp/runtime/vm/translator/hopt/memelim.cpp
hphp/runtime/vm/translator/hopt/nativecalls.cpp
hphp/runtime/vm/translator/hopt/nativecalls.h
hphp/runtime/vm/translator/hopt/opt.cpp
hphp/runtime/vm/translator/hopt/print.cpp
hphp/runtime/vm/translator/hopt/print.h
hphp/runtime/vm/translator/hopt/simplifier.cpp
hphp/runtime/vm/translator/hopt/simplifier.h
hphp/runtime/vm/translator/hopt/state_vector.h
hphp/runtime/vm/translator/hopt/test/type.cpp
hphp/runtime/vm/translator/hopt/test/vector.cpp
hphp/runtime/vm/translator/hopt/tracebuilder.cpp
hphp/runtime/vm/translator/hopt/tracebuilder.h
hphp/runtime/vm/translator/hopt/type.cpp
hphp/runtime/vm/translator/hopt/vectortranslator-internal.h
hphp/runtime/vm/translator/hopt/vectortranslator.cpp
hphp/runtime/vm/translator/immstack.cpp
hphp/runtime/vm/translator/immstack.h
hphp/runtime/vm/translator/memcpy-x64.cpp
hphp/runtime/vm/translator/physreg.cpp
hphp/runtime/vm/translator/physreg.h
hphp/runtime/vm/translator/regalloc.cpp
hphp/runtime/vm/translator/regalloc.h
hphp/runtime/vm/translator/runtime-type.cpp
hphp/runtime/vm/translator/runtime-type.h
hphp/runtime/vm/translator/srcdb.cpp
hphp/runtime/vm/translator/srcdb.h
hphp/runtime/vm/translator/targetcache.cpp
hphp/runtime/vm/translator/targetcache.h
hphp/runtime/vm/translator/test/fixup_map.cpp
hphp/runtime/vm/translator/test/main.cpp
hphp/runtime/vm/translator/test/tread_hash_map.cpp
hphp/runtime/vm/translator/trans-data.h
hphp/runtime/vm/translator/translator-deps.cpp
hphp/runtime/vm/translator/translator-deps.h
hphp/runtime/vm/translator/translator-inline.h
hphp/runtime/vm/translator/translator-runtime.cpp
hphp/runtime/vm/translator/translator-runtime.h
hphp/runtime/vm/translator/translator-x64-helpers.cpp
hphp/runtime/vm/translator/translator-x64-internal.h
hphp/runtime/vm/translator/translator-x64-vector.cpp
hphp/runtime/vm/translator/translator-x64.cpp
hphp/runtime/vm/translator/translator-x64.h
hphp/runtime/vm/translator/translator.cpp
hphp/runtime/vm/translator/translator.h
hphp/runtime/vm/translator/types.h
hphp/runtime/vm/translator/unwind-x64.cpp
hphp/runtime/vm/translator/unwind-x64.h
hphp/runtime/vm/translator/writelease.cpp
hphp/runtime/vm/translator/x64-util.h
hphp/runtime/vm/tread_hash_map.h
hphp/runtime/vm/treadmill.cpp
hphp/runtime/vm/treadmill.h
hphp/runtime/vm/type_constraint.cpp
hphp/runtime/vm/type_constraint.h
hphp/runtime/vm/type_profile.cpp
hphp/runtime/vm/type_profile.h
hphp/runtime/vm/unit.cpp
hphp/runtime/vm/unit.h
hphp/runtime/vm/verifier/cfg.cpp
hphp/runtime/vm/verifier/cfg.h
hphp/runtime/vm/verifier/check_func.cpp
hphp/runtime/vm/verifier/check_unit.cpp
hphp/runtime/vm/verifier/pretty.cpp
hphp/runtime/vm/verifier/util.cpp
hphp/runtime/vm/verifier/util.h
hphp/system/lib/systemlib.cpp
hphp/system/lib/systemlib.h
hphp/test/main.cpp
hphp/test/test.cpp
hphp/test/test.h
hphp/test/test_all.cpp
hphp/test/test_base.cpp
hphp/test/test_base.h
hphp/test/test_code_error.cpp
hphp/test/test_code_error.h
hphp/test/test_code_run.cpp
hphp/test/test_code_run.h
hphp/test/test_cpp_base.cpp
hphp/test/test_cpp_base.h
hphp/test/test_cpp_ext.cpp
hphp/test/test_cpp_ext.h
hphp/test/test_debugger.cpp
hphp/test/test_debugger.h
hphp/test/test_ext.h
hphp/test/test_ext_apache.cpp
hphp/test/test_ext_apache.h
hphp/test/test_ext_apc.cpp
hphp/test/test_ext_apc.h
hphp/test/test_ext_apd.cpp
hphp/test/test_ext_apd.h
hphp/test/test_ext_array.cpp
hphp/test/test_ext_array.h
hphp/test/test_ext_asio.cpp
hphp/test/test_ext_asio.h
hphp/test/test_ext_bcmath.cpp
hphp/test/test_ext_bcmath.h
hphp/test/test_ext_bzip2.cpp
hphp/test/test_ext_bzip2.h
hphp/test/test_ext_class.cpp
hphp/test/test_ext_class.h
hphp/test/test_ext_closure.cpp
hphp/test/test_ext_closure.h
hphp/test/test_ext_collections.cpp
hphp/test/test_ext_collections.h
hphp/test/test_ext_continuation.cpp
hphp/test/test_ext_continuation.h
hphp/test/test_ext_ctype.cpp
hphp/test/test_ext_ctype.h
hphp/test/test_ext_curl.cpp
hphp/test/test_ext_curl.h
hphp/test/test_ext_datetime.cpp
hphp/test/test_ext_datetime.h
hphp/test/test_ext_debugger.cpp
hphp/test/test_ext_debugger.h
hphp/test/test_ext_domdocument.cpp
hphp/test/test_ext_domdocument.h
hphp/test/test_ext_error.cpp
hphp/test/test_ext_error.h
hphp/test/test_ext_fb.cpp
hphp/test/test_ext_fb.h
hphp/test/test_ext_file.cpp
hphp/test/test_ext_file.h
hphp/test/test_ext_function.cpp
hphp/test/test_ext_function.h
hphp/test/test_ext_hash.cpp
hphp/test/test_ext_hash.h
hphp/test/test_ext_iconv.cpp
hphp/test/test_ext_iconv.h
hphp/test/test_ext_icu.cpp
hphp/test/test_ext_icu.h
hphp/test/test_ext_icu_ucnv.cpp
hphp/test/test_ext_icu_ucnv.h
hphp/test/test_ext_icu_ucsdet.cpp
hphp/test/test_ext_icu_ucsdet.h
hphp/test/test_ext_icu_uspoof.cpp
hphp/test/test_ext_icu_uspoof.h
hphp/test/test_ext_image.cpp
hphp/test/test_ext_image.h
hphp/test/test_ext_imagesprite.cpp
hphp/test/test_ext_imagesprite.h
hphp/test/test_ext_imap.cpp
hphp/test/test_ext_imap.h
hphp/test/test_ext_intl.cpp
hphp/test/test_ext_intl.h
hphp/test/test_ext_ipc.cpp
hphp/test/test_ext_ipc.h
hphp/test/test_ext_iterator.cpp
hphp/test/test_ext_iterator.h
hphp/test/test_ext_json.cpp
hphp/test/test_ext_json.h
hphp/test/test_ext_ldap.cpp
hphp/test/test_ext_ldap.h
hphp/test/test_ext_magick.cpp
hphp/test/test_ext_magick.h
hphp/test/test_ext_mailparse.cpp
hphp/test/test_ext_mailparse.h
hphp/test/test_ext_math.cpp
hphp/test/test_ext_math.h
hphp/test/test_ext_mb.cpp
hphp/test/test_ext_mb.h
hphp/test/test_ext_mcrypt.cpp
hphp/test/test_ext_mcrypt.h
hphp/test/test_ext_memcache.cpp
hphp/test/test_ext_memcache.h
hphp/test/test_ext_memcached.cpp
hphp/test/test_ext_memcached.h
hphp/test/test_ext_misc.cpp
hphp/test/test_ext_misc.h
hphp/test/test_ext_mysql.cpp
hphp/test/test_ext_mysql.h
hphp/test/test_ext_network.cpp
hphp/test/test_ext_network.h
hphp/test/test_ext_openssl.cpp
hphp/test/test_ext_openssl.h
hphp/test/test_ext_options.cpp
hphp/test/test_ext_options.h
hphp/test/test_ext_output.cpp
hphp/test/test_ext_output.h
hphp/test/test_ext_pdo.cpp
hphp/test/test_ext_pdo.h
hphp/test/test_ext_posix.cpp
hphp/test/test_ext_posix.h
hphp/test/test_ext_preg.cpp
hphp/test/test_ext_preg.h
hphp/test/test_ext_process.cpp
hphp/test/test_ext_process.h
hphp/test/test_ext_reflection.cpp
hphp/test/test_ext_reflection.h
hphp/test/test_ext_server.cpp
hphp/test/test_ext_server.h
hphp/test/test_ext_session.cpp
hphp/test/test_ext_session.h
hphp/test/test_ext_simplexml.cpp
hphp/test/test_ext_simplexml.h
hphp/test/test_ext_soap.cpp
hphp/test/test_ext_soap.h
hphp/test/test_ext_socket.cpp
hphp/test/test_ext_socket.h
hphp/test/test_ext_spl.cpp
hphp/test/test_ext_spl.h
hphp/test/test_ext_splfile.cpp
hphp/test/test_ext_splfile.h
hphp/test/test_ext_sqlite3.cpp
hphp/test/test_ext_sqlite3.h
hphp/test/test_ext_stream.cpp
hphp/test/test_ext_stream.h
hphp/test/test_ext_string.cpp
hphp/test/test_ext_string.h
hphp/test/test_ext_thread.cpp
hphp/test/test_ext_thread.h
hphp/test/test_ext_thrift.cpp
hphp/test/test_ext_thrift.h
hphp/test/test_ext_url.cpp
hphp/test/test_ext_url.h
hphp/test/test_ext_variable.cpp
hphp/test/test_ext_variable.h
hphp/test/test_ext_xml.cpp
hphp/test/test_ext_xml.h
hphp/test/test_ext_xmlreader.cpp
hphp/test/test_ext_xmlreader.h
hphp/test/test_ext_xmlwriter.cpp
hphp/test/test_ext_xmlwriter.h
hphp/test/test_ext_zlib.cpp
hphp/test/test_ext_zlib.h
hphp/test/test_logger.cpp
hphp/test/test_logger.h
hphp/test/test_parser.cpp
hphp/test/test_parser.h
hphp/test/test_parser_expr.cpp
hphp/test/test_parser_expr.h
hphp/test/test_parser_stmt.cpp
hphp/test/test_parser_stmt.h
hphp/test/test_server.cpp
hphp/test/test_server.h
hphp/test/test_util.cpp
hphp/test/test_util.h
hphp/tools/fcache/main.cpp
hphp/tools/gen-ext-hhvm/gen-ext-hhvm.cpp
hphp/tools/gen-ext-hhvm/gen-infotabs.cpp
hphp/tools/gen-ext-hhvm/idl.cpp
hphp/tools/shmw/shmw.cpp
hphp/util/alloc.cpp
hphp/util/alloc.h
hphp/util/arena.cpp
hphp/util/arena.h
hphp/util/asm-x64.cpp
hphp/util/asm-x64.h
hphp/util/assert_throw.h
hphp/util/assertions.cpp
hphp/util/async_func.cpp
hphp/util/async_func.h
hphp/util/async_job.cpp
hphp/util/async_job.h
hphp/util/atomic.h
hphp/util/base.h
hphp/util/biased_coin.h
hphp/util/capability.cpp
hphp/util/capability.h
hphp/util/case_insensitive.h
hphp/util/compatibility.cpp
hphp/util/compatibility.h
hphp/util/compression.cpp
hphp/util/compression.h
hphp/util/cronolog.cpp
hphp/util/cronolog.h
hphp/util/cronoutils.cpp
hphp/util/cronoutils.h
hphp/util/dataset.cpp
hphp/util/dataset.h
hphp/util/db_conn.cpp
hphp/util/db_conn.h
hphp/util/db_dataset.cpp
hphp/util/db_dataset.h
hphp/util/db_filter.cpp
hphp/util/db_filter.h
hphp/util/db_mysql.cpp
hphp/util/db_mysql.h
hphp/util/db_query.cpp
hphp/util/db_query.h
hphp/util/disasm.cpp
hphp/util/embedded_data.cpp
hphp/util/embedded_vfs.cpp
hphp/util/exception.cpp
hphp/util/exception.h
hphp/util/exp_arena.h
hphp/util/file_cache.cpp
hphp/util/file_cache.h
hphp/util/fixed_vector.h
hphp/util/hash.cpp
hphp/util/hash.h
hphp/util/hdf.cpp
hphp/util/hdf.h
hphp/util/job_queue.h
hphp/util/json.cpp
hphp/util/json.h
hphp/util/kernel_version.cpp
hphp/util/light_process.cpp
hphp/util/light_process.h
hphp/util/lock.cpp
hphp/util/lock.h
hphp/util/logger.cpp
hphp/util/logger.h
hphp/util/malloc_size_class.h
hphp/util/maphuge.cpp
hphp/util/mutex.h
hphp/util/neo/neo_err.h
hphp/util/neo/neo_files.h
hphp/util/neo/neo_hash.h
hphp/util/neo/neo_hdf.h
hphp/util/neo/neo_misc.h
hphp/util/neo/neo_str.h
hphp/util/neo/ulist.h
hphp/util/network.cpp
hphp/util/network.h
hphp/util/parser/hphp.y
hphp/util/parser/location.h
hphp/util/parser/parser.cpp
hphp/util/parser/parser.h
hphp/util/parser/scanner.cpp
hphp/util/parser/scanner.h
hphp/util/parser/test/parse_tester.cpp
hphp/util/parser/test/parser.h
hphp/util/pointer_list.h
hphp/util/pool.h
hphp/util/process.cpp
hphp/util/process.h
hphp/util/range.h
hphp/util/rank.cpp
hphp/util/read_only_arena.cpp
hphp/util/read_only_arena.h
hphp/util/repo_schema.cpp
hphp/util/ringbuffer.cpp
hphp/util/shared_memory_allocator.cpp
hphp/util/shared_memory_allocator.h
hphp/util/shm_counter.cpp
hphp/util/smalllocks.h
hphp/util/ssl_init.cpp
hphp/util/stack_trace.cpp
hphp/util/stack_trace.h
hphp/util/string_bag.cpp
hphp/util/string_bag.h
hphp/util/synchronizable.cpp
hphp/util/synchronizable.h
hphp/util/synchronizable_multi.cpp
hphp/util/synchronizable_multi.h
hphp/util/test/asm.cpp
hphp/util/test/bitops.cpp
hphp/util/test/kernel_version.cpp
hphp/util/test/read_only_arena.cpp
hphp/util/test/tiny_vector.cpp
hphp/util/text_art.cpp
hphp/util/text_art.h
hphp/util/text_color.cpp
hphp/util/text_color.h
hphp/util/thread_local.cpp
hphp/util/thread_local.h
hphp/util/timer.cpp
hphp/util/timer.h
hphp/util/tiny_vector.h
hphp/util/trace.cpp
hphp/util/trace.h
hphp/util/util.cpp
hphp/util/util.h
hphp/util/vdso.cpp
hphp/util/vdso.h
hphp/util/zend/zend_html.cpp
hphp/util/zend/zend_html.h
hphp/util/zend/zend_md5.cpp
hphp/util/zend/zend_sha1.cpp
hphp/util/zend/zend_string.cpp