From 752d95fa3d43da66a17cab32f4295a03c8cc84a6 Mon Sep 17 00:00:00 2001 From: Sergey Yershov Date: Wed, 16 Nov 2016 17:44:39 +0300 Subject: [PATCH] Delete old unused ios projects --- .../Benchmarks.xcodeproj/project.pbxproj | 581 -------------- .../Benchmarks/Benchmarks-Prefix.pch | 14 - .../Benchmarks/BenchmarksAppDelegate.hpp | 13 - .../Benchmarks/BenchmarksAppDelegate.mm | 70 -- .../Benchmarks/BenchmarksViewController.hpp | 29 - .../Benchmarks/BenchmarksViewController.mm | 391 --------- iphone/Benchmarks/Benchmarks/EAGLView.hpp | 40 - iphone/Benchmarks/Benchmarks/EAGLView.mm | 118 --- .../Benchmarks/Benchmarks/Shaders/Shader.fsh | 6 - .../Benchmarks/Benchmarks/Shaders/Shader.vsh | 14 - .../en.lproj/BenchmarksViewController.xib | 145 ---- .../Benchmarks/en.lproj/InfoPlist.strings | 2 - .../Benchmarks/en.lproj/MainWindow.xib | 196 ----- iphone/Benchmarks/Benchmarks/main.m | 9 - iphone/QuartzBenchmark/Draw2D.h | 9 - iphone/QuartzBenchmark/Draw2D.mm | 129 --- .../QuartzBenchmark.xcodeproj/project.pbxproj | 317 -------- .../QuartzBenchmark-Info.plist | 41 - .../QuartzBenchmark-Prefix.pch | 14 - .../QuartzBenchmarkAppDelegate.h | 13 - .../QuartzBenchmarkAppDelegate.m | 67 -- .../QuartzBenchmarkViewController.h | 7 - .../QuartzBenchmarkViewController.m | 41 - .../en.lproj/InfoPlist.strings | 2 - .../QuartzBenchmark/en.lproj/MainWindow.xib | 444 ----------- .../QuartzBenchmarkViewController.xib | 141 ---- .../iPad/en.lproj/MainWindow-iPad.xib | 455 ----------- iphone/QuartzBenchmark/QuartzBenchmark/main.m | 9 - iphone/Tests/Classes/Draw2D.h | 8 - iphone/Tests/Classes/Draw2D.m | 29 - iphone/Tests/Classes/Draw2DViewController.xib | 133 ---- iphone/Tests/Classes/TestView.h | 8 - iphone/Tests/Classes/TestView.mm | 47 -- iphone/Tests/Classes/TestsAppDelegate.h | 14 - iphone/Tests/Classes/TestsAppDelegate.m | 80 -- iphone/Tests/Classes/TestsViewController.h | 8 - iphone/Tests/Classes/TestsViewController.m | 58 -- iphone/Tests/MainWindow.xib | 444 ----------- iphone/Tests/Tests-Info.plist | 30 - iphone/Tests/Tests.xcodeproj/project.pbxproj | 742 ------------------ iphone/Tests/TestsViewController.xib | 342 -------- iphone/Tests/Tests_Prefix.pch | 8 - iphone/Tests/main.m | 9 - 43 files changed, 5277 deletions(-) delete mode 100644 iphone/Benchmarks/Benchmarks.xcodeproj/project.pbxproj delete mode 100644 iphone/Benchmarks/Benchmarks/Benchmarks-Prefix.pch delete mode 100644 iphone/Benchmarks/Benchmarks/BenchmarksAppDelegate.hpp delete mode 100644 iphone/Benchmarks/Benchmarks/BenchmarksAppDelegate.mm delete mode 100644 iphone/Benchmarks/Benchmarks/BenchmarksViewController.hpp delete mode 100644 iphone/Benchmarks/Benchmarks/BenchmarksViewController.mm delete mode 100644 iphone/Benchmarks/Benchmarks/EAGLView.hpp delete mode 100644 iphone/Benchmarks/Benchmarks/EAGLView.mm delete mode 100644 iphone/Benchmarks/Benchmarks/Shaders/Shader.fsh delete mode 100644 iphone/Benchmarks/Benchmarks/Shaders/Shader.vsh delete mode 100644 iphone/Benchmarks/Benchmarks/en.lproj/BenchmarksViewController.xib delete mode 100644 iphone/Benchmarks/Benchmarks/en.lproj/InfoPlist.strings delete mode 100644 iphone/Benchmarks/Benchmarks/en.lproj/MainWindow.xib delete mode 100644 iphone/Benchmarks/Benchmarks/main.m delete mode 100644 iphone/QuartzBenchmark/Draw2D.h delete mode 100644 iphone/QuartzBenchmark/Draw2D.mm delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark.xcodeproj/project.pbxproj delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmark-Info.plist delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmark-Prefix.pch delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkAppDelegate.h delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkAppDelegate.m delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkViewController.h delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkViewController.m delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/InfoPlist.strings delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/MainWindow.xib delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/QuartzBenchmarkViewController.xib delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/iPad/en.lproj/MainWindow-iPad.xib delete mode 100644 iphone/QuartzBenchmark/QuartzBenchmark/main.m delete mode 100644 iphone/Tests/Classes/Draw2D.h delete mode 100644 iphone/Tests/Classes/Draw2D.m delete mode 100644 iphone/Tests/Classes/Draw2DViewController.xib delete mode 100644 iphone/Tests/Classes/TestView.h delete mode 100644 iphone/Tests/Classes/TestView.mm delete mode 100644 iphone/Tests/Classes/TestsAppDelegate.h delete mode 100644 iphone/Tests/Classes/TestsAppDelegate.m delete mode 100644 iphone/Tests/Classes/TestsViewController.h delete mode 100644 iphone/Tests/Classes/TestsViewController.m delete mode 100644 iphone/Tests/MainWindow.xib delete mode 100644 iphone/Tests/Tests-Info.plist delete mode 100755 iphone/Tests/Tests.xcodeproj/project.pbxproj delete mode 100644 iphone/Tests/TestsViewController.xib delete mode 100644 iphone/Tests/Tests_Prefix.pch delete mode 100644 iphone/Tests/main.m diff --git a/iphone/Benchmarks/Benchmarks.xcodeproj/project.pbxproj b/iphone/Benchmarks/Benchmarks.xcodeproj/project.pbxproj deleted file mode 100644 index 745a47ff73..0000000000 --- a/iphone/Benchmarks/Benchmarks.xcodeproj/project.pbxproj +++ /dev/null @@ -1,581 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - EE12001013538ED6004E6AAB /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12000F13538ED6004E6AAB /* UIKit.framework */; }; - EE12001213538ED6004E6AAB /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12001113538ED6004E6AAB /* Foundation.framework */; }; - EE12001413538ED6004E6AAB /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12001313538ED6004E6AAB /* CoreGraphics.framework */; }; - EE12001613538ED6004E6AAB /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12001513538ED6004E6AAB /* QuartzCore.framework */; }; - EE12001813538ED6004E6AAB /* OpenGLES.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12001713538ED6004E6AAB /* OpenGLES.framework */; }; - EE12001E13538ED6004E6AAB /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = EE12001C13538ED6004E6AAB /* InfoPlist.strings */; }; - EE12002113538ED6004E6AAB /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = EE12002013538ED6004E6AAB /* main.m */; }; - EE12002413538ED6004E6AAB /* BenchmarksAppDelegate.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE12002313538ED6004E6AAB /* BenchmarksAppDelegate.mm */; }; - EE12002713538ED6004E6AAB /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = EE12002513538ED6004E6AAB /* MainWindow.xib */; }; - EE12002913538ED6004E6AAB /* Shader.fsh in Resources */ = {isa = PBXBuildFile; fileRef = EE12002813538ED6004E6AAB /* Shader.fsh */; }; - EE12002B13538ED6004E6AAB /* Shader.vsh in Resources */ = {isa = PBXBuildFile; fileRef = EE12002A13538ED6004E6AAB /* Shader.vsh */; }; - EE12002E13538ED6004E6AAB /* EAGLView.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE12002D13538ED6004E6AAB /* EAGLView.mm */; }; - EE12003113538ED6004E6AAB /* BenchmarksViewController.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE12003013538ED6004E6AAB /* BenchmarksViewController.mm */; }; - EE12003413538ED6004E6AAB /* BenchmarksViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = EE12003213538ED6004E6AAB /* BenchmarksViewController.xib */; }; - EE12004413539683004E6AAB /* RenderBuffer.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE12004113539683004E6AAB /* RenderBuffer.mm */; }; - EE12004513539683004E6AAB /* RenderContext.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE12004313539683004E6AAB /* RenderContext.mm */; }; - EE1200601353A5FC004E6AAB /* libbase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12004A1353A5FC004E6AAB /* libbase.a */; }; - EE1200611353A5FC004E6AAB /* libbzip2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12004B1353A5FC004E6AAB /* libbzip2.a */; }; - EE1200621353A5FC004E6AAB /* libcoding.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12004C1353A5FC004E6AAB /* libcoding.a */; }; - EE1200631353A5FC004E6AAB /* libexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12004D1353A5FC004E6AAB /* libexpat.a */; }; - EE1200641353A5FC004E6AAB /* libfreetype.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12004E1353A5FC004E6AAB /* libfreetype.a */; }; - EE1200651353A5FC004E6AAB /* libfribidi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12004F1353A5FC004E6AAB /* libfribidi.a */; }; - EE1200671353A5FC004E6AAB /* libgeometry.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE1200511353A5FC004E6AAB /* libgeometry.a */; }; - EE1200691353A5FC004E6AAB /* libindexer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE1200531353A5FC004E6AAB /* libindexer.a */; }; - EE12006A1353A5FC004E6AAB /* libjansson.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE1200541353A5FC004E6AAB /* libjansson.a */; }; - EE12006B1353A5FC004E6AAB /* libmap.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE1200551353A5FC004E6AAB /* libmap.a */; }; - EE12006D1353A5FC004E6AAB /* libprotobuf.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE1200571353A5FC004E6AAB /* libprotobuf.a */; }; - EE1200701353A5FC004E6AAB /* libstorage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12005A1353A5FC004E6AAB /* libstorage.a */; }; - EE1200711353A5FC004E6AAB /* libtomcrypt.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12005B1353A5FC004E6AAB /* libtomcrypt.a */; }; - EE1200721353A5FD004E6AAB /* libversion.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12005C1353A5FC004E6AAB /* libversion.a */; }; - EE1200731353A5FD004E6AAB /* libwords.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12005D1353A5FC004E6AAB /* libwords.a */; }; - EE1200741353A5FD004E6AAB /* libyg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12005E1353A5FC004E6AAB /* libyg.a */; }; - EE1200751353A5FD004E6AAB /* libzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = EE12005F1353A5FC004E6AAB /* libzlib.a */; }; - EE1200781353A664004E6AAB /* IPhonePlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = EE1200771353A664004E6AAB /* IPhonePlatform.mm */; }; - FA37C99E1354CC14006610DC /* 30_tmot_kapilan_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C97B1354CC14006610DC /* 30_tmot_kapilan_n_ship.ttf */; }; - FA37C99F1354CC14006610DC /* 29_tlot_harshpriya_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C97C1354CC14006610DC /* 29_tlot_harshpriya_n_ship.ttf */; }; - FA37C9A01354CC14006610DC /* 28_sdot_dhruv_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C97D1354CC14006610DC /* 28_sdot_dhruv_n_ship.ttf */; }; - FA37C9A11354CC14006610DC /* 27_orot_mukt.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C97E1354CC14006610DC /* 27_orot_mukt.ttf */; }; - FA37C9A21354CC14006610DC /* 26_neot_dhruv_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C97F1354CC14006610DC /* 26_neot_dhruv_n_ship.ttf */; }; - FA37C9A31354CC14006610DC /* 25_mrot_yogesh_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9801354CC14006610DC /* 25_mrot_yogesh_n_ship.ttf */; }; - FA37C9A41354CC14006610DC /* 24_mlot_karthika_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9811354CC14006610DC /* 24_mlot_karthika_n_ship.ttf */; }; - FA37C9A51354CC14006610DC /* 23_mlot_aswathi_n_ship.TTF in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9821354CC14006610DC /* 23_mlot_aswathi_n_ship.TTF */; }; - FA37C9A61354CC14006610DC /* 22_miot_dhruv_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9831354CC14006610DC /* 22_miot_dhruv_n_ship.ttf */; }; - FA37C9A71354CC14006610DC /* 21_ksot_dhruv_n_ship.TTF in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9841354CC14006610DC /* 21_ksot_dhruv_n_ship.TTF */; }; - FA37C9A81354CC14006610DC /* 20_koot_dhruv_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9851354CC14006610DC /* 20_koot_dhruv_n_ship.ttf */; }; - FA37C9A91354CC14006610DC /* 19_knot_nandi_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9861354CC14006610DC /* 19_knot_nandi_n_ship.ttf */; }; - FA37C9AA1354CC14006610DC /* 18_gjot_rohit_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9871354CC14006610DC /* 18_gjot_rohit_n_ship.ttf */; }; - FA37C9AB1354CC14006610DC /* 17_gjot_pratik_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9881354CC14006610DC /* 17_gjot_pratik_n_ship.ttf */; }; - FA37C9AC1354CC14006610DC /* 16_gist-snd-dvot_dhruv_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9891354CC14006610DC /* 16_gist-snd-dvot_dhruv_n_ship.ttf */; }; - FA37C9AD1354CC14006610DC /* 15_gist_sat_dvot_dhruv_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C98A1354CC14006610DC /* 15_gist_sat_dvot_dhruv_n_ship.ttf */; }; - FA37C9AE1354CC14006610DC /* 14_dvot_yogesh_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C98B1354CC14006610DC /* 14_dvot_yogesh_n_ship.ttf */; }; - FA37C9AF1354CC14006610DC /* 13_doot_dhruv_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C98C1354CC14006610DC /* 13_doot_dhruv_n_ship.ttf */; }; - FA37C9B01354CC14006610DC /* 12_boot_dhruv_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C98D1354CC14006610DC /* 12_boot_dhruv_n_ship.ttf */; }; - FA37C9B11354CC14006610DC /* 11_bnot_satyajit_sm_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C98E1354CC14006610DC /* 11_bnot_satyajit_sm_n_ship.ttf */; }; - FA37C9B21354CC14006610DC /* 10_asot_biisha_n_ship.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C98F1354CC14006610DC /* 10_asot_biisha_n_ship.ttf */; }; - FA37C9B31354CC14006610DC /* 09_droid_sans_thai.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9901354CC14006610DC /* 09_droid_sans_thai.ttf */; }; - FA37C9B41354CC14006610DC /* symbols_48.png in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9911354CC14006610DC /* symbols_48.png */; }; - FA37C9B51354CC14006610DC /* symbols_24.png in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9921354CC14006610DC /* symbols_24.png */; }; - FA37C9B61354CC14006610DC /* basic.skn in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9931354CC14006610DC /* basic.skn */; }; - FA37C9B71354CC14006610DC /* basic_highres.skn in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9941354CC14006610DC /* basic_highres.skn */; }; - FA37C9B81354CC14006610DC /* 03_jomolhari-id-a3d.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9951354CC14006610DC /* 03_jomolhari-id-a3d.ttf */; }; - FA37C9B91354CC14006610DC /* unicode_blocks.txt in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9961354CC14006610DC /* unicode_blocks.txt */; }; - FA37C9BA1354CC14006610DC /* fonts_whitelist.txt in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9971354CC14006610DC /* fonts_whitelist.txt */; }; - FA37C9BB1354CC14006610DC /* fonts_blacklist.txt in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9981354CC14006610DC /* fonts_blacklist.txt */; }; - FA37C9BC1354CC14006610DC /* 07_abyssinica_sil_r.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9991354CC14006610DC /* 07_abyssinica_sil_r.ttf */; }; - FA37C9BD1354CC14006610DC /* 05_khmeros.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C99A1354CC14006610DC /* 05_khmeros.ttf */; }; - FA37C9BE1354CC14006610DC /* 04_padauk.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C99B1354CC14006610DC /* 04_padauk.ttf */; }; - 9DF04B261B71019700DACAF1 /* 02_droidsans-fallback.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 9DF04B251B71019700DACAF1 /* 02_droidsans-fallback.ttf */; }; - FA37C9C01354CC14006610DC /* 01_dejavusans.ttf in Resources */ = {isa = PBXBuildFile; fileRef = FA37C99D1354CC14006610DC /* 01_dejavusans.ttf */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - EE12000B13538ED6004E6AAB /* Benchmarks.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Benchmarks.app; sourceTree = BUILT_PRODUCTS_DIR; }; - EE12000F13538ED6004E6AAB /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; - EE12001113538ED6004E6AAB /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - EE12001313538ED6004E6AAB /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - EE12001513538ED6004E6AAB /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; - EE12001713538ED6004E6AAB /* OpenGLES.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGLES.framework; path = System/Library/Frameworks/OpenGLES.framework; sourceTree = SDKROOT; }; - EE12001B13538ED6004E6AAB /* Benchmarks-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Benchmarks-Info.plist"; sourceTree = ""; }; - EE12001D13538ED6004E6AAB /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; - EE12001F13538ED6004E6AAB /* Benchmarks-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Benchmarks-Prefix.pch"; sourceTree = ""; }; - EE12002013538ED6004E6AAB /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - EE12002213538ED6004E6AAB /* BenchmarksAppDelegate.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = BenchmarksAppDelegate.hpp; sourceTree = ""; }; - EE12002313538ED6004E6AAB /* BenchmarksAppDelegate.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = BenchmarksAppDelegate.mm; sourceTree = ""; }; - EE12002613538ED6004E6AAB /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainWindow.xib; sourceTree = ""; }; - EE12002813538ED6004E6AAB /* Shader.fsh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.glsl; name = Shader.fsh; path = Shaders/Shader.fsh; sourceTree = ""; }; - EE12002A13538ED6004E6AAB /* Shader.vsh */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.glsl; name = Shader.vsh; path = Shaders/Shader.vsh; sourceTree = ""; }; - EE12002C13538ED6004E6AAB /* EAGLView.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = EAGLView.hpp; sourceTree = ""; }; - EE12002D13538ED6004E6AAB /* EAGLView.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = EAGLView.mm; sourceTree = ""; }; - EE12002F13538ED6004E6AAB /* BenchmarksViewController.hpp */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.h; path = BenchmarksViewController.hpp; sourceTree = ""; }; - EE12003013538ED6004E6AAB /* BenchmarksViewController.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = BenchmarksViewController.mm; sourceTree = ""; }; - EE12003313538ED6004E6AAB /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/BenchmarksViewController.xib; sourceTree = ""; }; - EE12004013539683004E6AAB /* RenderBuffer.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = RenderBuffer.hpp; path = ../../../omim/iphone/Maps/Classes/RenderBuffer.hpp; sourceTree = SOURCE_ROOT; }; - EE12004113539683004E6AAB /* RenderBuffer.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = RenderBuffer.mm; path = ../../../omim/iphone/Maps/Classes/RenderBuffer.mm; sourceTree = SOURCE_ROOT; }; - EE12004213539683004E6AAB /* RenderContext.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = RenderContext.hpp; path = ../../../omim/iphone/Maps/Classes/RenderContext.hpp; sourceTree = SOURCE_ROOT; }; - EE12004313539683004E6AAB /* RenderContext.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = RenderContext.mm; path = ../../../omim/iphone/Maps/Classes/RenderContext.mm; sourceTree = SOURCE_ROOT; }; - EE12004A1353A5FC004E6AAB /* libbase.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libbase.a; sourceTree = SOURCE_ROOT; }; - EE12004B1353A5FC004E6AAB /* libbzip2.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libbzip2.a; sourceTree = SOURCE_ROOT; }; - EE12004C1353A5FC004E6AAB /* libcoding.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcoding.a; sourceTree = SOURCE_ROOT; }; - EE12004D1353A5FC004E6AAB /* libexpat.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libexpat.a; sourceTree = SOURCE_ROOT; }; - EE12004E1353A5FC004E6AAB /* libfreetype.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libfreetype.a; sourceTree = SOURCE_ROOT; }; - EE12004F1353A5FC004E6AAB /* libfribidi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libfribidi.a; sourceTree = SOURCE_ROOT; }; - EE1200511353A5FC004E6AAB /* libgeometry.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgeometry.a; sourceTree = SOURCE_ROOT; }; - EE1200531353A5FC004E6AAB /* libindexer.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libindexer.a; sourceTree = SOURCE_ROOT; }; - EE1200541353A5FC004E6AAB /* libjansson.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libjansson.a; sourceTree = SOURCE_ROOT; }; - EE1200551353A5FC004E6AAB /* libmap.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libmap.a; sourceTree = SOURCE_ROOT; }; - EE1200571353A5FC004E6AAB /* libprotobuf.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libprotobuf.a; sourceTree = SOURCE_ROOT; }; - EE12005A1353A5FC004E6AAB /* libstorage.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libstorage.a; sourceTree = SOURCE_ROOT; }; - EE12005B1353A5FC004E6AAB /* libtomcrypt.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libtomcrypt.a; sourceTree = SOURCE_ROOT; }; - EE12005C1353A5FC004E6AAB /* libversion.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libversion.a; sourceTree = SOURCE_ROOT; }; - EE12005D1353A5FC004E6AAB /* libwords.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libwords.a; sourceTree = SOURCE_ROOT; }; - EE12005E1353A5FC004E6AAB /* libyg.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libyg.a; sourceTree = SOURCE_ROOT; }; - EE12005F1353A5FC004E6AAB /* libzlib.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libzlib.a; sourceTree = SOURCE_ROOT; }; - EE1200761353A664004E6AAB /* IPhonePlatform.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = IPhonePlatform.hpp; path = ../../../omim/iphone/Maps/Platform/IPhonePlatform.hpp; sourceTree = SOURCE_ROOT; }; - EE1200771353A664004E6AAB /* IPhonePlatform.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; name = IPhonePlatform.mm; path = ../../../omim/iphone/Maps/Platform/IPhonePlatform.mm; sourceTree = SOURCE_ROOT; }; - FA37C97B1354CC14006610DC /* 30_tmot_kapilan_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 30_tmot_kapilan_n_ship.ttf; path = ../../data/30_tmot_kapilan_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C97C1354CC14006610DC /* 29_tlot_harshpriya_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 29_tlot_harshpriya_n_ship.ttf; path = ../../data/29_tlot_harshpriya_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C97D1354CC14006610DC /* 28_sdot_dhruv_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 28_sdot_dhruv_n_ship.ttf; path = ../../data/28_sdot_dhruv_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C97E1354CC14006610DC /* 27_orot_mukt.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 27_orot_mukt.ttf; path = ../../data/27_orot_mukt.ttf; sourceTree = SOURCE_ROOT; }; - FA37C97F1354CC14006610DC /* 26_neot_dhruv_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 26_neot_dhruv_n_ship.ttf; path = ../../data/26_neot_dhruv_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9801354CC14006610DC /* 25_mrot_yogesh_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 25_mrot_yogesh_n_ship.ttf; path = ../../data/25_mrot_yogesh_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9811354CC14006610DC /* 24_mlot_karthika_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 24_mlot_karthika_n_ship.ttf; path = ../../data/24_mlot_karthika_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9821354CC14006610DC /* 23_mlot_aswathi_n_ship.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; name = 23_mlot_aswathi_n_ship.TTF; path = ../../data/23_mlot_aswathi_n_ship.TTF; sourceTree = SOURCE_ROOT; }; - FA37C9831354CC14006610DC /* 22_miot_dhruv_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 22_miot_dhruv_n_ship.ttf; path = ../../data/22_miot_dhruv_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9841354CC14006610DC /* 21_ksot_dhruv_n_ship.TTF */ = {isa = PBXFileReference; lastKnownFileType = file; name = 21_ksot_dhruv_n_ship.TTF; path = ../../data/21_ksot_dhruv_n_ship.TTF; sourceTree = SOURCE_ROOT; }; - FA37C9851354CC14006610DC /* 20_koot_dhruv_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 20_koot_dhruv_n_ship.ttf; path = ../../data/20_koot_dhruv_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9861354CC14006610DC /* 19_knot_nandi_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 19_knot_nandi_n_ship.ttf; path = ../../data/19_knot_nandi_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9871354CC14006610DC /* 18_gjot_rohit_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 18_gjot_rohit_n_ship.ttf; path = ../../data/18_gjot_rohit_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9881354CC14006610DC /* 17_gjot_pratik_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 17_gjot_pratik_n_ship.ttf; path = ../../data/17_gjot_pratik_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9891354CC14006610DC /* 16_gist-snd-dvot_dhruv_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "16_gist-snd-dvot_dhruv_n_ship.ttf"; path = "../../data/16_gist-snd-dvot_dhruv_n_ship.ttf"; sourceTree = SOURCE_ROOT; }; - FA37C98A1354CC14006610DC /* 15_gist_sat_dvot_dhruv_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 15_gist_sat_dvot_dhruv_n_ship.ttf; path = ../../data/15_gist_sat_dvot_dhruv_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C98B1354CC14006610DC /* 14_dvot_yogesh_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 14_dvot_yogesh_n_ship.ttf; path = ../../data/14_dvot_yogesh_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C98C1354CC14006610DC /* 13_doot_dhruv_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 13_doot_dhruv_n_ship.ttf; path = ../../data/13_doot_dhruv_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C98D1354CC14006610DC /* 12_boot_dhruv_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 12_boot_dhruv_n_ship.ttf; path = ../../data/12_boot_dhruv_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C98E1354CC14006610DC /* 11_bnot_satyajit_sm_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 11_bnot_satyajit_sm_n_ship.ttf; path = ../../data/11_bnot_satyajit_sm_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C98F1354CC14006610DC /* 10_asot_biisha_n_ship.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 10_asot_biisha_n_ship.ttf; path = ../../data/10_asot_biisha_n_ship.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9901354CC14006610DC /* 09_droid_sans_thai.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 09_droid_sans_thai.ttf; path = ../../data/09_droid_sans_thai.ttf; sourceTree = SOURCE_ROOT; }; - FA37C9911354CC14006610DC /* symbols_48.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = symbols_48.png; path = ../../data/symbols_48.png; sourceTree = SOURCE_ROOT; }; - FA37C9921354CC14006610DC /* symbols_24.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = symbols_24.png; path = ../../data/symbols_24.png; sourceTree = SOURCE_ROOT; }; - FA37C9931354CC14006610DC /* basic.skn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = basic.skn; path = ../../data/basic.skn; sourceTree = SOURCE_ROOT; }; - FA37C9941354CC14006610DC /* basic_highres.skn */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = basic_highres.skn; path = ../../data/basic_highres.skn; sourceTree = SOURCE_ROOT; }; - FA37C9951354CC14006610DC /* 03_jomolhari-id-a3d.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "03_jomolhari-id-a3d.ttf"; path = "../../data/03_jomolhari-id-a3d.ttf"; sourceTree = SOURCE_ROOT; }; - FA37C9961354CC14006610DC /* unicode_blocks.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = unicode_blocks.txt; path = ../../data/unicode_blocks.txt; sourceTree = SOURCE_ROOT; }; - FA37C9971354CC14006610DC /* fonts_whitelist.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fonts_whitelist.txt; path = ../../data/fonts_whitelist.txt; sourceTree = SOURCE_ROOT; }; - FA37C9981354CC14006610DC /* fonts_blacklist.txt */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text; name = fonts_blacklist.txt; path = ../../data/fonts_blacklist.txt; sourceTree = SOURCE_ROOT; }; - FA37C9991354CC14006610DC /* 07_abyssinica_sil_r.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 07_abyssinica_sil_r.ttf; path = ../../data/07_abyssinica_sil_r.ttf; sourceTree = SOURCE_ROOT; }; - FA37C99A1354CC14006610DC /* 05_khmeros.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 05_khmeros.ttf; path = ../../data/05_khmeros.ttf; sourceTree = SOURCE_ROOT; }; - FA37C99B1354CC14006610DC /* 04_padauk.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 04_padauk.ttf; path = ../../data/04_padauk.ttf; sourceTree = SOURCE_ROOT; }; - 9DF04B251B71019700DACAF1 /* 02_droidsans-fallback.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = "02_droidsans-fallback.ttf"; path = "../../data/02_droidsans-fallback.ttf"; sourceTree = ""; }; - FA37C99D1354CC14006610DC /* 01_dejavusans.ttf */ = {isa = PBXFileReference; lastKnownFileType = file; name = 01_dejavusans.ttf; path = ../../data/01_dejavusans.ttf; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - EE12000813538ED6004E6AAB /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - EE12001013538ED6004E6AAB /* UIKit.framework in Frameworks */, - EE12001213538ED6004E6AAB /* Foundation.framework in Frameworks */, - EE12001413538ED6004E6AAB /* CoreGraphics.framework in Frameworks */, - EE12001613538ED6004E6AAB /* QuartzCore.framework in Frameworks */, - EE12001813538ED6004E6AAB /* OpenGLES.framework in Frameworks */, - EE1200601353A5FC004E6AAB /* libbase.a in Frameworks */, - EE1200611353A5FC004E6AAB /* libbzip2.a in Frameworks */, - EE1200621353A5FC004E6AAB /* libcoding.a in Frameworks */, - EE1200631353A5FC004E6AAB /* libexpat.a in Frameworks */, - EE1200641353A5FC004E6AAB /* libfreetype.a in Frameworks */, - EE1200651353A5FC004E6AAB /* libfribidi.a in Frameworks */, - EE1200671353A5FC004E6AAB /* libgeometry.a in Frameworks */, - EE1200691353A5FC004E6AAB /* libindexer.a in Frameworks */, - EE12006A1353A5FC004E6AAB /* libjansson.a in Frameworks */, - EE12006B1353A5FC004E6AAB /* libmap.a in Frameworks */, - EE12006D1353A5FC004E6AAB /* libprotobuf.a in Frameworks */, - EE1200701353A5FC004E6AAB /* libstorage.a in Frameworks */, - EE1200711353A5FC004E6AAB /* libtomcrypt.a in Frameworks */, - EE1200721353A5FD004E6AAB /* libversion.a in Frameworks */, - EE1200731353A5FD004E6AAB /* libwords.a in Frameworks */, - EE1200741353A5FD004E6AAB /* libyg.a in Frameworks */, - EE1200751353A5FD004E6AAB /* libzlib.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - EE12000013538ED6004E6AAB = { - isa = PBXGroup; - children = ( - EE1200791353A6CE004E6AAB /* Resources */, - EE1200491353A584004E6AAB /* Static Libraries */, - EE12001913538ED6004E6AAB /* Benchmarks */, - EE12000E13538ED6004E6AAB /* Frameworks */, - EE12000C13538ED6004E6AAB /* Products */, - ); - sourceTree = ""; - }; - EE12000C13538ED6004E6AAB /* Products */ = { - isa = PBXGroup; - children = ( - EE12000B13538ED6004E6AAB /* Benchmarks.app */, - ); - name = Products; - sourceTree = ""; - }; - EE12000E13538ED6004E6AAB /* Frameworks */ = { - isa = PBXGroup; - children = ( - EE12000F13538ED6004E6AAB /* UIKit.framework */, - EE12001113538ED6004E6AAB /* Foundation.framework */, - EE12001313538ED6004E6AAB /* CoreGraphics.framework */, - EE12001513538ED6004E6AAB /* QuartzCore.framework */, - EE12001713538ED6004E6AAB /* OpenGLES.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - EE12001913538ED6004E6AAB /* Benchmarks */ = { - isa = PBXGroup; - children = ( - EE1200761353A664004E6AAB /* IPhonePlatform.hpp */, - EE1200771353A664004E6AAB /* IPhonePlatform.mm */, - EE12004013539683004E6AAB /* RenderBuffer.hpp */, - EE12004113539683004E6AAB /* RenderBuffer.mm */, - EE12004213539683004E6AAB /* RenderContext.hpp */, - EE12004313539683004E6AAB /* RenderContext.mm */, - EE12002213538ED6004E6AAB /* BenchmarksAppDelegate.hpp */, - EE12002313538ED6004E6AAB /* BenchmarksAppDelegate.mm */, - EE12002513538ED6004E6AAB /* MainWindow.xib */, - EE12002813538ED6004E6AAB /* Shader.fsh */, - EE12002A13538ED6004E6AAB /* Shader.vsh */, - EE12002C13538ED6004E6AAB /* EAGLView.hpp */, - EE12002D13538ED6004E6AAB /* EAGLView.mm */, - EE12002F13538ED6004E6AAB /* BenchmarksViewController.hpp */, - EE12003013538ED6004E6AAB /* BenchmarksViewController.mm */, - EE12003213538ED6004E6AAB /* BenchmarksViewController.xib */, - EE12001A13538ED6004E6AAB /* Supporting Files */, - ); - path = Benchmarks; - sourceTree = ""; - }; - EE12001A13538ED6004E6AAB /* Supporting Files */ = { - isa = PBXGroup; - children = ( - EE12001B13538ED6004E6AAB /* Benchmarks-Info.plist */, - EE12001C13538ED6004E6AAB /* InfoPlist.strings */, - EE12001F13538ED6004E6AAB /* Benchmarks-Prefix.pch */, - EE12002013538ED6004E6AAB /* main.m */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - EE1200491353A584004E6AAB /* Static Libraries */ = { - isa = PBXGroup; - children = ( - EE12004A1353A5FC004E6AAB /* libbase.a */, - EE12004B1353A5FC004E6AAB /* libbzip2.a */, - EE12004C1353A5FC004E6AAB /* libcoding.a */, - EE12004D1353A5FC004E6AAB /* libexpat.a */, - EE12004E1353A5FC004E6AAB /* libfreetype.a */, - EE12004F1353A5FC004E6AAB /* libfribidi.a */, - EE1200511353A5FC004E6AAB /* libgeometry.a */, - EE1200531353A5FC004E6AAB /* libindexer.a */, - EE1200541353A5FC004E6AAB /* libjansson.a */, - EE1200551353A5FC004E6AAB /* libmap.a */, - EE1200571353A5FC004E6AAB /* libprotobuf.a */, - EE12005A1353A5FC004E6AAB /* libstorage.a */, - EE12005B1353A5FC004E6AAB /* libtomcrypt.a */, - EE12005C1353A5FC004E6AAB /* libversion.a */, - EE12005D1353A5FC004E6AAB /* libwords.a */, - EE12005E1353A5FC004E6AAB /* libyg.a */, - EE12005F1353A5FC004E6AAB /* libzlib.a */, - ); - name = "Static Libraries"; - sourceTree = ""; - }; - EE1200791353A6CE004E6AAB /* Resources */ = { - isa = PBXGroup; - children = ( - FA37C97B1354CC14006610DC /* 30_tmot_kapilan_n_ship.ttf */, - FA37C97C1354CC14006610DC /* 29_tlot_harshpriya_n_ship.ttf */, - FA37C97D1354CC14006610DC /* 28_sdot_dhruv_n_ship.ttf */, - FA37C97E1354CC14006610DC /* 27_orot_mukt.ttf */, - FA37C97F1354CC14006610DC /* 26_neot_dhruv_n_ship.ttf */, - FA37C9801354CC14006610DC /* 25_mrot_yogesh_n_ship.ttf */, - FA37C9811354CC14006610DC /* 24_mlot_karthika_n_ship.ttf */, - FA37C9821354CC14006610DC /* 23_mlot_aswathi_n_ship.TTF */, - FA37C9831354CC14006610DC /* 22_miot_dhruv_n_ship.ttf */, - FA37C9841354CC14006610DC /* 21_ksot_dhruv_n_ship.TTF */, - FA37C9851354CC14006610DC /* 20_koot_dhruv_n_ship.ttf */, - FA37C9861354CC14006610DC /* 19_knot_nandi_n_ship.ttf */, - FA37C9871354CC14006610DC /* 18_gjot_rohit_n_ship.ttf */, - FA37C9881354CC14006610DC /* 17_gjot_pratik_n_ship.ttf */, - FA37C9891354CC14006610DC /* 16_gist-snd-dvot_dhruv_n_ship.ttf */, - FA37C98A1354CC14006610DC /* 15_gist_sat_dvot_dhruv_n_ship.ttf */, - FA37C98B1354CC14006610DC /* 14_dvot_yogesh_n_ship.ttf */, - FA37C98C1354CC14006610DC /* 13_doot_dhruv_n_ship.ttf */, - FA37C98D1354CC14006610DC /* 12_boot_dhruv_n_ship.ttf */, - FA37C98E1354CC14006610DC /* 11_bnot_satyajit_sm_n_ship.ttf */, - FA37C98F1354CC14006610DC /* 10_asot_biisha_n_ship.ttf */, - FA37C9901354CC14006610DC /* 09_droid_sans_thai.ttf */, - FA37C9911354CC14006610DC /* symbols_48.png */, - FA37C9921354CC14006610DC /* symbols_24.png */, - FA37C9931354CC14006610DC /* basic.skn */, - FA37C9941354CC14006610DC /* basic_highres.skn */, - FA37C9951354CC14006610DC /* 03_jomolhari-id-a3d.ttf */, - FA37C9961354CC14006610DC /* unicode_blocks.txt */, - FA37C9971354CC14006610DC /* fonts_whitelist.txt */, - FA37C9981354CC14006610DC /* fonts_blacklist.txt */, - FA37C9991354CC14006610DC /* 07_abyssinica_sil_r.ttf */, - FA37C99A1354CC14006610DC /* 05_khmeros.ttf */, - FA37C99B1354CC14006610DC /* 04_padauk.ttf */, - 9DF04B251B71019700DACAF1 /* 02_droidsans-fallback.ttf */, - FA37C99D1354CC14006610DC /* 01_dejavusans.ttf */, - ); - name = Resources; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - EE12000A13538ED6004E6AAB /* Benchmarks */ = { - isa = PBXNativeTarget; - buildConfigurationList = EE12003713538ED7004E6AAB /* Build configuration list for PBXNativeTarget "Benchmarks" */; - buildPhases = ( - EE12000713538ED6004E6AAB /* Sources */, - EE12000813538ED6004E6AAB /* Frameworks */, - EE12000913538ED6004E6AAB /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Benchmarks; - productName = Benchmarks; - productReference = EE12000B13538ED6004E6AAB /* Benchmarks.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - EE12000213538ED6004E6AAB /* Project object */ = { - isa = PBXProject; - attributes = { - ORGANIZATIONNAME = "MapsWithMe"; - }; - buildConfigurationList = EE12000513538ED6004E6AAB /* Build configuration list for PBXProject "Benchmarks" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = EE12000013538ED6004E6AAB; - productRefGroup = EE12000C13538ED6004E6AAB /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - EE12000A13538ED6004E6AAB /* Benchmarks */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - EE12000913538ED6004E6AAB /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EE12001E13538ED6004E6AAB /* InfoPlist.strings in Resources */, - EE12002713538ED6004E6AAB /* MainWindow.xib in Resources */, - EE12002913538ED6004E6AAB /* Shader.fsh in Resources */, - EE12002B13538ED6004E6AAB /* Shader.vsh in Resources */, - EE12003413538ED6004E6AAB /* BenchmarksViewController.xib in Resources */, - FA37C99E1354CC14006610DC /* 30_tmot_kapilan_n_ship.ttf in Resources */, - FA37C99F1354CC14006610DC /* 29_tlot_harshpriya_n_ship.ttf in Resources */, - FA37C9A01354CC14006610DC /* 28_sdot_dhruv_n_ship.ttf in Resources */, - FA37C9A11354CC14006610DC /* 27_orot_mukt.ttf in Resources */, - FA37C9A21354CC14006610DC /* 26_neot_dhruv_n_ship.ttf in Resources */, - FA37C9A31354CC14006610DC /* 25_mrot_yogesh_n_ship.ttf in Resources */, - FA37C9A41354CC14006610DC /* 24_mlot_karthika_n_ship.ttf in Resources */, - FA37C9A51354CC14006610DC /* 23_mlot_aswathi_n_ship.TTF in Resources */, - FA37C9A61354CC14006610DC /* 22_miot_dhruv_n_ship.ttf in Resources */, - FA37C9A71354CC14006610DC /* 21_ksot_dhruv_n_ship.TTF in Resources */, - FA37C9A81354CC14006610DC /* 20_koot_dhruv_n_ship.ttf in Resources */, - FA37C9A91354CC14006610DC /* 19_knot_nandi_n_ship.ttf in Resources */, - FA37C9AA1354CC14006610DC /* 18_gjot_rohit_n_ship.ttf in Resources */, - FA37C9AB1354CC14006610DC /* 17_gjot_pratik_n_ship.ttf in Resources */, - FA37C9AC1354CC14006610DC /* 16_gist-snd-dvot_dhruv_n_ship.ttf in Resources */, - FA37C9AD1354CC14006610DC /* 15_gist_sat_dvot_dhruv_n_ship.ttf in Resources */, - FA37C9AE1354CC14006610DC /* 14_dvot_yogesh_n_ship.ttf in Resources */, - FA37C9AF1354CC14006610DC /* 13_doot_dhruv_n_ship.ttf in Resources */, - FA37C9B01354CC14006610DC /* 12_boot_dhruv_n_ship.ttf in Resources */, - FA37C9B11354CC14006610DC /* 11_bnot_satyajit_sm_n_ship.ttf in Resources */, - FA37C9B21354CC14006610DC /* 10_asot_biisha_n_ship.ttf in Resources */, - FA37C9B31354CC14006610DC /* 09_droid_sans_thai.ttf in Resources */, - FA37C9B41354CC14006610DC /* symbols_48.png in Resources */, - FA37C9B51354CC14006610DC /* symbols_24.png in Resources */, - FA37C9B61354CC14006610DC /* basic.skn in Resources */, - FA37C9B71354CC14006610DC /* basic_highres.skn in Resources */, - FA37C9B81354CC14006610DC /* 03_jomolhari-id-a3d.ttf in Resources */, - FA37C9B91354CC14006610DC /* unicode_blocks.txt in Resources */, - FA37C9BA1354CC14006610DC /* fonts_whitelist.txt in Resources */, - FA37C9BB1354CC14006610DC /* fonts_blacklist.txt in Resources */, - FA37C9BC1354CC14006610DC /* 07_abyssinica_sil_r.ttf in Resources */, - FA37C9BD1354CC14006610DC /* 05_khmeros.ttf in Resources */, - FA37C9BE1354CC14006610DC /* 04_padauk.ttf in Resources */, - 9DF04B261B71019700DACAF1 /* 02_droidsans-fallback.ttf in Resources */, - FA37C9C01354CC14006610DC /* 01_dejavusans.ttf in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - EE12000713538ED6004E6AAB /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EE12002113538ED6004E6AAB /* main.m in Sources */, - EE12002413538ED6004E6AAB /* BenchmarksAppDelegate.mm in Sources */, - EE12002E13538ED6004E6AAB /* EAGLView.mm in Sources */, - EE12003113538ED6004E6AAB /* BenchmarksViewController.mm in Sources */, - EE12004413539683004E6AAB /* RenderBuffer.mm in Sources */, - EE12004513539683004E6AAB /* RenderContext.mm in Sources */, - EE1200781353A664004E6AAB /* IPhonePlatform.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - EE12001C13538ED6004E6AAB /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - EE12001D13538ED6004E6AAB /* en */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - EE12002513538ED6004E6AAB /* MainWindow.xib */ = { - isa = PBXVariantGroup; - children = ( - EE12002613538ED6004E6AAB /* en */, - ); - name = MainWindow.xib; - sourceTree = ""; - }; - EE12003213538ED6004E6AAB /* BenchmarksViewController.xib */ = { - isa = PBXVariantGroup; - children = ( - EE12003313538ED6004E6AAB /* en */, - ); - name = BenchmarksViewController.xib; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - EE12003513538ED7004E6AAB /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COMPRESS_PNG_FILES = NO; - COPY_PHASE_STRIP = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - DEBUG, - _DEBUG, - TARGET_OS_IPHONE, - ); - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_THUMB_SUPPORT = NO; - GCC_VERSION = 4.2; - GCC_WARN_ABOUT_RETURN_TYPE = NO; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ../../3party/boost; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - "LIBRARY_SEARCH_PATHS[sdk=iphoneos*][arch=*]" = "$(SRCROOT)/../../../omim-iphone-build/out/debug"; - OTHER_CFLAGS = "-Wall"; - PRELINK_LIBS = libyg.a; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Debug; - }; - EE12003613538ED7004E6AAB /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - COMPRESS_PNG_FILES = NO; - COPY_PHASE_STRIP = NO; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PREPROCESSOR_DEFINITIONS = ( - RELEASE, - _RELEASE, - TARGET_OS_IPHONE, - ); - GCC_THUMB_SUPPORT = NO; - GCC_UNROLL_LOOPS = YES; - GCC_VERSION = 4.2; - GCC_WARN_ABOUT_RETURN_TYPE = NO; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ../../3party/boost; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - "LIBRARY_SEARCH_PATHS[sdk=iphoneos*][arch=*]" = "$(SRCROOT)/../../../omim-iphone-build/out/release"; - OTHER_CFLAGS = "-Wall"; - PRELINK_LIBS = libyg.a; - SDKROOT = iphoneos; - TARGETED_DEVICE_FAMILY = "1,2"; - }; - name = Release; - }; - EE12003813538ED7004E6AAB /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "Benchmarks/Benchmarks-Prefix.pch"; - "GCC_THUMB_SUPPORT[arch=armv6]" = ""; - INFOPLIST_FILE = "Benchmarks/Benchmarks-Info.plist"; - PRODUCT_NAME = "$(TARGET_NAME)"; - WRAPPER_EXTENSION = app; - }; - name = Debug; - }; - EE12003913538ED7004E6AAB /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "Benchmarks/Benchmarks-Prefix.pch"; - "GCC_THUMB_SUPPORT[arch=armv6]" = ""; - INFOPLIST_FILE = "Benchmarks/Benchmarks-Info.plist"; - PRODUCT_NAME = "$(TARGET_NAME)"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = app; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - EE12000513538ED6004E6AAB /* Build configuration list for PBXProject "Benchmarks" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EE12003513538ED7004E6AAB /* Debug */, - EE12003613538ED7004E6AAB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - EE12003713538ED7004E6AAB /* Build configuration list for PBXNativeTarget "Benchmarks" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EE12003813538ED7004E6AAB /* Debug */, - EE12003913538ED7004E6AAB /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = EE12000213538ED6004E6AAB /* Project object */; -} diff --git a/iphone/Benchmarks/Benchmarks/Benchmarks-Prefix.pch b/iphone/Benchmarks/Benchmarks/Benchmarks-Prefix.pch deleted file mode 100644 index c3171779c5..0000000000 --- a/iphone/Benchmarks/Benchmarks/Benchmarks-Prefix.pch +++ /dev/null @@ -1,14 +0,0 @@ -// -// Prefix header for all source files of the 'Benchmarks' target in the 'Benchmarks' project -// - -#import - -#ifndef __IPHONE_3_0 -#warning "This project uses features only available in iPhone SDK 3.0 and later." -#endif - -#ifdef __OBJC__ - #import - #import -#endif diff --git a/iphone/Benchmarks/Benchmarks/BenchmarksAppDelegate.hpp b/iphone/Benchmarks/Benchmarks/BenchmarksAppDelegate.hpp deleted file mode 100644 index f7d75ca3ca..0000000000 --- a/iphone/Benchmarks/Benchmarks/BenchmarksAppDelegate.hpp +++ /dev/null @@ -1,13 +0,0 @@ -#import - -@class BenchmarksViewController; - -@interface BenchmarksAppDelegate : NSObject { - -} - -@property (nonatomic, retain) IBOutlet UIWindow *window; - -@property (nonatomic, retain) IBOutlet BenchmarksViewController *viewController; - -@end diff --git a/iphone/Benchmarks/Benchmarks/BenchmarksAppDelegate.mm b/iphone/Benchmarks/Benchmarks/BenchmarksAppDelegate.mm deleted file mode 100644 index 68ec970adb..0000000000 --- a/iphone/Benchmarks/Benchmarks/BenchmarksAppDelegate.mm +++ /dev/null @@ -1,70 +0,0 @@ -#import "BenchmarksAppDelegate.hpp" - -#import "EAGLView.hpp" - -#import "BenchmarksViewController.hpp" - -@implementation BenchmarksAppDelegate - - -@synthesize window=_window; - -@synthesize viewController=_viewController; - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions -{ - // Override point for customization after application launch. - self.window.rootViewController = self.viewController; - return YES; -} - -- (void)applicationWillResignActive:(UIApplication *)application -{ - /* - Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. - Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. - */ - [self.viewController stopAnimation]; -} - -- (void)applicationDidEnterBackground:(UIApplication *)application -{ - /* - Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. - If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. - */ -} - -- (void)applicationWillEnterForeground:(UIApplication *)application -{ - /* - Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. - */ -} - -- (void)applicationDidBecomeActive:(UIApplication *)application -{ - /* - Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. - */ - [self.viewController startAnimation]; -} - -- (void)applicationWillTerminate:(UIApplication *)application -{ - /* - Called when the application is about to terminate. - Save data if appropriate. - See also applicationDidEnterBackground:. - */ - [self.viewController stopAnimation]; -} - -- (void)dealloc -{ - [_window release]; - [_viewController release]; - [super dealloc]; -} - -@end diff --git a/iphone/Benchmarks/Benchmarks/BenchmarksViewController.hpp b/iphone/Benchmarks/Benchmarks/BenchmarksViewController.hpp deleted file mode 100644 index ba514ac614..0000000000 --- a/iphone/Benchmarks/Benchmarks/BenchmarksViewController.hpp +++ /dev/null @@ -1,29 +0,0 @@ -#import - -#import - -#import -#import -#import -#import - -@interface BenchmarksViewController : UIViewController { -@private - EAGLContext *context; - GLuint program; - - int m_frameCount; - double m_fullTime; - - BOOL animating; - NSInteger animationFrameInterval; - CADisplayLink *displayLink; -} - -@property (readonly, nonatomic, getter=isAnimating) BOOL animating; -@property (nonatomic) NSInteger animationFrameInterval; - -- (void)startAnimation; -- (void)stopAnimation; - -@end diff --git a/iphone/Benchmarks/Benchmarks/BenchmarksViewController.mm b/iphone/Benchmarks/Benchmarks/BenchmarksViewController.mm deleted file mode 100644 index d6596f7be6..0000000000 --- a/iphone/Benchmarks/Benchmarks/BenchmarksViewController.mm +++ /dev/null @@ -1,391 +0,0 @@ -#import - -#import "BenchmarksViewController.hpp" -#import "EAGLView.hpp" -#include "../../yg/skin.hpp" - -// Uniform index. -enum { - UNIFORM_TRANSLATE, - NUM_UNIFORMS -}; -GLint uniforms[NUM_UNIFORMS]; - -// Attribute index. -enum { - ATTRIB_VERTEX, - ATTRIB_COLOR, - NUM_ATTRIBUTES -}; - -@interface BenchmarksViewController () -@property (nonatomic, retain) EAGLContext *context; -@property (nonatomic, assign) CADisplayLink *displayLink; -- (BOOL)loadShaders; -- (BOOL)compileShader:(GLuint *)shader type:(GLenum)type file:(NSString *)file; -- (BOOL)linkProgram:(GLuint)prog; -- (BOOL)validateProgram:(GLuint)prog; -@end - -@implementation BenchmarksViewController - -@synthesize animating, context, displayLink; - -- (void)awakeFromNib -{ - m_frameCount = 0; - m_fullTime = 0; - /*EAGLContext *aContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES2]; - - if (!aContext) { - aContext = [[EAGLContext alloc] initWithAPI:kEAGLRenderingAPIOpenGLES1]; - } - - if (!aContext) - NSLog(@"Failed to create ES context"); - else if (![EAGLContext setCurrentContext:aContext]) - NSLog(@"Failed to set ES context current"); - - self.context = aContext; - [aContext release]; - - [(EAGLView *)self.view setContext:context]; - [(EAGLView *)self.view setFramebuffer]; - - if ([context API] == kEAGLRenderingAPIOpenGLES2) - [self loadShaders]; - - */ - - animating = FALSE; - animationFrameInterval = 1; - self.displayLink = nil; -} - -- (void)dealloc -{ - if (program) { - glDeleteProgram(program); - program = 0; - } - - /* // Tear down context. - if ([EAGLContext currentContext] == context) - [EAGLContext setCurrentContext:nil]; - - [context release]; - */ - [super dealloc]; -} - -- (void)didReceiveMemoryWarning -{ - // Releases the view if it doesn't have a superview. - [super didReceiveMemoryWarning]; - - // Release any cached data, images, etc. that aren't in use. -} - -- (void)viewWillAppear:(BOOL)animated -{ - [self startAnimation]; - - [super viewWillAppear:animated]; -} - -- (void)viewWillDisappear:(BOOL)animated -{ - [self stopAnimation]; - - [super viewWillDisappear:animated]; -} - -- (void)viewDidUnload -{ - [super viewDidUnload]; - - if (program) { - glDeleteProgram(program); - program = 0; - } - - /* // Tear down context. - if ([EAGLContext currentContext] == context) - [EAGLContext setCurrentContext:nil]; - self.context = nil; */ -} - -- (NSInteger)animationFrameInterval -{ - return animationFrameInterval; -} - -- (void)setAnimationFrameInterval:(NSInteger)frameInterval -{ - /* - Frame interval defines how many display frames must pass between each time the display link fires. - The display link will only fire 30 times a second when the frame internal is two on a display that refreshes 60 times a second. The default frame interval setting of one will fire 60 times a second when the display refreshes at 60 times a second. A frame interval setting of less than one results in undefined behavior. - */ - if (frameInterval >= 1) { - animationFrameInterval = frameInterval; - - if (animating) { - [self stopAnimation]; - [self startAnimation]; - } - } -} - -- (void)startAnimation -{ - if (!animating) { - CADisplayLink *aDisplayLink = [[UIScreen mainScreen] displayLinkWithTarget:self selector:@selector(drawFrame)]; - [aDisplayLink setFrameInterval:animationFrameInterval]; - [aDisplayLink addToRunLoop:[NSRunLoop currentRunLoop] forMode:NSDefaultRunLoopMode]; - self.displayLink = aDisplayLink; - - animating = TRUE; - } -} - -- (void)stopAnimation -{ - if (animating) { - [self.displayLink invalidate]; - self.displayLink = nil; - animating = FALSE; - } -} - -void makeStar(unsigned segCount, m2::PointD const & c, unsigned r, vector & v) -{ - for (unsigned i = 0; i < segCount; ++i) - { - double a = (rand() % 360) / 360.0 * 2 * 3.14; - - v[i] = m2::PointD(c.x + cos(a) * r, c.y + sin(a) * r); - } -} - -- (void)drawFrame -{ - EAGLView * view = (EAGLView *)self.view; - view->frameBuffer->makeCurrent(); - - shared_ptr screen = view->drawer->screen(); - - my::Timer t; - - screen->beginFrame(); - screen->clear(); - - int segCount = 10; - vector v(segCount); - int starCount = 10000; - - double pat[4] = {5, 10, 4, 2}; - - yg::Color col[5] = - { - yg::Color(rand() % 255, rand() % 255, rand() % 255, 255), - yg::Color(rand() % 255, rand() % 255, rand() % 255, 255), - yg::Color(rand() % 255, rand() % 255, rand() % 255, 255), - yg::Color(rand() % 255, rand() % 255, rand() % 255, 255), - yg::Color(rand() % 255, rand() % 255, rand() % 255, 255) - }; - - for (unsigned i = 0; i < starCount; ++i) - { - double r = rand() % 10 + 10; - - m2::PointD c(rand() % view->frameBuffer->width() - 2 * r + r, - rand() % view->frameBuffer->height() - 2 * r + r); - - makeStar(segCount, c, r, v); - - - uint32_t styleID = screen->skin()->mapPenInfo(yg::PenInfo(col[rand() % (sizeof(col) / sizeof(yg::Color))], rand() % 10 + 3, 0, 0, 0)); -// uint32_t styleID = screen->skin()->mapPenInfo(yg::PenInfo(col[0], rand() % 10 + 3, pat, 4, 0)); - - double depth = 200; - - screen->drawPath(&v[0], segCount, styleID, depth); - } - - view->drawer->endFrame(); - - double s = t.ElapsedSeconds(); - - m_frameCount++; - m_fullTime += s; - - std::stringstream out; - out << starCount << " pathes, " << starCount * segCount << " points total, " << s << " seconds, " << m_fullTime / m_frameCount << " sec. avg"; - - screen->beginFrame(); - - screen->drawText(m2::PointD(10, 20), 0, 10, yg::Color(0, 0, 0, 255), out.str().c_str(), true, yg::Color(255, 255, 255, 255), 100, false, false); - - screen->endFrame(); - - NSLog(@"%s", out.str().c_str()); - - view->renderBuffer->present(); -} - -- (BOOL)compileShader:(GLuint *)shader type:(GLenum)type file:(NSString *)file -{ - GLint status; - const GLchar *source; - - source = (GLchar *)[[NSString stringWithContentsOfFile:file encoding:NSUTF8StringEncoding error:nil] UTF8String]; - if (!source) - { - NSLog(@"Failed to load vertex shader"); - return FALSE; - } - - *shader = glCreateShader(type); - glShaderSource(*shader, 1, &source, NULL); - glCompileShader(*shader); - -#if defined(DEBUG) - GLint logLength; - glGetShaderiv(*shader, GL_INFO_LOG_LENGTH, &logLength); - if (logLength > 0) - { - GLchar *log = (GLchar *)malloc(logLength); - glGetShaderInfoLog(*shader, logLength, &logLength, log); - NSLog(@"Shader compile log:\n%s", log); - free(log); - } -#endif - - glGetShaderiv(*shader, GL_COMPILE_STATUS, &status); - if (status == 0) - { - glDeleteShader(*shader); - return FALSE; - } - - return TRUE; -} - -- (BOOL)linkProgram:(GLuint)prog -{ - GLint status; - - glLinkProgram(prog); - -#if defined(DEBUG) - GLint logLength; - glGetProgramiv(prog, GL_INFO_LOG_LENGTH, &logLength); - if (logLength > 0) - { - GLchar *log = (GLchar *)malloc(logLength); - glGetProgramInfoLog(prog, logLength, &logLength, log); - NSLog(@"Program link log:\n%s", log); - free(log); - } -#endif - - glGetProgramiv(prog, GL_LINK_STATUS, &status); - if (status == 0) - return FALSE; - - return TRUE; -} - -- (BOOL)validateProgram:(GLuint)prog -{ - GLint logLength, status; - - glValidateProgram(prog); - glGetProgramiv(prog, GL_INFO_LOG_LENGTH, &logLength); - if (logLength > 0) - { - GLchar *log = (GLchar *)malloc(logLength); - glGetProgramInfoLog(prog, logLength, &logLength, log); - NSLog(@"Program validate log:\n%s", log); - free(log); - } - - glGetProgramiv(prog, GL_VALIDATE_STATUS, &status); - if (status == 0) - return FALSE; - - return TRUE; -} - -- (BOOL)loadShaders -{ - GLuint vertShader, fragShader; - NSString *vertShaderPathname, *fragShaderPathname; - - // Create shader program. - program = glCreateProgram(); - - // Create and compile vertex shader. - vertShaderPathname = [[NSBundle mainBundle] pathForResource:@"Shader" ofType:@"vsh"]; - if (![self compileShader:&vertShader type:GL_VERTEX_SHADER file:vertShaderPathname]) - { - NSLog(@"Failed to compile vertex shader"); - return FALSE; - } - - // Create and compile fragment shader. - fragShaderPathname = [[NSBundle mainBundle] pathForResource:@"Shader" ofType:@"fsh"]; - if (![self compileShader:&fragShader type:GL_FRAGMENT_SHADER file:fragShaderPathname]) - { - NSLog(@"Failed to compile fragment shader"); - return FALSE; - } - - // Attach vertex shader to program. - glAttachShader(program, vertShader); - - // Attach fragment shader to program. - glAttachShader(program, fragShader); - - // Bind attribute locations. - // This needs to be done prior to linking. - glBindAttribLocation(program, ATTRIB_VERTEX, "position"); - glBindAttribLocation(program, ATTRIB_COLOR, "color"); - - // Link program. - if (![self linkProgram:program]) - { - NSLog(@"Failed to link program: %d", program); - - if (vertShader) - { - glDeleteShader(vertShader); - vertShader = 0; - } - if (fragShader) - { - glDeleteShader(fragShader); - fragShader = 0; - } - if (program) - { - glDeleteProgram(program); - program = 0; - } - - return FALSE; - } - - // Get uniform locations. - uniforms[UNIFORM_TRANSLATE] = glGetUniformLocation(program, "translate"); - - // Release vertex and fragment shaders. - if (vertShader) - glDeleteShader(vertShader); - if (fragShader) - glDeleteShader(fragShader); - - return TRUE; -} - -@end diff --git a/iphone/Benchmarks/Benchmarks/EAGLView.hpp b/iphone/Benchmarks/Benchmarks/EAGLView.hpp deleted file mode 100644 index 0f250dfc2d..0000000000 --- a/iphone/Benchmarks/Benchmarks/EAGLView.hpp +++ /dev/null @@ -1,40 +0,0 @@ -// -// EAGLView.h -// OpenGLES_iPhone -// -// Created by mmalc Crawford on 11/18/10. -// Copyright 2010 Apple Inc. All rights reserved. -// - -#import - -#import -#import -#import -#import - -#include "../../std/shared_ptr.hpp" -#include "../../map/drawer_yg.hpp" -#include "RenderContext.hpp" -#include "RenderBuffer.hpp" - -@class EAGLContext; - -// This class wraps the CAEAGLLayer from CoreAnimation into a convenient UIView subclass. -// The view content is basically an EAGL surface you render your OpenGL scene into. -// Note that setting the view non-opaque will only work if the EAGL surface has an alpha channel. -@interface EAGLView : UIView { - -@public - - shared_ptr resourceManager; - shared_ptr renderContext; - shared_ptr renderBuffer; - shared_ptr frameBuffer; - shared_ptr drawer; -} - -//@property (nonatomic, assign) shared_ptr renderContext; -//@property (nonatomic, assign) shared_ptr resourceManager; - -@end diff --git a/iphone/Benchmarks/Benchmarks/EAGLView.mm b/iphone/Benchmarks/Benchmarks/EAGLView.mm deleted file mode 100644 index 6d3b8b57de..0000000000 --- a/iphone/Benchmarks/Benchmarks/EAGLView.mm +++ /dev/null @@ -1,118 +0,0 @@ -// -// EAGLView.m -// OpenGLES_iPhone -// -// Created by mmalc Crawford on 11/18/10. -// Copyright 2010 Apple Inc. All rights reserved. -// - -#import -#include "../../../yg/framebuffer.hpp" -#include "../../../yg/resource_manager.hpp" -#include "RenderContext.hpp" - -#import "EAGLView.hpp" - -@interface EAGLView (PrivateMethods) -- (void)createFramebuffer; -- (void)deleteFramebuffer; -@end - -@implementation EAGLView - -//@synthesize renderContext; -//@synthesize resourceManager; - -// You must implement this method -+ (Class)layerClass -{ - return [CAEAGLLayer class]; -} - -//The EAGL view is stored in the nib file. When it's unarchived it's sent -initWithCoder:. -- (id)initWithCoder:(NSCoder*)coder -{ - self = [super initWithCoder:coder]; - if (self) - { - CAEAGLLayer *eaglLayer = (CAEAGLLayer *)self.layer; - - eaglLayer.opaque = TRUE; - eaglLayer.drawableProperties = [NSDictionary dictionaryWithObjectsAndKeys: - [NSNumber numberWithBool:FALSE], kEAGLDrawablePropertyRetainedBacking, - kEAGLColorFormatRGBA8, kEAGLDrawablePropertyColorFormat, - nil]; - - renderContext.reset(new iphone::RenderContext()); - if (!renderContext) - { - [self release]; - return nil; - } - - renderContext->makeCurrent(); - - frameBuffer.reset(new yg::gl::FrameBuffer()); - - - int bigVBSize = pow(2, ceil(log2(15000 * sizeof(yg::gl::Vertex)))); - int bigIBSize = pow(2, ceil(log2(30000 * sizeof(unsigned short)))); - - int smallVBSize = pow(2, ceil(log2(1500 * sizeof(yg::gl::Vertex)))); - int smallIBSize = pow(2, ceil(log2(3000 * sizeof(unsigned short)))); - - int blitVBSize = pow(2, ceil(log2(10 * sizeof(yg::gl::AuxVertex)))); - int blitIBSize = pow(2, ceil(log2(10 * sizeof(unsigned short)))); - - NSLog(@"Vendor: %s, Renderer: %s", glGetString(GL_VENDOR), glGetString(GL_RENDERER)); - - yg::RtFormat fmt = yg::Rt4Bpp; - - resourceManager.reset(new yg::ResourceManager( - bigVBSize, bigIBSize, 4, - smallVBSize, smallIBSize, 10, - blitVBSize, blitIBSize, 10, - 512, 256, 10, - GetPlatform().ReadPathForFile("unicode_blocks.txt").c_str(), - GetPlatform().ReadPathForFile("fonts_whitelist.txt").c_str(), - GetPlatform().ReadPathForFile("fonts_blacklist.txt").c_str(), - 2000000, - fmt)); - resourceManager->addFonts(GetPlatform().GetFontNames()); - - DrawerYG::params_t p; - p.m_resourceManager = resourceManager; - p.m_isMultiSampled = false; - p.m_frameBuffer = frameBuffer; - - drawer.reset(new DrawerYG(GetPlatform().SkinName(), p)); - } - - self.multipleTouchEnabled = TRUE; - - return self; -} - -- (void)dealloc -{ - [super dealloc]; -} - -- (void)layoutSubviews -{ - CGFloat scaleFactor = 2.0; - if ([self respondsToSelector:@selector(contentScaleFactor)]) - self.contentScaleFactor = scaleFactor; - - int width = self.frame.size.width * scaleFactor; - int height = self.frame.size.height * scaleFactor; - - frameBuffer->resetRenderTarget(); - renderBuffer.reset(); - renderBuffer.reset(new iphone::RenderBuffer(renderContext, (CAEAGLLayer*)self.layer)); - frameBuffer->setRenderTarget(renderBuffer); - frameBuffer->onSize(width, height); - drawer->onSize(width, height); -} - -@end diff --git a/iphone/Benchmarks/Benchmarks/Shaders/Shader.fsh b/iphone/Benchmarks/Benchmarks/Shaders/Shader.fsh deleted file mode 100644 index 14fe852e07..0000000000 --- a/iphone/Benchmarks/Benchmarks/Shaders/Shader.fsh +++ /dev/null @@ -1,6 +0,0 @@ -varying lowp vec4 colorVarying; - -void main() -{ - gl_FragColor = colorVarying; -} diff --git a/iphone/Benchmarks/Benchmarks/Shaders/Shader.vsh b/iphone/Benchmarks/Benchmarks/Shaders/Shader.vsh deleted file mode 100644 index 2f42d90b89..0000000000 --- a/iphone/Benchmarks/Benchmarks/Shaders/Shader.vsh +++ /dev/null @@ -1,14 +0,0 @@ -attribute vec4 position; -attribute vec4 color; - -varying vec4 colorVarying; - -uniform float translate; - -void main() -{ - gl_Position = position; - gl_Position.y += sin(translate) / 2.0; - - colorVarying = color; -} diff --git a/iphone/Benchmarks/Benchmarks/en.lproj/BenchmarksViewController.xib b/iphone/Benchmarks/Benchmarks/en.lproj/BenchmarksViewController.xib deleted file mode 100644 index 23cc426d88..0000000000 --- a/iphone/Benchmarks/Benchmarks/en.lproj/BenchmarksViewController.xib +++ /dev/null @@ -1,145 +0,0 @@ - - - - 1024 - 10H574 - 1248 - 1038.35 - 461.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 106 - - - YES - IBProxyObject - IBUIView - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 274 - {320, 460} - - - - - 3 - MQA - - 2 - - - NO - IBCocoaTouchFramework - - - - - YES - - - view - - - - 3 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - -2 - - - - - 2 - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 2.CustomClassName - 2.IBEditorWindowLastContentRect - 2.IBPluginDependency - - - YES - BenchmarksViewController - UIResponder - EAGLView - {{401, 662}, {320, 460}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - - YES - - - - - - YES - - - - - 4 - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS - - - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - Untitled.xcodeproj - 3 - 106 - - diff --git a/iphone/Benchmarks/Benchmarks/en.lproj/InfoPlist.strings b/iphone/Benchmarks/Benchmarks/en.lproj/InfoPlist.strings deleted file mode 100644 index 477b28ff8f..0000000000 --- a/iphone/Benchmarks/Benchmarks/en.lproj/InfoPlist.strings +++ /dev/null @@ -1,2 +0,0 @@ -/* Localized versions of Info.plist keys */ - diff --git a/iphone/Benchmarks/Benchmarks/en.lproj/MainWindow.xib b/iphone/Benchmarks/Benchmarks/en.lproj/MainWindow.xib deleted file mode 100644 index 15b0162479..0000000000 --- a/iphone/Benchmarks/Benchmarks/en.lproj/MainWindow.xib +++ /dev/null @@ -1,196 +0,0 @@ - - - - 1056 - 10H574 - 1248 - 1038.35 - 461.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 106 - - - YES - IBUIWindow - IBUICustomObject - IBUIViewController - IBProxyObject - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - IBCocoaTouchFramework - - - BenchmarksViewController - - 1 - 1 - - YES - IBCocoaTouchFramework - NO - - - - 1316 - - {320, 460} - - 1 - MSAxIDEAA - - NO - IBCocoaTouchFramework - YES - YES - - - - - YES - - - delegate - - - - 4 - - - - window - - - - 5 - - - - viewController - - - - 11 - - - - - YES - - 0 - - - - - - 2 - - - YES - - - - - -1 - - - File's Owner - - - 3 - - - - - -2 - - - - - 10 - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 10.CustomClassName - 10.IBEditorWindowLastContentRect - 10.IBPluginDependency - 2.IBAttributePlaceholdersKey - 2.IBEditorWindowLastContentRect - 2.IBPluginDependency - 3.CustomClassName - 3.IBPluginDependency - - - YES - UIApplication - UIResponder - BenchmarksViewController - {{415, 586}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - YES - - - - {{228, 376}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - BenchmarksAppDelegate - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - - YES - - - - - - YES - - - - - 11 - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - OpenGLES_iPhone.xcodeproj - 3 - 106 - - diff --git a/iphone/Benchmarks/Benchmarks/main.m b/iphone/Benchmarks/Benchmarks/main.m deleted file mode 100644 index 240307699f..0000000000 --- a/iphone/Benchmarks/Benchmarks/main.m +++ /dev/null @@ -1,9 +0,0 @@ -#import - -int main(int argc, char *argv[]) -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - int retVal = UIApplicationMain(argc, argv, nil, nil); - [pool release]; - return retVal; -} diff --git a/iphone/QuartzBenchmark/Draw2D.h b/iphone/QuartzBenchmark/Draw2D.h deleted file mode 100644 index 6374a8faf2..0000000000 --- a/iphone/QuartzBenchmark/Draw2D.h +++ /dev/null @@ -1,9 +0,0 @@ -#import - - -@interface Draw2D : UIView { - int m_frameCount; - double m_totalTime; -} - -@end diff --git a/iphone/QuartzBenchmark/Draw2D.mm b/iphone/QuartzBenchmark/Draw2D.mm deleted file mode 100644 index 0e8d66b4d0..0000000000 --- a/iphone/QuartzBenchmark/Draw2D.mm +++ /dev/null @@ -1,129 +0,0 @@ -#import "Draw2D.h" - -#include - -using namespace std; - -struct PointD -{ - double x; - double y; - PointD() {} - PointD(double _x, double _y) : x(_x), y(_y) - {} -}; - -@implementation Draw2D - -- (id)initWithFrame:(CGRect)frame -{ - self = [super initWithFrame:frame]; - if (self) { - // Initialization code - m_frameCount = 0; - m_totalTime = 0; - } - return self; -} - -void makeStar(unsigned segCount, PointD const & c, unsigned r, vector & v) -{ - for (unsigned i = 0; i < segCount; ++i) - { - double a = (rand() % 360) / 360.0 * 2 * 3.14; - - v[i].x = c.x + cos(a) * r; - v[i].y = c.y + sin(a) * r; - } -} - -// Only override drawRect: if you perform custom drawing. -// An empty implementation adversely affects performance during animation. -- (void)drawRect:(CGRect)rect -{ - CGContextRef context = UIGraphicsGetCurrentContext(); - - CGAffineTransform t0 = CGContextGetCTM(context); - t0 = CGAffineTransformInvert(t0); - CGContextConcatCTM(context, t0); - - CGFloat scale = [UIScreen mainScreen].scale; - CGContextScaleCTM(context, scale, scale); - - if (m_frameCount == 0) - NSLog(@"Scale : %g", scale); - - int segCount = 10; - vector v(segCount); - int starCount = 10000; - - CGFloat pat[4] = {5, 10, 4, 2}; - - CGContextSetLineDash(context, 0, pat, 4); - - NSDate * start = [[NSDate alloc] init]; - - CGColorSpaceRef colorspace = CGColorSpaceCreateDeviceRGB(); - - int w = (int)CGRectGetWidth(self.frame); - int h = (int)CGRectGetHeight(self.frame); - - if (m_frameCount == 0) - NSLog(@"frameSize %d, %d", w, h); - - CGContextSetLineJoin(context, kCGLineJoinBevel); - - for (unsigned i = 0; i < starCount; ++i) - { - double r = rand() % 10 + 10; - - PointD c(rand() % w - 2 * r + r, - rand() % h - 2 * r + r); - - makeStar(segCount, c, r, v); - - CGContextSetLineWidth(context, rand() % 10 + 3); - CGFloat components[] = {rand() % 255 / 255.0f, rand() % 255 / 255.0f, rand() % 255 / 255.0f, 1.0f}; - CGColorRef color = CGColorCreate(colorspace, components); - CGContextSetStrokeColorWithColor(context, color); - - CGContextMoveToPoint(context, v[0].x, v[0].y); - - for (unsigned i = 1; i < v.size(); ++i) - CGContextAddLineToPoint(context, v[i].x, v[i].y); - - CGContextStrokePath(context); - CGColorRelease(color); - } - - CGColorSpaceRelease(colorspace); - - NSDate * end = [[NSDate alloc] init]; - - float len = [end timeIntervalSinceDate:start]; - - m_frameCount += 1; - m_totalTime += len; - - NSLog(@"last frame takes %g sec, average %g sec per frame", len, m_totalTime / m_frameCount); - - if (m_frameCount > 5) - return; - - [self drawRect:rect]; -} - -- (void)layoutSubviews -{ - CGFloat scaleFactor = 1.0; - if ([self respondsToSelector:@selector(contentScaleFactor)]) - self.contentScaleFactor = scaleFactor; -} - - -- (void)dealloc -{ - [super dealloc]; -} - -@end diff --git a/iphone/QuartzBenchmark/QuartzBenchmark.xcodeproj/project.pbxproj b/iphone/QuartzBenchmark/QuartzBenchmark.xcodeproj/project.pbxproj deleted file mode 100644 index 4b397125fe..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark.xcodeproj/project.pbxproj +++ /dev/null @@ -1,317 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - EEDD1D1E13549F20007A130C /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EEDD1D1D13549F20007A130C /* UIKit.framework */; }; - EEDD1D2013549F20007A130C /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EEDD1D1F13549F20007A130C /* Foundation.framework */; }; - EEDD1D2213549F20007A130C /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = EEDD1D2113549F20007A130C /* CoreGraphics.framework */; }; - EEDD1D2813549F20007A130C /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = EEDD1D2613549F20007A130C /* InfoPlist.strings */; }; - EEDD1D2B13549F20007A130C /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = EEDD1D2A13549F20007A130C /* main.m */; }; - EEDD1D2E13549F20007A130C /* QuartzBenchmarkAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = EEDD1D2D13549F20007A130C /* QuartzBenchmarkAppDelegate.m */; }; - EEDD1D3113549F20007A130C /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = EEDD1D2F13549F20007A130C /* MainWindow.xib */; }; - EEDD1D3413549F20007A130C /* QuartzBenchmarkViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = EEDD1D3313549F20007A130C /* QuartzBenchmarkViewController.m */; }; - EEDD1D3713549F20007A130C /* QuartzBenchmarkViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = EEDD1D3513549F20007A130C /* QuartzBenchmarkViewController.xib */; }; - EEDD1D3F13549FE0007A130C /* Draw2D.mm in Sources */ = {isa = PBXBuildFile; fileRef = EEDD1D3E13549FE0007A130C /* Draw2D.mm */; }; - FA37C9681354C3EB006610DC /* MainWindow-iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = FA37C9661354C3EB006610DC /* MainWindow-iPad.xib */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - EEDD1D1913549F20007A130C /* QuartzBenchmark.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = QuartzBenchmark.app; sourceTree = BUILT_PRODUCTS_DIR; }; - EEDD1D1D13549F20007A130C /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; - EEDD1D1F13549F20007A130C /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - EEDD1D2113549F20007A130C /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - EEDD1D2513549F20007A130C /* QuartzBenchmark-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "QuartzBenchmark-Info.plist"; sourceTree = ""; }; - EEDD1D2713549F20007A130C /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; - EEDD1D2913549F20007A130C /* QuartzBenchmark-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "QuartzBenchmark-Prefix.pch"; sourceTree = ""; }; - EEDD1D2A13549F20007A130C /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - EEDD1D2C13549F20007A130C /* QuartzBenchmarkAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = QuartzBenchmarkAppDelegate.h; sourceTree = ""; }; - EEDD1D2D13549F20007A130C /* QuartzBenchmarkAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QuartzBenchmarkAppDelegate.m; sourceTree = ""; }; - EEDD1D3013549F20007A130C /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainWindow.xib; sourceTree = ""; }; - EEDD1D3213549F20007A130C /* QuartzBenchmarkViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = QuartzBenchmarkViewController.h; sourceTree = ""; }; - EEDD1D3313549F20007A130C /* QuartzBenchmarkViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = QuartzBenchmarkViewController.m; sourceTree = ""; }; - EEDD1D3613549F20007A130C /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/QuartzBenchmarkViewController.xib; sourceTree = ""; }; - EEDD1D3D13549FE0007A130C /* Draw2D.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Draw2D.h; sourceTree = ""; }; - EEDD1D3E13549FE0007A130C /* Draw2D.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = Draw2D.mm; sourceTree = ""; }; - FA37C9671354C3EB006610DC /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = "iPad/en.lproj/MainWindow-iPad.xib"; sourceTree = ""; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - EEDD1D1613549F20007A130C /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - EEDD1D1E13549F20007A130C /* UIKit.framework in Frameworks */, - EEDD1D2013549F20007A130C /* Foundation.framework in Frameworks */, - EEDD1D2213549F20007A130C /* CoreGraphics.framework in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - EEDD1D0E13549F1F007A130C = { - isa = PBXGroup; - children = ( - EEDD1D3D13549FE0007A130C /* Draw2D.h */, - EEDD1D3E13549FE0007A130C /* Draw2D.mm */, - EEDD1D2313549F20007A130C /* QuartzBenchmark */, - EEDD1D1C13549F20007A130C /* Frameworks */, - EEDD1D1A13549F20007A130C /* Products */, - ); - sourceTree = ""; - }; - EEDD1D1A13549F20007A130C /* Products */ = { - isa = PBXGroup; - children = ( - EEDD1D1913549F20007A130C /* QuartzBenchmark.app */, - ); - name = Products; - sourceTree = ""; - }; - EEDD1D1C13549F20007A130C /* Frameworks */ = { - isa = PBXGroup; - children = ( - EEDD1D1D13549F20007A130C /* UIKit.framework */, - EEDD1D1F13549F20007A130C /* Foundation.framework */, - EEDD1D2113549F20007A130C /* CoreGraphics.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - EEDD1D2313549F20007A130C /* QuartzBenchmark */ = { - isa = PBXGroup; - children = ( - FA37C9651354C3E9006610DC /* iPad */, - EEDD1D2C13549F20007A130C /* QuartzBenchmarkAppDelegate.h */, - EEDD1D2D13549F20007A130C /* QuartzBenchmarkAppDelegate.m */, - EEDD1D2F13549F20007A130C /* MainWindow.xib */, - EEDD1D3213549F20007A130C /* QuartzBenchmarkViewController.h */, - EEDD1D3313549F20007A130C /* QuartzBenchmarkViewController.m */, - EEDD1D3513549F20007A130C /* QuartzBenchmarkViewController.xib */, - EEDD1D2413549F20007A130C /* Supporting Files */, - ); - path = QuartzBenchmark; - sourceTree = ""; - }; - EEDD1D2413549F20007A130C /* Supporting Files */ = { - isa = PBXGroup; - children = ( - EEDD1D2513549F20007A130C /* QuartzBenchmark-Info.plist */, - EEDD1D2613549F20007A130C /* InfoPlist.strings */, - EEDD1D2913549F20007A130C /* QuartzBenchmark-Prefix.pch */, - EEDD1D2A13549F20007A130C /* main.m */, - ); - name = "Supporting Files"; - sourceTree = ""; - }; - FA37C9651354C3E9006610DC /* iPad */ = { - isa = PBXGroup; - children = ( - FA37C9661354C3EB006610DC /* MainWindow-iPad.xib */, - ); - name = iPad; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - EEDD1D1813549F20007A130C /* QuartzBenchmark */ = { - isa = PBXNativeTarget; - buildConfigurationList = EEDD1D3A13549F20007A130C /* Build configuration list for PBXNativeTarget "QuartzBenchmark" */; - buildPhases = ( - EEDD1D1513549F20007A130C /* Sources */, - EEDD1D1613549F20007A130C /* Frameworks */, - EEDD1D1713549F20007A130C /* Resources */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = QuartzBenchmark; - productName = QuartzBenchmark; - productReference = EEDD1D1913549F20007A130C /* QuartzBenchmark.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - EEDD1D1013549F1F007A130C /* Project object */ = { - isa = PBXProject; - attributes = { - ORGANIZATIONNAME = "MapsWithMe"; - }; - buildConfigurationList = EEDD1D1313549F1F007A130C /* Build configuration list for PBXProject "QuartzBenchmark" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 0; - knownRegions = ( - en, - ); - mainGroup = EEDD1D0E13549F1F007A130C; - productRefGroup = EEDD1D1A13549F20007A130C /* Products */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - EEDD1D1813549F20007A130C /* QuartzBenchmark */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - EEDD1D1713549F20007A130C /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EEDD1D2813549F20007A130C /* InfoPlist.strings in Resources */, - EEDD1D3113549F20007A130C /* MainWindow.xib in Resources */, - EEDD1D3713549F20007A130C /* QuartzBenchmarkViewController.xib in Resources */, - FA37C9681354C3EB006610DC /* MainWindow-iPad.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - EEDD1D1513549F20007A130C /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - EEDD1D2B13549F20007A130C /* main.m in Sources */, - EEDD1D2E13549F20007A130C /* QuartzBenchmarkAppDelegate.m in Sources */, - EEDD1D3413549F20007A130C /* QuartzBenchmarkViewController.m in Sources */, - EEDD1D3F13549FE0007A130C /* Draw2D.mm in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin PBXVariantGroup section */ - EEDD1D2613549F20007A130C /* InfoPlist.strings */ = { - isa = PBXVariantGroup; - children = ( - EEDD1D2713549F20007A130C /* en */, - ); - name = InfoPlist.strings; - sourceTree = ""; - }; - EEDD1D2F13549F20007A130C /* MainWindow.xib */ = { - isa = PBXVariantGroup; - children = ( - EEDD1D3013549F20007A130C /* en */, - ); - name = MainWindow.xib; - sourceTree = ""; - }; - EEDD1D3513549F20007A130C /* QuartzBenchmarkViewController.xib */ = { - isa = PBXVariantGroup; - children = ( - EEDD1D3613549F20007A130C /* en */, - ); - name = QuartzBenchmarkViewController.xib; - sourceTree = ""; - }; - FA37C9661354C3EB006610DC /* MainWindow-iPad.xib */ = { - isa = PBXVariantGroup; - children = ( - FA37C9671354C3EB006610DC /* en */, - ); - name = "MainWindow-iPad.xib"; - sourceTree = ""; - }; -/* End PBXVariantGroup section */ - -/* Begin XCBuildConfiguration section */ - EEDD1D3813549F20007A130C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = DEBUG; - GCC_SYMBOLS_PRIVATE_EXTERN = NO; - GCC_VERSION = com.apple.compilers.llvmgcc42; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - SDKROOT = iphoneos; - }; - name = Debug; - }; - EEDD1D3913549F20007A130C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - GCC_C_LANGUAGE_STANDARD = gnu99; - GCC_VERSION = com.apple.compilers.llvmgcc42; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; - SDKROOT = iphoneos; - }; - name = Release; - }; - EEDD1D3B13549F20007A130C /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "QuartzBenchmark/QuartzBenchmark-Prefix.pch"; - INFOPLIST_FILE = "QuartzBenchmark/QuartzBenchmark-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - PRODUCT_NAME = "$(TARGET_NAME)"; - TARGETED_DEVICE_FAMILY = "1,2"; - WRAPPER_EXTENSION = app; - }; - name = Debug; - }; - EEDD1D3C13549F20007A130C /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = "QuartzBenchmark/QuartzBenchmark-Prefix.pch"; - INFOPLIST_FILE = "QuartzBenchmark/QuartzBenchmark-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 4.3; - PRODUCT_NAME = "$(TARGET_NAME)"; - TARGETED_DEVICE_FAMILY = "1,2"; - VALIDATE_PRODUCT = YES; - WRAPPER_EXTENSION = app; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - EEDD1D1313549F1F007A130C /* Build configuration list for PBXProject "QuartzBenchmark" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EEDD1D3813549F20007A130C /* Debug */, - EEDD1D3913549F20007A130C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - EEDD1D3A13549F20007A130C /* Build configuration list for PBXNativeTarget "QuartzBenchmark" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - EEDD1D3B13549F20007A130C /* Debug */, - EEDD1D3C13549F20007A130C /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = EEDD1D1013549F1F007A130C /* Project object */; -} diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmark-Info.plist b/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmark-Info.plist deleted file mode 100644 index 0fb1882a79..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmark-Info.plist +++ /dev/null @@ -1,41 +0,0 @@ - - - - - CFBundleDevelopmentRegion - en - CFBundleDisplayName - ${PRODUCT_NAME} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIconFile - - CFBundleIdentifier - com.mapswithme.${PRODUCT_NAME:rfc1034identifier} - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - APPL - CFBundleShortVersionString - 1.0 - CFBundleSignature - ???? - CFBundleVersion - 1.0 - LSRequiresIPhoneOS - - NSMainNibFile - MainWindow - NSMainNibFile~ipad - MainWindow-iPad - UISupportedInterfaceOrientations - - UIInterfaceOrientationPortrait - UIInterfaceOrientationLandscapeLeft - UIInterfaceOrientationLandscapeRight - UIInterfaceOrientationPortraitUpsideDown - - - diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmark-Prefix.pch b/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmark-Prefix.pch deleted file mode 100644 index 16e19ad66a..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmark-Prefix.pch +++ /dev/null @@ -1,14 +0,0 @@ -// -// Prefix header for all source files of the 'QuartzBenchmark' target in the 'QuartzBenchmark' project -// - -#import - -#ifndef __IPHONE_3_0 -#warning "This project uses features only available in iPhone SDK 3.0 and later." -#endif - -#ifdef __OBJC__ - #import - #import -#endif diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkAppDelegate.h b/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkAppDelegate.h deleted file mode 100644 index a04eedeaf4..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkAppDelegate.h +++ /dev/null @@ -1,13 +0,0 @@ -#import - -@class QuartzBenchmarkViewController; - -@interface QuartzBenchmarkAppDelegate : NSObject { - -} - -@property (nonatomic, retain) IBOutlet UIWindow *window; - -@property (nonatomic, retain) IBOutlet QuartzBenchmarkViewController *viewController; - -@end diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkAppDelegate.m b/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkAppDelegate.m deleted file mode 100644 index 9c12480574..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkAppDelegate.m +++ /dev/null @@ -1,67 +0,0 @@ -#import "QuartzBenchmarkAppDelegate.h" - -#import "QuartzBenchmarkViewController.h" - -@implementation QuartzBenchmarkAppDelegate - - -@synthesize window=_window; - -@synthesize viewController=_viewController; - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions -{ - // Override point for customization after application launch. - - self.window.rootViewController = self.viewController; - [self.window makeKeyAndVisible]; - return YES; -} - -- (void)applicationWillResignActive:(UIApplication *)application -{ - /* - Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. - Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. - */ -} - -- (void)applicationDidEnterBackground:(UIApplication *)application -{ - /* - Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. - If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. - */ -} - -- (void)applicationWillEnterForeground:(UIApplication *)application -{ - /* - Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. - */ -} - -- (void)applicationDidBecomeActive:(UIApplication *)application -{ - /* - Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. - */ -} - -- (void)applicationWillTerminate:(UIApplication *)application -{ - /* - Called when the application is about to terminate. - Save data if appropriate. - See also applicationDidEnterBackground:. - */ -} - -- (void)dealloc -{ - [_window release]; - [_viewController release]; - [super dealloc]; -} - -@end diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkViewController.h b/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkViewController.h deleted file mode 100644 index fb4089cb8a..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkViewController.h +++ /dev/null @@ -1,7 +0,0 @@ -#import - -@interface QuartzBenchmarkViewController : UIViewController { - -} - -@end diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkViewController.m b/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkViewController.m deleted file mode 100644 index f638956f75..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/QuartzBenchmarkViewController.m +++ /dev/null @@ -1,41 +0,0 @@ -#import "QuartzBenchmarkViewController.h" - -@implementation QuartzBenchmarkViewController - -- (void)dealloc -{ - [super dealloc]; -} - -- (void)didReceiveMemoryWarning -{ - // Releases the view if it doesn't have a superview. - [super didReceiveMemoryWarning]; - - // Release any cached data, images, etc that aren't in use. -} - -#pragma mark - View lifecycle - -/* -// Implement viewDidLoad to do additional setup after loading the view, typically from a nib. -- (void)viewDidLoad -{ - [super viewDidLoad]; -} -*/ - -- (void)viewDidUnload -{ - [super viewDidUnload]; - // Release any retained subviews of the main view. - // e.g. self.myOutlet = nil; -} - -- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation -{ - // Return YES for supported orientations - return (interfaceOrientation == UIInterfaceOrientationPortrait); -} - -@end diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/InfoPlist.strings b/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/InfoPlist.strings deleted file mode 100644 index 477b28ff8f..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/InfoPlist.strings +++ /dev/null @@ -1,2 +0,0 @@ -/* Localized versions of Info.plist keys */ - diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/MainWindow.xib b/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/MainWindow.xib deleted file mode 100644 index b6c0f98a52..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/MainWindow.xib +++ /dev/null @@ -1,444 +0,0 @@ - - - - 1024 - 10D571 - 786 - 1038.29 - 460.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 112 - - - YES - - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - IBCocoaTouchFramework - - - QuartzBenchmarkViewController - - - 1 - - IBCocoaTouchFramework - NO - - - - 292 - {320, 480} - - 1 - MSAxIDEAA - - NO - NO - - IBCocoaTouchFramework - YES - - - - - YES - - - delegate - - - - 4 - - - - viewController - - - - 11 - - - - window - - - - 14 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - 3 - - - QuartzBenchmark App Delegate - - - -2 - - - - - 10 - - - - - 12 - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 10.CustomClassName - 10.IBEditorWindowLastContentRect - 10.IBPluginDependency - 12.IBEditorWindowLastContentRect - 12.IBPluginDependency - 3.CustomClassName - 3.IBPluginDependency - - - YES - UIApplication - UIResponder - QuartzBenchmarkViewController - {{234, 376}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - {{525, 346}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - QuartzBenchmarkAppDelegate - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - - YES - - - YES - - - - - YES - - - YES - - - - 15 - - - - YES - - UIWindow - UIView - - IBUserSource - - - - - QuartzBenchmarkAppDelegate - NSObject - - YES - - YES - viewController - window - - - YES - QuartzBenchmarkViewController - UIWindow - - - - YES - - YES - viewController - window - - - YES - - viewController - QuartzBenchmarkViewController - - - window - UIWindow - - - - - IBProjectSource - QuartzBenchmarkAppDelegate.h - - - - QuartzBenchmarkAppDelegate - NSObject - - IBUserSource - - - - - QuartzBenchmarkViewController - UIViewController - - IBProjectSource - QuartzBenchmarkViewController.h - - - - - YES - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIAccessibility.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UINibLoading.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIResponder.h - - - - UIApplication - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIApplication.h - - - - UIResponder - NSObject - - - - UISearchBar - UIView - - IBFrameworkSource - UIKit.framework/Headers/UISearchBar.h - - - - UISearchDisplayController - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UISearchDisplayController.h - - - - UIView - - IBFrameworkSource - UIKit.framework/Headers/UITextField.h - - - - UIView - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIView.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UINavigationController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UIPopoverController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UISplitViewController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UITabBarController.h - - - - UIViewController - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIViewController.h - - - - UIWindow - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIWindow.h - - - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS - - - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - QuartzBenchmark.xcodeproj - 3 - 112 - - diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/QuartzBenchmarkViewController.xib b/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/QuartzBenchmarkViewController.xib deleted file mode 100644 index e8dfc11949..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/en.lproj/QuartzBenchmarkViewController.xib +++ /dev/null @@ -1,141 +0,0 @@ - - - - 1056 - 10J567 - 1306 - 1038.35 - 462.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 301 - - - YES - IBProxyObject - IBUIView - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 274 - {{0, 20}, {320, 460}} - - - - 3 - MC43NQA - - 2 - - - NO - - IBCocoaTouchFramework - - - - - YES - - - view - - - - 7 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - -2 - - - - - 6 - - - View - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 6.CustomClassName - 6.IBEditorWindowLastContentRect - 6.IBPluginDependency - - - YES - QuartzBenchmarkViewController - UIResponder - Draw2D - {{239, 654}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - - YES - - - - - - YES - - - - - 7 - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - 3 - 301 - - diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/iPad/en.lproj/MainWindow-iPad.xib b/iphone/QuartzBenchmark/QuartzBenchmark/iPad/en.lproj/MainWindow-iPad.xib deleted file mode 100644 index b0b367104c..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/iPad/en.lproj/MainWindow-iPad.xib +++ /dev/null @@ -1,455 +0,0 @@ - - - - 1056 - 10J869 - 844 - 1038.35 - 461.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 141 - - - YES - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBIPadFramework - - - IBFirstResponder - IBIPadFramework - - - IBIPadFramework - - - QuartzBenchmarkViewController - - 2 - - - 1 - - IBIPadFramework - NO - - - - 292 - {768, 1004} - - 1 - MSAxIDEAA - - NO - NO - - IBIPadFramework - YES - - - - - YES - - - delegate - - - - 4 - - - - viewController - - - - 11 - - - - window - - - - 14 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - 3 - - - QuartzBenchmark App Delegate - - - -2 - - - - - 10 - - - - - 12 - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 10.CustomClassName - 10.IBEditorWindowLastContentRect - 10.IBLastUsedUIStatusBarStylesToTargetRuntimesMap - 10.IBPluginDependency - 12.IBEditorWindowLastContentRect - 12.IBLastUsedUIStatusBarStylesToTargetRuntimesMap - 12.IBPluginDependency - 3.CustomClassName - 3.IBPluginDependency - - - YES - UIApplication - UIResponder - QuartzBenchmarkViewController - {{234, 376}, {320, 480}} - - IBCocoaTouchFramework - - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - {{525, 346}, {320, 480}} - - IBCocoaTouchFramework - - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - QuartzBenchmarkAppDelegate - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - - YES - - - YES - - - - - YES - - - YES - - - - 15 - - - - YES - - QuartzBenchmarkAppDelegate - NSObject - - YES - - YES - viewController - window - - - YES - QuartzBenchmarkViewController - UIWindow - - - - YES - - YES - viewController - window - - - YES - - viewController - QuartzBenchmarkViewController - - - window - UIWindow - - - - - IBProjectSource - QuartzBenchmarkAppDelegate.h - - - - QuartzBenchmarkAppDelegate - NSObject - - IBUserSource - - - - - QuartzBenchmarkViewController - UIViewController - - IBProjectSource - QuartzBenchmarkViewController.h - - - - UIWindow - UIView - - IBUserSource - - - - - - YES - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIAccessibility.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UINibLoading.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIResponder.h - - - - UIApplication - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIApplication.h - - - - UIResponder - NSObject - - - - UISearchBar - UIView - - IBFrameworkSource - UIKit.framework/Headers/UISearchBar.h - - - - UISearchDisplayController - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UISearchDisplayController.h - - - - UIView - - IBFrameworkSource - UIKit.framework/Headers/UITextField.h - - - - UIView - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIView.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UINavigationController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UIPopoverController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UISplitViewController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UITabBarController.h - - - - UIViewController - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIViewController.h - - - - UIWindow - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIWindow.h - - - - - 0 - IBIPadFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS - - - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - QuartzBenchmark.xcodeproj - 3 - 141 - - diff --git a/iphone/QuartzBenchmark/QuartzBenchmark/main.m b/iphone/QuartzBenchmark/QuartzBenchmark/main.m deleted file mode 100644 index 240307699f..0000000000 --- a/iphone/QuartzBenchmark/QuartzBenchmark/main.m +++ /dev/null @@ -1,9 +0,0 @@ -#import - -int main(int argc, char *argv[]) -{ - NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; - int retVal = UIApplicationMain(argc, argv, nil, nil); - [pool release]; - return retVal; -} diff --git a/iphone/Tests/Classes/Draw2D.h b/iphone/Tests/Classes/Draw2D.h deleted file mode 100644 index c0603c8c9b..0000000000 --- a/iphone/Tests/Classes/Draw2D.h +++ /dev/null @@ -1,8 +0,0 @@ -#import - - -@interface Draw2D : UIView { - -} - -@end diff --git a/iphone/Tests/Classes/Draw2D.m b/iphone/Tests/Classes/Draw2D.m deleted file mode 100644 index 1212e07d0e..0000000000 --- a/iphone/Tests/Classes/Draw2D.m +++ /dev/null @@ -1,29 +0,0 @@ -#import "Draw2D.h" - - -@implementation Draw2D - - -- (id)initWithFrame:(CGRect)frame { - - self = [super initWithFrame:frame]; - if (self) { - // Initialization code. - } - return self; -} - -/* -// Only override drawRect: if you perform custom drawing. -// An empty implementation adversely affects performance during animation. -- (void)drawRect:(CGRect)rect { - // Drawing code. -} -*/ - -- (void)dealloc { - [super dealloc]; -} - - -@end diff --git a/iphone/Tests/Classes/Draw2DViewController.xib b/iphone/Tests/Classes/Draw2DViewController.xib deleted file mode 100644 index 0e3a602839..0000000000 --- a/iphone/Tests/Classes/Draw2DViewController.xib +++ /dev/null @@ -1,133 +0,0 @@ - - - - 800 - 10C540 - 758 - 1038.25 - 458.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 76 - - - YES - - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 274 - {320, 460} - - - 3 - MQA - - 2 - - - - IBCocoaTouchFramework - - - - - YES - - - - YES - - 0 - - - - - - 1 - - - - - -1 - - - File's Owner - - - -2 - - - - - - - YES - - YES - -2.CustomClassName - 1.IBEditorWindowLastContentRect - 1.IBPluginDependency - - - YES - UIResponder - {{354, 412}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - - YES - - - YES - - - - - YES - - - YES - - - - 2 - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - - 3 - 76 - - - diff --git a/iphone/Tests/Classes/TestView.h b/iphone/Tests/Classes/TestView.h deleted file mode 100644 index 136d783612..0000000000 --- a/iphone/Tests/Classes/TestView.h +++ /dev/null @@ -1,8 +0,0 @@ -#import - - -@interface TestView : UIView { - -} - -@end diff --git a/iphone/Tests/Classes/TestView.mm b/iphone/Tests/Classes/TestView.mm deleted file mode 100644 index 55773f6a94..0000000000 --- a/iphone/Tests/Classes/TestView.mm +++ /dev/null @@ -1,47 +0,0 @@ -#import "TestView.h" - - -@implementation TestView - - -- (id)initWithFrame:(CGRect)frame { - - self = [super initWithFrame:frame]; - if (self) { - // Initialization code. - } - return self; -} - - -// Only override drawRect: if you perform custom drawing. -// An empty implementation adversely affects performance during animation. -- (void)drawRect:(CGRect)rect { - - CGContextRef context = UIGraphicsGetCurrentContext(); - - CGContextSetLineWidth(context, 2.0); - - CGContextSetStrokeColorWithColor(context, [UIColor blueColor].CGColor); - CGFloat dashArray[] = {2, 6, 4, 2}; - - CGContextSetLineDash(context, 3, dashArray, 4); - - CGContextMoveToPoint(context, - 100 + rand() % 200, - 100 + rand() % 300); - - for (int i = 0; i < 100; ++i) - CGContextAddLineToPoint(context, - 100 + rand() % 200, - 100 + rand() % 300); - - CGContextStrokePath(context); -} - -- (void)dealloc { - [super dealloc]; -} - - -@end diff --git a/iphone/Tests/Classes/TestsAppDelegate.h b/iphone/Tests/Classes/TestsAppDelegate.h deleted file mode 100644 index 16fbae5168..0000000000 --- a/iphone/Tests/Classes/TestsAppDelegate.h +++ /dev/null @@ -1,14 +0,0 @@ -#import - -@class TestsViewController; - -@interface TestsAppDelegate : NSObject { - UIWindow *window; - TestsViewController *viewController; -} - -@property (nonatomic, retain) IBOutlet UIWindow *window; -@property (nonatomic, retain) IBOutlet TestsViewController *viewController; - -@end - diff --git a/iphone/Tests/Classes/TestsAppDelegate.m b/iphone/Tests/Classes/TestsAppDelegate.m deleted file mode 100644 index 526d29b08e..0000000000 --- a/iphone/Tests/Classes/TestsAppDelegate.m +++ /dev/null @@ -1,80 +0,0 @@ -#import "TestsAppDelegate.h" -#import "TestsViewController.h" - -@implementation TestsAppDelegate - -@synthesize window; -@synthesize viewController; - - -#pragma mark - -#pragma mark Application lifecycle - -- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { - - // Override point for customization after application launch. - - // Add the view controller's view to the window and display. - [self.window addSubview:viewController.view]; - [self.window makeKeyAndVisible]; - - return YES; -} - - -- (void)applicationWillResignActive:(UIApplication *)application { - /* - Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. - Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. - */ -} - - -- (void)applicationDidEnterBackground:(UIApplication *)application { - /* - Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. - If your application supports background execution, called instead of applicationWillTerminate: when the user quits. - */ -} - - -- (void)applicationWillEnterForeground:(UIApplication *)application { - /* - Called as part of transition from the background to the inactive state: here you can undo many of the changes made on entering the background. - */ -} - - -- (void)applicationDidBecomeActive:(UIApplication *)application { - /* - Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. - */ -} - - -- (void)applicationWillTerminate:(UIApplication *)application { - /* - Called when the application is about to terminate. - See also applicationDidEnterBackground:. - */ -} - - -#pragma mark - -#pragma mark Memory management - -- (void)applicationDidReceiveMemoryWarning:(UIApplication *)application { - /* - Free up as much memory as possible by purging cached data objects that can be recreated (or reloaded from disk) later. - */ -} - - -- (void)dealloc { - [viewController release]; - [window release]; - [super dealloc]; -} - - -@end diff --git a/iphone/Tests/Classes/TestsViewController.h b/iphone/Tests/Classes/TestsViewController.h deleted file mode 100644 index 93272cbebe..0000000000 --- a/iphone/Tests/Classes/TestsViewController.h +++ /dev/null @@ -1,8 +0,0 @@ -#import - -@interface TestsViewController : UIViewController { - -} - -@end - diff --git a/iphone/Tests/Classes/TestsViewController.m b/iphone/Tests/Classes/TestsViewController.m deleted file mode 100644 index 0a73373c37..0000000000 --- a/iphone/Tests/Classes/TestsViewController.m +++ /dev/null @@ -1,58 +0,0 @@ -#import "TestsViewController.h" - -@implementation TestsViewController - - - -/* -// The designated initializer. Override to perform setup that is required before the view is loaded. -- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { - self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; - if (self) { - // Custom initialization - } - return self; -} -*/ - -/* -// Implement loadView to create a view hierarchy programmatically, without using a nib. -- (void)loadView { -} -*/ - - -/* -// Implement viewDidLoad to do additional setup after loading the view, typically from a nib. -- (void)viewDidLoad { - [super viewDidLoad]; -} -*/ - - -/* -// Override to allow orientations other than the default portrait orientation. -- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation { - // Return YES for supported orientations - return (interfaceOrientation == UIInterfaceOrientationPortrait); -} -*/ - -- (void)didReceiveMemoryWarning { - // Releases the view if it doesn't have a superview. - [super didReceiveMemoryWarning]; - - // Release any cached data, images, etc that aren't in use. -} - -- (void)viewDidUnload { - // Release any retained subviews of the main view. - // e.g. self.myOutlet = nil; -} - - -- (void)dealloc { - [super dealloc]; -} - -@end diff --git a/iphone/Tests/MainWindow.xib b/iphone/Tests/MainWindow.xib deleted file mode 100644 index 3ef0853f11..0000000000 --- a/iphone/Tests/MainWindow.xib +++ /dev/null @@ -1,444 +0,0 @@ - - - - 1024 - 10D571 - 786 - 1038.29 - 460.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 112 - - - YES - - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - IBCocoaTouchFramework - - - TestsViewController - - - 1 - - IBCocoaTouchFramework - NO - - - - 292 - {320, 480} - - 1 - MSAxIDEAA - - NO - NO - - IBCocoaTouchFramework - YES - - - - - YES - - - delegate - - - - 4 - - - - viewController - - - - 11 - - - - window - - - - 14 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - 3 - - - Tests App Delegate - - - -2 - - - - - 10 - - - - - 12 - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 10.CustomClassName - 10.IBEditorWindowLastContentRect - 10.IBPluginDependency - 12.IBEditorWindowLastContentRect - 12.IBPluginDependency - 3.CustomClassName - 3.IBPluginDependency - - - YES - UIApplication - UIResponder - TestsViewController - {{234, 376}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - {{525, 346}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - TestsAppDelegate - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - - YES - - - YES - - - - - YES - - - YES - - - - 15 - - - - YES - - UIWindow - UIView - - IBUserSource - - - - - TestsAppDelegate - NSObject - - YES - - YES - viewController - window - - - YES - TestsViewController - UIWindow - - - - YES - - YES - viewController - window - - - YES - - viewController - TestsViewController - - - window - UIWindow - - - - - IBProjectSource - Classes/TestsAppDelegate.h - - - - TestsAppDelegate - NSObject - - IBUserSource - - - - - TestsViewController - UIViewController - - IBProjectSource - Classes/TestsViewController.h - - - - - YES - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIAccessibility.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UINibLoading.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIResponder.h - - - - UIApplication - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIApplication.h - - - - UIResponder - NSObject - - - - UISearchBar - UIView - - IBFrameworkSource - UIKit.framework/Headers/UISearchBar.h - - - - UISearchDisplayController - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UISearchDisplayController.h - - - - UIView - - IBFrameworkSource - UIKit.framework/Headers/UITextField.h - - - - UIView - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIView.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UINavigationController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UIPopoverController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UISplitViewController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UITabBarController.h - - - - UIViewController - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIViewController.h - - - - UIWindow - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIWindow.h - - - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS - - - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - Tests.xcodeproj - 3 - 112 - - diff --git a/iphone/Tests/Tests-Info.plist b/iphone/Tests/Tests-Info.plist deleted file mode 100644 index 2e4afa96d0..0000000000 --- a/iphone/Tests/Tests-Info.plist +++ /dev/null @@ -1,30 +0,0 @@ - - - - - CFBundleDevelopmentRegion - English - CFBundleDisplayName - ${PRODUCT_NAME} - CFBundleExecutable - ${EXECUTABLE_NAME} - CFBundleIconFile - - CFBundleIdentifier - com.mapswithme.tests - CFBundleInfoDictionaryVersion - 6.0 - CFBundleName - ${PRODUCT_NAME} - CFBundlePackageType - APPL - CFBundleSignature - ???? - CFBundleVersion - 1.0 - LSRequiresIPhoneOS - - NSMainNibFile - MainWindow - - diff --git a/iphone/Tests/Tests.xcodeproj/project.pbxproj b/iphone/Tests/Tests.xcodeproj/project.pbxproj deleted file mode 100755 index b5508bf8d4..0000000000 --- a/iphone/Tests/Tests.xcodeproj/project.pbxproj +++ /dev/null @@ -1,742 +0,0 @@ -// !$*UTF8*$! -{ - archiveVersion = 1; - classes = { - }; - objectVersion = 46; - objects = { - -/* Begin PBXBuildFile section */ - 1D3623260D0F684500981E51 /* TestsAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D3623250D0F684500981E51 /* TestsAppDelegate.m */; }; - 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D30AB110D05D00D00671497 /* Foundation.framework */; }; - 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */; }; - 288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 288765A40DF7441C002DB57D /* CoreGraphics.framework */; }; - 2899E5220DE3E06400AC0155 /* TestsViewController.xib in Resources */ = {isa = PBXBuildFile; fileRef = 2899E5210DE3E06400AC0155 /* TestsViewController.xib */; }; - 28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */ = {isa = PBXBuildFile; fileRef = 28AD733E0D9D9553002E5188 /* MainWindow.xib */; }; - 28D7ACF80DDB3853001CB0EB /* TestsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 28D7ACF70DDB3853001CB0EB /* TestsViewController.m */; }; - EEA9808212EF7FE50040E94E /* TestView.mm in Sources */ = {isa = PBXBuildFile; fileRef = EEA9808112EF7FE50040E94E /* TestView.mm */; }; - FA7EE32015FA740000B0DC12 /* url_encode_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE31D15FA740000B0DC12 /* url_encode_test.cpp */; }; - FA7EE32115FA740000B0DC12 /* value_opt_string_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE31E15FA740000B0DC12 /* value_opt_string_test.cpp */; }; - FA7EE32215FA740000B0DC12 /* zip_reader_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE31F15FA740000B0DC12 /* zip_reader_test.cpp */; }; - FA7EE32A15FA742300B0DC12 /* anyrect_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE32315FA742300B0DC12 /* anyrect_test.cpp */; }; - FA7EE32B15FA742300B0DC12 /* distance_on_sphere_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE32415FA742300B0DC12 /* distance_on_sphere_test.cpp */; }; - FA7EE32C15FA742300B0DC12 /* region2d_binary_op_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE32515FA742300B0DC12 /* region2d_binary_op_test.cpp */; }; - FA7EE32D15FA742300B0DC12 /* robust_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE32615FA742300B0DC12 /* robust_test.cpp */; }; - FA7EE32F15FA742300B0DC12 /* vector_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE32915FA742300B0DC12 /* vector_test.cpp */; }; - FA7EE33415FA743F00B0DC12 /* keyword_matcher_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33015FA743F00B0DC12 /* keyword_matcher_test.cpp */; }; - FA7EE33515FA743F00B0DC12 /* latlon_match_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33115FA743F00B0DC12 /* latlon_match_test.cpp */; }; - FA7EE33615FA743F00B0DC12 /* string_match_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33315FA743F00B0DC12 /* string_match_test.cpp */; }; - FA7EE33E15FA746900B0DC12 /* categories_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33715FA746900B0DC12 /* categories_test.cpp */; }; - FA7EE33F15FA746900B0DC12 /* geometry_serialization_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33815FA746900B0DC12 /* geometry_serialization_test.cpp */; }; - FA7EE34015FA746900B0DC12 /* index_builder_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33915FA746900B0DC12 /* index_builder_test.cpp */; }; - FA7EE34115FA746900B0DC12 /* index_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33A15FA746900B0DC12 /* index_test.cpp */; }; - FA7EE34215FA746900B0DC12 /* mwm_set_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33B15FA746900B0DC12 /* mwm_set_test.cpp */; }; - FA7EE34315FA746900B0DC12 /* scales_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA7EE33C15FA746900B0DC12 /* scales_test.cpp */; }; - FA7EE34B15FB405100B0DC12 /* libprotobuf.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7EE34A15FB405100B0DC12 /* libprotobuf.a */; }; - FA7EE34D15FB408D00B0DC12 /* libplatform.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7EE34C15FB408D00B0DC12 /* libplatform.a */; }; - FA7EE34F15FB40A800B0DC12 /* libsearch.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FA7EE34E15FB40A800B0DC12 /* libsearch.a */; }; - FAC0354415FA5BAF00494C8E /* buffer_vector_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0354315FA5BAF00494C8E /* buffer_vector_test.cpp */; }; - FAC0354715FA5C6F00494C8E /* string_utils_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0354615FA5C6F00494C8E /* string_utils_test.cpp */; }; - FAC0354A15FA613D00494C8E /* test_polylines.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0354815FA613D00494C8E /* test_polylines.cpp */; }; - FAC0355E15FA621600494C8E /* assert_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0354B15FA621500494C8E /* assert_test.cpp */; }; - FAC0355F15FA621600494C8E /* bits_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0354C15FA621500494C8E /* bits_test.cpp */; }; - FAC0356015FA621600494C8E /* cache_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0354D15FA621500494C8E /* cache_test.cpp */; }; - FAC0356115FA621600494C8E /* commands_queue_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0354E15FA621500494C8E /* commands_queue_test.cpp */; }; - FAC0356215FA621600494C8E /* condition_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0354F15FA621500494C8E /* condition_test.cpp */; }; - FAC0356315FA621600494C8E /* const_helper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355015FA621500494C8E /* const_helper.cpp */; }; - FAC0356415FA621600494C8E /* containers_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355115FA621500494C8E /* containers_test.cpp */; }; - FAC0356515FA621600494C8E /* fence_manager_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355215FA621500494C8E /* fence_manager_test.cpp */; }; - FAC0356615FA621600494C8E /* logging_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355315FA621500494C8E /* logging_test.cpp */; }; - FAC0356815FA621600494C8E /* matrix_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355515FA621500494C8E /* matrix_test.cpp */; }; - FAC0356915FA621600494C8E /* mru_cache_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355615FA621500494C8E /* mru_cache_test.cpp */; }; - FAC0356A15FA621600494C8E /* rolling_hash_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355715FA621500494C8E /* rolling_hash_test.cpp */; }; - FAC0356B15FA621600494C8E /* scope_guard_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355815FA621500494C8E /* scope_guard_test.cpp */; }; - FAC0356C15FA621600494C8E /* stl_add_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355915FA621500494C8E /* stl_add_test.cpp */; }; - FAC0356D15FA621600494C8E /* string_format_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355A15FA621500494C8E /* string_format_test.cpp */; }; - FAC0356E15FA621600494C8E /* threaded_list_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355B15FA621500494C8E /* threaded_list_test.cpp */; }; - FAC0356F15FA621600494C8E /* threads_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355C15FA621500494C8E /* threads_test.cpp */; }; - FAC0357015FA621600494C8E /* timer_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0355D15FA621600494C8E /* timer_test.cpp */; }; - FAC0357915FA624000494C8E /* multilang_utf8_string_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0357215FA624000494C8E /* multilang_utf8_string_test.cpp */; }; - FAC0357A15FA624000494C8E /* reader_writer_ops_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0357315FA624000494C8E /* reader_writer_ops_test.cpp */; }; - FAC0357B15FA624000494C8E /* trie_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAC0357415FA624000494C8E /* trie_test.cpp */; }; - FAF564D4133C3187002748F9 /* libmap.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564C6133C3187002748F9 /* libmap.a */; }; - FAF564D5133C3187002748F9 /* libstorage.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564C7133C3187002748F9 /* libstorage.a */; }; - FAF564D6133C3187002748F9 /* libindexer.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564C8133C3187002748F9 /* libindexer.a */; }; - FAF564D7133C3187002748F9 /* libyg.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564C9133C3187002748F9 /* libyg.a */; }; - FAF564D8133C3187002748F9 /* libgeometry.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564CA133C3187002748F9 /* libgeometry.a */; }; - FAF564D9133C3187002748F9 /* libcoding.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564CB133C3187002748F9 /* libcoding.a */; }; - FAF564DA133C3187002748F9 /* libbase.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564CC133C3187002748F9 /* libbase.a */; }; - FAF564DB133C3187002748F9 /* libtomcrypt.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564CD133C3187002748F9 /* libtomcrypt.a */; }; - FAF564DC133C3187002748F9 /* libjansson.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564CE133C3187002748F9 /* libjansson.a */; }; - FAF564DD133C3187002748F9 /* libbzip2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564CF133C3187002748F9 /* libbzip2.a */; }; - FAF564DE133C3187002748F9 /* libzlib.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564D0133C3187002748F9 /* libzlib.a */; }; - FAF564DF133C3187002748F9 /* libfribidi.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564D1133C3187002748F9 /* libfribidi.a */; }; - FAF564E0133C3187002748F9 /* libfreetype.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564D2133C3187002748F9 /* libfreetype.a */; }; - FAF564E1133C3187002748F9 /* libexpat.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAF564D3133C3187002748F9 /* libexpat.a */; }; - FAF564EF133C3458002748F9 /* point_to_int64_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564EE133C3458002748F9 /* point_to_int64_test.cpp */; }; - FAF564F1133C3584002748F9 /* testingmain.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564F0133C3584002748F9 /* testingmain.cpp */; }; - FAF564F4133C3634002748F9 /* mercator_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564F2133C3634002748F9 /* mercator_test.cpp */; }; - FAF564F5133C3634002748F9 /* cell_id_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564F3133C3634002748F9 /* cell_id_test.cpp */; }; - FAF5650A133C36A4002748F9 /* rect_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564F6133C36A4002748F9 /* rect_test.cpp */; }; - FAF5650B133C36A4002748F9 /* distance_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564F7133C36A4002748F9 /* distance_test.cpp */; }; - FAF5650C133C36A4002748F9 /* tree_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564F8133C36A4002748F9 /* tree_test.cpp */; }; - FAF5650E133C36A4002748F9 /* region_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564FB133C36A4002748F9 /* region_test.cpp */; }; - FAF5650F133C36A4002748F9 /* polygon_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564FC133C36A4002748F9 /* polygon_test.cpp */; }; - FAF56510133C36A4002748F9 /* cellid_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564FD133C36A4002748F9 /* cellid_test.cpp */; }; - FAF56511133C36A4002748F9 /* screen_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564FE133C36A4002748F9 /* screen_test.cpp */; }; - FAF56512133C36A4002748F9 /* packer_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF564FF133C36A4002748F9 /* packer_test.cpp */; }; - FAF56513133C36A4002748F9 /* transformations_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56500133C36A4002748F9 /* transformations_test.cpp */; }; - FAF56514133C36A4002748F9 /* common_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56501133C36A4002748F9 /* common_test.cpp */; }; - FAF56515133C36A4002748F9 /* pointu_to_uint64_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56502133C36A4002748F9 /* pointu_to_uint64_test.cpp */; }; - FAF56517133C36A4002748F9 /* covering_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56504133C36A4002748F9 /* covering_test.cpp */; }; - FAF56518133C36A4002748F9 /* point_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56505133C36A4002748F9 /* point_test.cpp */; }; - FAF56519133C36A4002748F9 /* segments_intersect_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56506133C36A4002748F9 /* segments_intersect_test.cpp */; }; - FAF5651A133C36A4002748F9 /* intersect_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56507133C36A4002748F9 /* intersect_test.cpp */; }; - FAF5651B133C36A4002748F9 /* angle_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56509133C36A4002748F9 /* angle_test.cpp */; }; - FAF56536133C3750002748F9 /* writer_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5651C133C374F002748F9 /* writer_test.cpp */; }; - FAF56537133C3750002748F9 /* reader_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5651D133C374F002748F9 /* reader_test.cpp */; }; - FAF56538133C3750002748F9 /* file_container_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5651E133C374F002748F9 /* file_container_test.cpp */; }; - FAF56539133C3750002748F9 /* sha2_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5651F133C374F002748F9 /* sha2_test.cpp */; }; - FAF5653A133C3750002748F9 /* base64_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56520133C374F002748F9 /* base64_test.cpp */; }; - FAF5653B133C3750002748F9 /* bit_shift_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56521133C374F002748F9 /* bit_shift_test.cpp */; }; - FAF5653C133C3750002748F9 /* gzip_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56522133C374F002748F9 /* gzip_test.cpp */; }; - FAF5653D133C3750002748F9 /* coder_util_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56523133C374F002748F9 /* coder_util_test.cpp */; }; - FAF5653E133C3750002748F9 /* bzip2_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56525133C374F002748F9 /* bzip2_test.cpp */; }; - FAF56540133C3750002748F9 /* varint_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56527133C374F002748F9 /* varint_test.cpp */; }; - FAF56541133C3750002748F9 /* diff_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56528133C374F002748F9 /* diff_test.cpp */; }; - FAF56542133C3750002748F9 /* var_serial_vector_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56529133C374F002748F9 /* var_serial_vector_test.cpp */; }; - FAF56543133C3750002748F9 /* reader_cache_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5652A133C374F002748F9 /* reader_cache_test.cpp */; }; - FAF56544133C3750002748F9 /* hex_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5652B133C374F002748F9 /* hex_test.cpp */; }; - FAF56545133C3750002748F9 /* file_sort_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5652C133C374F002748F9 /* file_sort_test.cpp */; }; - FAF56546133C3750002748F9 /* var_record_reader_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5652D133C374F002748F9 /* var_record_reader_test.cpp */; }; - FAF56548133C3750002748F9 /* mem_file_reader_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56530133C374F002748F9 /* mem_file_reader_test.cpp */; }; - FAF56549133C3750002748F9 /* dd_vector_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56531133C3750002748F9 /* dd_vector_test.cpp */; }; - FAF5654A133C3750002748F9 /* endianness_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56532133C3750002748F9 /* endianness_test.cpp */; }; - FAF5654B133C3750002748F9 /* png_decoder_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56533133C3750002748F9 /* png_decoder_test.cpp */; }; - FAF5654D133C3750002748F9 /* mem_file_writer_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56535133C3750002748F9 /* mem_file_writer_test.cpp */; }; - FAF56557133C3DA2002748F9 /* geometry_coding_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF5654F133C3DA1002748F9 /* geometry_coding_test.cpp */; }; - FAF5655A133C3DA2002748F9 /* interval_index_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56552133C3DA1002748F9 /* interval_index_test.cpp */; }; - FAF5655B133C3DA2002748F9 /* cell_coverer_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56553133C3DA2002748F9 /* cell_coverer_test.cpp */; }; - FAF5655C133C3DA2002748F9 /* sort_and_merge_intervals_test.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56554133C3DA2002748F9 /* sort_and_merge_intervals_test.cpp */; }; - FAF5655D133C3DA2002748F9 /* test_type.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FAF56555133C3DA2002748F9 /* test_type.cpp */; }; -/* End PBXBuildFile section */ - -/* Begin PBXFileReference section */ - 1D30AB110D05D00D00671497 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; - 1D3623240D0F684500981E51 /* TestsAppDelegate.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestsAppDelegate.h; sourceTree = ""; }; - 1D3623250D0F684500981E51 /* TestsAppDelegate.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestsAppDelegate.m; sourceTree = ""; }; - 1D6058910D05DD3D006BFB54 /* Tests.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Tests.app; sourceTree = BUILT_PRODUCTS_DIR; }; - 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; }; - 288765A40DF7441C002DB57D /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; - 2899E5210DE3E06400AC0155 /* TestsViewController.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = TestsViewController.xib; sourceTree = ""; }; - 28AD733E0D9D9553002E5188 /* MainWindow.xib */ = {isa = PBXFileReference; lastKnownFileType = file.xib; path = MainWindow.xib; sourceTree = ""; }; - 28D7ACF60DDB3853001CB0EB /* TestsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestsViewController.h; sourceTree = ""; }; - 28D7ACF70DDB3853001CB0EB /* TestsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestsViewController.m; sourceTree = ""; }; - 29B97316FDCFA39411CA2CEA /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = ""; }; - 32CA4F630368D1EE00C91783 /* Tests_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Tests_Prefix.pch; sourceTree = ""; }; - 8D1107310486CEB800E47090 /* Tests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "Tests-Info.plist"; plistStructureDefinitionIdentifier = "com.apple.xcode.plist.structure-definition.iphone.info-plist"; sourceTree = ""; }; - EEA9808012EF7FE50040E94E /* TestView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestView.h; sourceTree = ""; }; - EEA9808112EF7FE50040E94E /* TestView.mm */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.objcpp; path = TestView.mm; sourceTree = ""; }; - FA7EE31D15FA740000B0DC12 /* url_encode_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = url_encode_test.cpp; path = ../../coding/coding_tests/url_encode_test.cpp; sourceTree = ""; }; - FA7EE31E15FA740000B0DC12 /* value_opt_string_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = value_opt_string_test.cpp; path = ../../coding/coding_tests/value_opt_string_test.cpp; sourceTree = ""; }; - FA7EE31F15FA740000B0DC12 /* zip_reader_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = zip_reader_test.cpp; path = ../../coding/coding_tests/zip_reader_test.cpp; sourceTree = ""; }; - FA7EE32315FA742300B0DC12 /* anyrect_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = anyrect_test.cpp; path = ../../geometry/geometry_tests/anyrect_test.cpp; sourceTree = ""; }; - FA7EE32415FA742300B0DC12 /* distance_on_sphere_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = distance_on_sphere_test.cpp; path = ../../geometry/geometry_tests/distance_on_sphere_test.cpp; sourceTree = ""; }; - FA7EE32515FA742300B0DC12 /* region2d_binary_op_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = region2d_binary_op_test.cpp; path = ../../geometry/geometry_tests/region2d_binary_op_test.cpp; sourceTree = ""; }; - FA7EE32615FA742300B0DC12 /* robust_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = robust_test.cpp; path = ../../geometry/geometry_tests/robust_test.cpp; sourceTree = ""; }; - FA7EE32815FA742300B0DC12 /* test_regions.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = test_regions.hpp; path = ../../geometry/geometry_tests/test_regions.hpp; sourceTree = ""; }; - FA7EE32915FA742300B0DC12 /* vector_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = vector_test.cpp; path = ../../geometry/geometry_tests/vector_test.cpp; sourceTree = ""; }; - FA7EE33015FA743F00B0DC12 /* keyword_matcher_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = keyword_matcher_test.cpp; path = ../../search/search_tests/keyword_matcher_test.cpp; sourceTree = ""; }; - FA7EE33115FA743F00B0DC12 /* latlon_match_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = latlon_match_test.cpp; path = ../../search/search_tests/latlon_match_test.cpp; sourceTree = ""; }; - FA7EE33215FA743F00B0DC12 /* match_cost_mock.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = match_cost_mock.hpp; path = ../../search/search_tests/match_cost_mock.hpp; sourceTree = ""; }; - FA7EE33315FA743F00B0DC12 /* string_match_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string_match_test.cpp; path = ../../search/search_tests/string_match_test.cpp; sourceTree = ""; }; - FA7EE33715FA746900B0DC12 /* categories_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = categories_test.cpp; path = ../../indexer/indexer_tests/categories_test.cpp; sourceTree = ""; }; - FA7EE33815FA746900B0DC12 /* geometry_serialization_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = geometry_serialization_test.cpp; path = ../../indexer/indexer_tests/geometry_serialization_test.cpp; sourceTree = ""; }; - FA7EE33915FA746900B0DC12 /* index_builder_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = index_builder_test.cpp; path = ../../indexer/indexer_tests/index_builder_test.cpp; sourceTree = ""; }; - FA7EE33A15FA746900B0DC12 /* index_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = index_test.cpp; path = ../../indexer/indexer_tests/index_test.cpp; sourceTree = ""; }; - FA7EE33B15FA746900B0DC12 /* mwm_set_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mwm_set_test.cpp; path = ../../indexer/indexer_tests/mwm_set_test.cpp; sourceTree = ""; }; - FA7EE33C15FA746900B0DC12 /* scales_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = scales_test.cpp; path = ../../indexer/indexer_tests/scales_test.cpp; sourceTree = ""; }; - FA7EE34A15FB405100B0DC12 /* libprotobuf.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libprotobuf.a; path = "../../../omim-iphone-release/out/release/libprotobuf.a"; sourceTree = ""; }; - FA7EE34C15FB408D00B0DC12 /* libplatform.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libplatform.a; path = "../../../omim-iphone-release/out/release/libplatform.a"; sourceTree = ""; }; - FA7EE34E15FB40A800B0DC12 /* libsearch.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = libsearch.a; path = "../../../omim-iphone-release/out/release/libsearch.a"; sourceTree = ""; }; - FAC0354315FA5BAF00494C8E /* buffer_vector_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = buffer_vector_test.cpp; path = ../../base/base_tests/buffer_vector_test.cpp; sourceTree = ""; }; - FAC0354615FA5C6F00494C8E /* string_utils_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string_utils_test.cpp; path = ../../base/base_tests/string_utils_test.cpp; sourceTree = ""; }; - FAC0354815FA613D00494C8E /* test_polylines.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_polylines.cpp; path = ../../indexer/indexer_tests/test_polylines.cpp; sourceTree = ""; }; - FAC0354915FA613D00494C8E /* test_polylines.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = test_polylines.hpp; path = ../../indexer/indexer_tests/test_polylines.hpp; sourceTree = ""; }; - FAC0354B15FA621500494C8E /* assert_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = assert_test.cpp; path = ../../base/base_tests/assert_test.cpp; sourceTree = ""; }; - FAC0354C15FA621500494C8E /* bits_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bits_test.cpp; path = ../../base/base_tests/bits_test.cpp; sourceTree = ""; }; - FAC0354D15FA621500494C8E /* cache_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cache_test.cpp; path = ../../base/base_tests/cache_test.cpp; sourceTree = ""; }; - FAC0354E15FA621500494C8E /* commands_queue_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = commands_queue_test.cpp; path = ../../base/base_tests/commands_queue_test.cpp; sourceTree = ""; }; - FAC0354F15FA621500494C8E /* condition_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = condition_test.cpp; path = ../../base/base_tests/condition_test.cpp; sourceTree = ""; }; - FAC0355015FA621500494C8E /* const_helper.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = const_helper.cpp; path = ../../base/base_tests/const_helper.cpp; sourceTree = ""; }; - FAC0355115FA621500494C8E /* containers_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = containers_test.cpp; path = ../../base/base_tests/containers_test.cpp; sourceTree = ""; }; - FAC0355215FA621500494C8E /* fence_manager_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = fence_manager_test.cpp; path = ../../base/base_tests/fence_manager_test.cpp; sourceTree = ""; }; - FAC0355315FA621500494C8E /* logging_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = logging_test.cpp; path = ../../base/base_tests/logging_test.cpp; sourceTree = ""; }; - FAC0355515FA621500494C8E /* matrix_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = matrix_test.cpp; path = ../../base/base_tests/matrix_test.cpp; sourceTree = ""; }; - FAC0355615FA621500494C8E /* mru_cache_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mru_cache_test.cpp; path = ../../base/base_tests/mru_cache_test.cpp; sourceTree = ""; }; - FAC0355715FA621500494C8E /* rolling_hash_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rolling_hash_test.cpp; path = ../../base/base_tests/rolling_hash_test.cpp; sourceTree = ""; }; - FAC0355815FA621500494C8E /* scope_guard_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = scope_guard_test.cpp; path = ../../base/base_tests/scope_guard_test.cpp; sourceTree = ""; }; - FAC0355915FA621500494C8E /* stl_add_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = stl_add_test.cpp; path = ../../base/base_tests/stl_add_test.cpp; sourceTree = ""; }; - FAC0355A15FA621500494C8E /* string_format_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = string_format_test.cpp; path = ../../base/base_tests/string_format_test.cpp; sourceTree = ""; }; - FAC0355B15FA621500494C8E /* threaded_list_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = threaded_list_test.cpp; path = ../../base/base_tests/threaded_list_test.cpp; sourceTree = ""; }; - FAC0355C15FA621500494C8E /* threads_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = threads_test.cpp; path = ../../base/base_tests/threads_test.cpp; sourceTree = ""; }; - FAC0355D15FA621600494C8E /* timer_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = timer_test.cpp; path = ../../base/base_tests/timer_test.cpp; sourceTree = ""; }; - FAC0357215FA624000494C8E /* multilang_utf8_string_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = multilang_utf8_string_test.cpp; path = ../../coding/coding_tests/multilang_utf8_string_test.cpp; sourceTree = ""; }; - FAC0357315FA624000494C8E /* reader_writer_ops_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = reader_writer_ops_test.cpp; path = ../../coding/coding_tests/reader_writer_ops_test.cpp; sourceTree = ""; }; - FAC0357415FA624000494C8E /* trie_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = trie_test.cpp; path = ../../coding/coding_tests/trie_test.cpp; sourceTree = ""; }; - FAF564C6133C3187002748F9 /* libmap.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libmap.a; sourceTree = SOURCE_ROOT; }; - FAF564C7133C3187002748F9 /* libstorage.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libstorage.a; sourceTree = SOURCE_ROOT; }; - FAF564C8133C3187002748F9 /* libindexer.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libindexer.a; sourceTree = SOURCE_ROOT; }; - FAF564C9133C3187002748F9 /* libyg.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libyg.a; sourceTree = SOURCE_ROOT; }; - FAF564CA133C3187002748F9 /* libgeometry.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libgeometry.a; sourceTree = SOURCE_ROOT; }; - FAF564CB133C3187002748F9 /* libcoding.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libcoding.a; sourceTree = SOURCE_ROOT; }; - FAF564CC133C3187002748F9 /* libbase.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libbase.a; sourceTree = SOURCE_ROOT; }; - FAF564CD133C3187002748F9 /* libtomcrypt.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libtomcrypt.a; sourceTree = SOURCE_ROOT; }; - FAF564CE133C3187002748F9 /* libjansson.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libjansson.a; sourceTree = SOURCE_ROOT; }; - FAF564CF133C3187002748F9 /* libbzip2.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libbzip2.a; sourceTree = SOURCE_ROOT; }; - FAF564D0133C3187002748F9 /* libzlib.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libzlib.a; sourceTree = SOURCE_ROOT; }; - FAF564D1133C3187002748F9 /* libfribidi.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libfribidi.a; sourceTree = SOURCE_ROOT; }; - FAF564D2133C3187002748F9 /* libfreetype.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libfreetype.a; sourceTree = SOURCE_ROOT; }; - FAF564D3133C3187002748F9 /* libexpat.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; path = libexpat.a; sourceTree = SOURCE_ROOT; }; - FAF564EE133C3458002748F9 /* point_to_int64_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = point_to_int64_test.cpp; path = ../../indexer/indexer_tests/point_to_int64_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564F0133C3584002748F9 /* testingmain.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = testingmain.cpp; path = ../../testing/testingmain.cpp; sourceTree = SOURCE_ROOT; }; - FAF564F2133C3634002748F9 /* mercator_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mercator_test.cpp; path = ../../indexer/indexer_tests/mercator_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564F3133C3634002748F9 /* cell_id_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cell_id_test.cpp; path = ../../indexer/indexer_tests/cell_id_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564F6133C36A4002748F9 /* rect_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = rect_test.cpp; path = ../../geometry/geometry_tests/rect_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564F7133C36A4002748F9 /* distance_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = distance_test.cpp; path = ../../geometry/geometry_tests/distance_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564F8133C36A4002748F9 /* tree_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = tree_test.cpp; path = ../../geometry/geometry_tests/tree_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564FA133C36A4002748F9 /* large_polygon.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = large_polygon.hpp; path = ../../geometry/geometry_tests/large_polygon.hpp; sourceTree = SOURCE_ROOT; }; - FAF564FB133C36A4002748F9 /* region_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = region_test.cpp; path = ../../geometry/geometry_tests/region_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564FC133C36A4002748F9 /* polygon_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = polygon_test.cpp; path = ../../geometry/geometry_tests/polygon_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564FD133C36A4002748F9 /* cellid_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cellid_test.cpp; path = ../../geometry/geometry_tests/cellid_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564FE133C36A4002748F9 /* screen_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = screen_test.cpp; path = ../../geometry/geometry_tests/screen_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF564FF133C36A4002748F9 /* packer_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = packer_test.cpp; path = ../../geometry/geometry_tests/packer_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56500133C36A4002748F9 /* transformations_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = transformations_test.cpp; path = ../../geometry/geometry_tests/transformations_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56501133C36A4002748F9 /* common_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = common_test.cpp; path = ../../geometry/geometry_tests/common_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56502133C36A4002748F9 /* pointu_to_uint64_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = pointu_to_uint64_test.cpp; path = ../../geometry/geometry_tests/pointu_to_uint64_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56504133C36A4002748F9 /* covering_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = covering_test.cpp; path = ../../geometry/geometry_tests/covering_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56505133C36A4002748F9 /* point_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = point_test.cpp; path = ../../geometry/geometry_tests/point_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56506133C36A4002748F9 /* segments_intersect_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = segments_intersect_test.cpp; path = ../../geometry/geometry_tests/segments_intersect_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56507133C36A4002748F9 /* intersect_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = intersect_test.cpp; path = ../../geometry/geometry_tests/intersect_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56508133C36A4002748F9 /* equality.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = equality.hpp; path = ../../geometry/geometry_tests/equality.hpp; sourceTree = SOURCE_ROOT; }; - FAF56509133C36A4002748F9 /* angle_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = angle_test.cpp; path = ../../geometry/geometry_tests/angle_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5651C133C374F002748F9 /* writer_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = writer_test.cpp; path = ../../coding/coding_tests/writer_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5651D133C374F002748F9 /* reader_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = reader_test.cpp; path = ../../coding/coding_tests/reader_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5651E133C374F002748F9 /* file_container_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = file_container_test.cpp; path = ../../coding/coding_tests/file_container_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5651F133C374F002748F9 /* sha2_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sha2_test.cpp; path = ../../coding/coding_tests/sha2_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56520133C374F002748F9 /* base64_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = base64_test.cpp; path = ../../coding/coding_tests/base64_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56521133C374F002748F9 /* bit_shift_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bit_shift_test.cpp; path = ../../coding/coding_tests/bit_shift_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56522133C374F002748F9 /* gzip_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = gzip_test.cpp; path = ../../coding/coding_tests/gzip_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56523133C374F002748F9 /* coder_util_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = coder_util_test.cpp; path = ../../coding/coding_tests/coder_util_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56524133C374F002748F9 /* coder_test.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = coder_test.hpp; path = ../../coding/coding_tests/coder_test.hpp; sourceTree = SOURCE_ROOT; }; - FAF56525133C374F002748F9 /* bzip2_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = bzip2_test.cpp; path = ../../coding/coding_tests/bzip2_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56527133C374F002748F9 /* varint_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = varint_test.cpp; path = ../../coding/coding_tests/varint_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56528133C374F002748F9 /* diff_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = diff_test.cpp; path = ../../coding/coding_tests/diff_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56529133C374F002748F9 /* var_serial_vector_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = var_serial_vector_test.cpp; path = ../../coding/coding_tests/var_serial_vector_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5652A133C374F002748F9 /* reader_cache_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = reader_cache_test.cpp; path = ../../coding/coding_tests/reader_cache_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5652B133C374F002748F9 /* hex_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = hex_test.cpp; path = ../../coding/coding_tests/hex_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5652C133C374F002748F9 /* file_sort_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = file_sort_test.cpp; path = ../../coding/coding_tests/file_sort_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5652D133C374F002748F9 /* var_record_reader_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = var_record_reader_test.cpp; path = ../../coding/coding_tests/var_record_reader_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5652E133C374F002748F9 /* reader_test.hpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.h; name = reader_test.hpp; path = ../../coding/coding_tests/reader_test.hpp; sourceTree = SOURCE_ROOT; }; - FAF56530133C374F002748F9 /* mem_file_reader_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mem_file_reader_test.cpp; path = ../../coding/coding_tests/mem_file_reader_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56531133C3750002748F9 /* dd_vector_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = dd_vector_test.cpp; path = ../../coding/coding_tests/dd_vector_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56532133C3750002748F9 /* endianness_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = endianness_test.cpp; path = ../../coding/coding_tests/endianness_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56533133C3750002748F9 /* png_decoder_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = png_decoder_test.cpp; path = ../../coding/coding_tests/png_decoder_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56535133C3750002748F9 /* mem_file_writer_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = mem_file_writer_test.cpp; path = ../../coding/coding_tests/mem_file_writer_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF5654F133C3DA1002748F9 /* geometry_coding_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = geometry_coding_test.cpp; path = ../../indexer/indexer_tests/geometry_coding_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56552133C3DA1002748F9 /* interval_index_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = interval_index_test.cpp; path = ../../indexer/indexer_tests/interval_index_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56553133C3DA2002748F9 /* cell_coverer_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = cell_coverer_test.cpp; path = ../../indexer/indexer_tests/cell_coverer_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56554133C3DA2002748F9 /* sort_and_merge_intervals_test.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = sort_and_merge_intervals_test.cpp; path = ../../indexer/indexer_tests/sort_and_merge_intervals_test.cpp; sourceTree = SOURCE_ROOT; }; - FAF56555133C3DA2002748F9 /* test_type.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; name = test_type.cpp; path = ../../indexer/indexer_tests/test_type.cpp; sourceTree = SOURCE_ROOT; }; -/* End PBXFileReference section */ - -/* Begin PBXFrameworksBuildPhase section */ - 1D60588F0D05DD3D006BFB54 /* Frameworks */ = { - isa = PBXFrameworksBuildPhase; - buildActionMask = 2147483647; - files = ( - FA7EE34F15FB40A800B0DC12 /* libsearch.a in Frameworks */, - FA7EE34D15FB408D00B0DC12 /* libplatform.a in Frameworks */, - FA7EE34B15FB405100B0DC12 /* libprotobuf.a in Frameworks */, - 1D60589F0D05DD5A006BFB54 /* Foundation.framework in Frameworks */, - 1DF5F4E00D08C38300B7A737 /* UIKit.framework in Frameworks */, - 288765A50DF7441C002DB57D /* CoreGraphics.framework in Frameworks */, - FAF564D4133C3187002748F9 /* libmap.a in Frameworks */, - FAF564D5133C3187002748F9 /* libstorage.a in Frameworks */, - FAF564D6133C3187002748F9 /* libindexer.a in Frameworks */, - FAF564D7133C3187002748F9 /* libyg.a in Frameworks */, - FAF564D8133C3187002748F9 /* libgeometry.a in Frameworks */, - FAF564D9133C3187002748F9 /* libcoding.a in Frameworks */, - FAF564DA133C3187002748F9 /* libbase.a in Frameworks */, - FAF564DB133C3187002748F9 /* libtomcrypt.a in Frameworks */, - FAF564DC133C3187002748F9 /* libjansson.a in Frameworks */, - FAF564DD133C3187002748F9 /* libbzip2.a in Frameworks */, - FAF564DE133C3187002748F9 /* libzlib.a in Frameworks */, - FAF564DF133C3187002748F9 /* libfribidi.a in Frameworks */, - FAF564E0133C3187002748F9 /* libfreetype.a in Frameworks */, - FAF564E1133C3187002748F9 /* libexpat.a in Frameworks */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXFrameworksBuildPhase section */ - -/* Begin PBXGroup section */ - 080E96DDFE201D6D7F000001 /* Classes */ = { - isa = PBXGroup; - children = ( - 1D3623240D0F684500981E51 /* TestsAppDelegate.h */, - 1D3623250D0F684500981E51 /* TestsAppDelegate.m */, - 28D7ACF60DDB3853001CB0EB /* TestsViewController.h */, - 28D7ACF70DDB3853001CB0EB /* TestsViewController.m */, - EEA9808012EF7FE50040E94E /* TestView.h */, - EEA9808112EF7FE50040E94E /* TestView.mm */, - ); - path = Classes; - sourceTree = ""; - }; - 19C28FACFE9D520D11CA2CBB /* Products */ = { - isa = PBXGroup; - children = ( - 1D6058910D05DD3D006BFB54 /* Tests.app */, - ); - name = Products; - sourceTree = ""; - }; - 29B97314FDCFA39411CA2CEA /* CustomTemplate */ = { - isa = PBXGroup; - children = ( - FA7EE34E15FB40A800B0DC12 /* libsearch.a */, - FA7EE34C15FB408D00B0DC12 /* libplatform.a */, - FA7EE34A15FB405100B0DC12 /* libprotobuf.a */, - FAF564EC133C343A002748F9 /* Tests */, - 080E96DDFE201D6D7F000001 /* Classes */, - 29B97315FDCFA39411CA2CEA /* Other Sources */, - 29B97317FDCFA39411CA2CEA /* Resources */, - FAF564E3133C318E002748F9 /* Static Libraries */, - 29B97323FDCFA39411CA2CEA /* Frameworks */, - 19C28FACFE9D520D11CA2CBB /* Products */, - ); - name = CustomTemplate; - sourceTree = ""; - }; - 29B97315FDCFA39411CA2CEA /* Other Sources */ = { - isa = PBXGroup; - children = ( - 32CA4F630368D1EE00C91783 /* Tests_Prefix.pch */, - 29B97316FDCFA39411CA2CEA /* main.m */, - ); - name = "Other Sources"; - sourceTree = ""; - }; - 29B97317FDCFA39411CA2CEA /* Resources */ = { - isa = PBXGroup; - children = ( - 2899E5210DE3E06400AC0155 /* TestsViewController.xib */, - 28AD733E0D9D9553002E5188 /* MainWindow.xib */, - 8D1107310486CEB800E47090 /* Tests-Info.plist */, - ); - name = Resources; - sourceTree = ""; - }; - 29B97323FDCFA39411CA2CEA /* Frameworks */ = { - isa = PBXGroup; - children = ( - 1DF5F4DF0D08C38300B7A737 /* UIKit.framework */, - 1D30AB110D05D00D00671497 /* Foundation.framework */, - 288765A40DF7441C002DB57D /* CoreGraphics.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - FAF564E3133C318E002748F9 /* Static Libraries */ = { - isa = PBXGroup; - children = ( - FAF564C6133C3187002748F9 /* libmap.a */, - FAF564C7133C3187002748F9 /* libstorage.a */, - FAF564C8133C3187002748F9 /* libindexer.a */, - FAF564C9133C3187002748F9 /* libyg.a */, - FAF564CA133C3187002748F9 /* libgeometry.a */, - FAF564CB133C3187002748F9 /* libcoding.a */, - FAF564CC133C3187002748F9 /* libbase.a */, - FAF564CD133C3187002748F9 /* libtomcrypt.a */, - FAF564CE133C3187002748F9 /* libjansson.a */, - FAF564CF133C3187002748F9 /* libbzip2.a */, - FAF564D0133C3187002748F9 /* libzlib.a */, - FAF564D1133C3187002748F9 /* libfribidi.a */, - FAF564D2133C3187002748F9 /* libfreetype.a */, - FAF564D3133C3187002748F9 /* libexpat.a */, - ); - name = "Static Libraries"; - path = Classes; - sourceTree = ""; - }; - FAF564EC133C343A002748F9 /* Tests */ = { - isa = PBXGroup; - children = ( - FA7EE33715FA746900B0DC12 /* categories_test.cpp */, - FA7EE33815FA746900B0DC12 /* geometry_serialization_test.cpp */, - FA7EE33915FA746900B0DC12 /* index_builder_test.cpp */, - FA7EE33A15FA746900B0DC12 /* index_test.cpp */, - FA7EE33B15FA746900B0DC12 /* mwm_set_test.cpp */, - FA7EE33C15FA746900B0DC12 /* scales_test.cpp */, - FA7EE33015FA743F00B0DC12 /* keyword_matcher_test.cpp */, - FA7EE33115FA743F00B0DC12 /* latlon_match_test.cpp */, - FA7EE33215FA743F00B0DC12 /* match_cost_mock.hpp */, - FA7EE33315FA743F00B0DC12 /* string_match_test.cpp */, - FA7EE32315FA742300B0DC12 /* anyrect_test.cpp */, - FA7EE32415FA742300B0DC12 /* distance_on_sphere_test.cpp */, - FA7EE32515FA742300B0DC12 /* region2d_binary_op_test.cpp */, - FA7EE32615FA742300B0DC12 /* robust_test.cpp */, - FA7EE32815FA742300B0DC12 /* test_regions.hpp */, - FA7EE32915FA742300B0DC12 /* vector_test.cpp */, - FA7EE31D15FA740000B0DC12 /* url_encode_test.cpp */, - FA7EE31E15FA740000B0DC12 /* value_opt_string_test.cpp */, - FA7EE31F15FA740000B0DC12 /* zip_reader_test.cpp */, - FAC0357215FA624000494C8E /* multilang_utf8_string_test.cpp */, - FAC0357315FA624000494C8E /* reader_writer_ops_test.cpp */, - FAC0357415FA624000494C8E /* trie_test.cpp */, - FAC0354B15FA621500494C8E /* assert_test.cpp */, - FAC0354C15FA621500494C8E /* bits_test.cpp */, - FAC0354D15FA621500494C8E /* cache_test.cpp */, - FAC0354E15FA621500494C8E /* commands_queue_test.cpp */, - FAC0354F15FA621500494C8E /* condition_test.cpp */, - FAC0355015FA621500494C8E /* const_helper.cpp */, - FAC0355115FA621500494C8E /* containers_test.cpp */, - FAC0355215FA621500494C8E /* fence_manager_test.cpp */, - FAC0355315FA621500494C8E /* logging_test.cpp */, - FAC0355515FA621500494C8E /* matrix_test.cpp */, - FAC0355615FA621500494C8E /* mru_cache_test.cpp */, - FAC0355715FA621500494C8E /* rolling_hash_test.cpp */, - FAC0355815FA621500494C8E /* scope_guard_test.cpp */, - FAC0355915FA621500494C8E /* stl_add_test.cpp */, - FAC0355A15FA621500494C8E /* string_format_test.cpp */, - FAC0355B15FA621500494C8E /* threaded_list_test.cpp */, - FAC0355C15FA621500494C8E /* threads_test.cpp */, - FAC0355D15FA621600494C8E /* timer_test.cpp */, - FAC0354815FA613D00494C8E /* test_polylines.cpp */, - FAC0354915FA613D00494C8E /* test_polylines.hpp */, - FAC0354615FA5C6F00494C8E /* string_utils_test.cpp */, - FAC0354315FA5BAF00494C8E /* buffer_vector_test.cpp */, - FAF5654F133C3DA1002748F9 /* geometry_coding_test.cpp */, - FAF56552133C3DA1002748F9 /* interval_index_test.cpp */, - FAF56553133C3DA2002748F9 /* cell_coverer_test.cpp */, - FAF56554133C3DA2002748F9 /* sort_and_merge_intervals_test.cpp */, - FAF56555133C3DA2002748F9 /* test_type.cpp */, - FAF5651C133C374F002748F9 /* writer_test.cpp */, - FAF5651D133C374F002748F9 /* reader_test.cpp */, - FAF5651E133C374F002748F9 /* file_container_test.cpp */, - FAF5651F133C374F002748F9 /* sha2_test.cpp */, - FAF56520133C374F002748F9 /* base64_test.cpp */, - FAF56521133C374F002748F9 /* bit_shift_test.cpp */, - FAF56522133C374F002748F9 /* gzip_test.cpp */, - FAF56523133C374F002748F9 /* coder_util_test.cpp */, - FAF56524133C374F002748F9 /* coder_test.hpp */, - FAF56525133C374F002748F9 /* bzip2_test.cpp */, - FAF56527133C374F002748F9 /* varint_test.cpp */, - FAF56528133C374F002748F9 /* diff_test.cpp */, - FAF56529133C374F002748F9 /* var_serial_vector_test.cpp */, - FAF5652A133C374F002748F9 /* reader_cache_test.cpp */, - FAF5652B133C374F002748F9 /* hex_test.cpp */, - FAF5652C133C374F002748F9 /* file_sort_test.cpp */, - FAF5652D133C374F002748F9 /* var_record_reader_test.cpp */, - FAF5652E133C374F002748F9 /* reader_test.hpp */, - FAF56530133C374F002748F9 /* mem_file_reader_test.cpp */, - FAF56531133C3750002748F9 /* dd_vector_test.cpp */, - FAF56532133C3750002748F9 /* endianness_test.cpp */, - FAF56533133C3750002748F9 /* png_decoder_test.cpp */, - FAF56535133C3750002748F9 /* mem_file_writer_test.cpp */, - FAF564F6133C36A4002748F9 /* rect_test.cpp */, - FAF564F7133C36A4002748F9 /* distance_test.cpp */, - FAF564F8133C36A4002748F9 /* tree_test.cpp */, - FAF564FA133C36A4002748F9 /* large_polygon.hpp */, - FAF564FB133C36A4002748F9 /* region_test.cpp */, - FAF564FC133C36A4002748F9 /* polygon_test.cpp */, - FAF564FD133C36A4002748F9 /* cellid_test.cpp */, - FAF564FE133C36A4002748F9 /* screen_test.cpp */, - FAF564FF133C36A4002748F9 /* packer_test.cpp */, - FAF56500133C36A4002748F9 /* transformations_test.cpp */, - FAF56501133C36A4002748F9 /* common_test.cpp */, - FAF56502133C36A4002748F9 /* pointu_to_uint64_test.cpp */, - FAF56504133C36A4002748F9 /* covering_test.cpp */, - FAF56505133C36A4002748F9 /* point_test.cpp */, - FAF56506133C36A4002748F9 /* segments_intersect_test.cpp */, - FAF56507133C36A4002748F9 /* intersect_test.cpp */, - FAF56508133C36A4002748F9 /* equality.hpp */, - FAF56509133C36A4002748F9 /* angle_test.cpp */, - FAF564F2133C3634002748F9 /* mercator_test.cpp */, - FAF564F3133C3634002748F9 /* cell_id_test.cpp */, - FAF564F0133C3584002748F9 /* testingmain.cpp */, - FAF564EE133C3458002748F9 /* point_to_int64_test.cpp */, - ); - name = Tests; - sourceTree = ""; - }; -/* End PBXGroup section */ - -/* Begin PBXNativeTarget section */ - 1D6058900D05DD3D006BFB54 /* Tests */ = { - isa = PBXNativeTarget; - buildConfigurationList = 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Tests" */; - buildPhases = ( - 1D60588D0D05DD3D006BFB54 /* Resources */, - 1D60588E0D05DD3D006BFB54 /* Sources */, - 1D60588F0D05DD3D006BFB54 /* Frameworks */, - ); - buildRules = ( - ); - dependencies = ( - ); - name = Tests; - productName = Tests; - productReference = 1D6058910D05DD3D006BFB54 /* Tests.app */; - productType = "com.apple.product-type.application"; - }; -/* End PBXNativeTarget section */ - -/* Begin PBXProject section */ - 29B97313FDCFA39411CA2CEA /* Project object */ = { - isa = PBXProject; - buildConfigurationList = C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Tests" */; - compatibilityVersion = "Xcode 3.2"; - developmentRegion = English; - hasScannedForEncodings = 1; - knownRegions = ( - English, - Japanese, - French, - German, - ); - mainGroup = 29B97314FDCFA39411CA2CEA /* CustomTemplate */; - projectDirPath = ""; - projectRoot = ""; - targets = ( - 1D6058900D05DD3D006BFB54 /* Tests */, - ); - }; -/* End PBXProject section */ - -/* Begin PBXResourcesBuildPhase section */ - 1D60588D0D05DD3D006BFB54 /* Resources */ = { - isa = PBXResourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 28AD733F0D9D9553002E5188 /* MainWindow.xib in Resources */, - 2899E5220DE3E06400AC0155 /* TestsViewController.xib in Resources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXResourcesBuildPhase section */ - -/* Begin PBXSourcesBuildPhase section */ - 1D60588E0D05DD3D006BFB54 /* Sources */ = { - isa = PBXSourcesBuildPhase; - buildActionMask = 2147483647; - files = ( - 1D3623260D0F684500981E51 /* TestsAppDelegate.m in Sources */, - 28D7ACF80DDB3853001CB0EB /* TestsViewController.m in Sources */, - EEA9808212EF7FE50040E94E /* TestView.mm in Sources */, - FAF564EF133C3458002748F9 /* point_to_int64_test.cpp in Sources */, - FAF564F1133C3584002748F9 /* testingmain.cpp in Sources */, - FAF564F4133C3634002748F9 /* mercator_test.cpp in Sources */, - FAF564F5133C3634002748F9 /* cell_id_test.cpp in Sources */, - FAF5650A133C36A4002748F9 /* rect_test.cpp in Sources */, - FAF5650B133C36A4002748F9 /* distance_test.cpp in Sources */, - FAF5650C133C36A4002748F9 /* tree_test.cpp in Sources */, - FAF5650E133C36A4002748F9 /* region_test.cpp in Sources */, - FAF5650F133C36A4002748F9 /* polygon_test.cpp in Sources */, - FAF56510133C36A4002748F9 /* cellid_test.cpp in Sources */, - FAF56511133C36A4002748F9 /* screen_test.cpp in Sources */, - FAF56512133C36A4002748F9 /* packer_test.cpp in Sources */, - FAF56513133C36A4002748F9 /* transformations_test.cpp in Sources */, - FAF56514133C36A4002748F9 /* common_test.cpp in Sources */, - FAF56515133C36A4002748F9 /* pointu_to_uint64_test.cpp in Sources */, - FAF56517133C36A4002748F9 /* covering_test.cpp in Sources */, - FAF56518133C36A4002748F9 /* point_test.cpp in Sources */, - FAF56519133C36A4002748F9 /* segments_intersect_test.cpp in Sources */, - FAF5651A133C36A4002748F9 /* intersect_test.cpp in Sources */, - FAF5651B133C36A4002748F9 /* angle_test.cpp in Sources */, - FAF56536133C3750002748F9 /* writer_test.cpp in Sources */, - FAF56537133C3750002748F9 /* reader_test.cpp in Sources */, - FAF56538133C3750002748F9 /* file_container_test.cpp in Sources */, - FAF56539133C3750002748F9 /* sha2_test.cpp in Sources */, - FAF5653A133C3750002748F9 /* base64_test.cpp in Sources */, - FAF5653B133C3750002748F9 /* bit_shift_test.cpp in Sources */, - FAF5653C133C3750002748F9 /* gzip_test.cpp in Sources */, - FAF5653D133C3750002748F9 /* coder_util_test.cpp in Sources */, - FAF5653E133C3750002748F9 /* bzip2_test.cpp in Sources */, - FAF56540133C3750002748F9 /* varint_test.cpp in Sources */, - FAF56541133C3750002748F9 /* diff_test.cpp in Sources */, - FAF56542133C3750002748F9 /* var_serial_vector_test.cpp in Sources */, - FAF56543133C3750002748F9 /* reader_cache_test.cpp in Sources */, - FAF56544133C3750002748F9 /* hex_test.cpp in Sources */, - FAF56545133C3750002748F9 /* file_sort_test.cpp in Sources */, - FAF56546133C3750002748F9 /* var_record_reader_test.cpp in Sources */, - FAF56548133C3750002748F9 /* mem_file_reader_test.cpp in Sources */, - FAF56549133C3750002748F9 /* dd_vector_test.cpp in Sources */, - FAF5654A133C3750002748F9 /* endianness_test.cpp in Sources */, - FAF5654B133C3750002748F9 /* png_decoder_test.cpp in Sources */, - FAF5654D133C3750002748F9 /* mem_file_writer_test.cpp in Sources */, - FAF56557133C3DA2002748F9 /* geometry_coding_test.cpp in Sources */, - FAF5655A133C3DA2002748F9 /* interval_index_test.cpp in Sources */, - FAF5655B133C3DA2002748F9 /* cell_coverer_test.cpp in Sources */, - FAF5655C133C3DA2002748F9 /* sort_and_merge_intervals_test.cpp in Sources */, - FAF5655D133C3DA2002748F9 /* test_type.cpp in Sources */, - FAC0354415FA5BAF00494C8E /* buffer_vector_test.cpp in Sources */, - FAC0354715FA5C6F00494C8E /* string_utils_test.cpp in Sources */, - FAC0354A15FA613D00494C8E /* test_polylines.cpp in Sources */, - FAC0355E15FA621600494C8E /* assert_test.cpp in Sources */, - FAC0355F15FA621600494C8E /* bits_test.cpp in Sources */, - FAC0356015FA621600494C8E /* cache_test.cpp in Sources */, - FAC0356115FA621600494C8E /* commands_queue_test.cpp in Sources */, - FAC0356215FA621600494C8E /* condition_test.cpp in Sources */, - FAC0356315FA621600494C8E /* const_helper.cpp in Sources */, - FAC0356415FA621600494C8E /* containers_test.cpp in Sources */, - FAC0356515FA621600494C8E /* fence_manager_test.cpp in Sources */, - FAC0356615FA621600494C8E /* logging_test.cpp in Sources */, - FAC0356815FA621600494C8E /* matrix_test.cpp in Sources */, - FAC0356915FA621600494C8E /* mru_cache_test.cpp in Sources */, - FAC0356A15FA621600494C8E /* rolling_hash_test.cpp in Sources */, - FAC0356B15FA621600494C8E /* scope_guard_test.cpp in Sources */, - FAC0356C15FA621600494C8E /* stl_add_test.cpp in Sources */, - FAC0356D15FA621600494C8E /* string_format_test.cpp in Sources */, - FAC0356E15FA621600494C8E /* threaded_list_test.cpp in Sources */, - FAC0356F15FA621600494C8E /* threads_test.cpp in Sources */, - FAC0357015FA621600494C8E /* timer_test.cpp in Sources */, - FAC0357915FA624000494C8E /* multilang_utf8_string_test.cpp in Sources */, - FAC0357A15FA624000494C8E /* reader_writer_ops_test.cpp in Sources */, - FAC0357B15FA624000494C8E /* trie_test.cpp in Sources */, - FA7EE32015FA740000B0DC12 /* url_encode_test.cpp in Sources */, - FA7EE32115FA740000B0DC12 /* value_opt_string_test.cpp in Sources */, - FA7EE32215FA740000B0DC12 /* zip_reader_test.cpp in Sources */, - FA7EE32A15FA742300B0DC12 /* anyrect_test.cpp in Sources */, - FA7EE32B15FA742300B0DC12 /* distance_on_sphere_test.cpp in Sources */, - FA7EE32C15FA742300B0DC12 /* region2d_binary_op_test.cpp in Sources */, - FA7EE32D15FA742300B0DC12 /* robust_test.cpp in Sources */, - FA7EE32F15FA742300B0DC12 /* vector_test.cpp in Sources */, - FA7EE33415FA743F00B0DC12 /* keyword_matcher_test.cpp in Sources */, - FA7EE33515FA743F00B0DC12 /* latlon_match_test.cpp in Sources */, - FA7EE33615FA743F00B0DC12 /* string_match_test.cpp in Sources */, - FA7EE33E15FA746900B0DC12 /* categories_test.cpp in Sources */, - FA7EE33F15FA746900B0DC12 /* geometry_serialization_test.cpp in Sources */, - FA7EE34015FA746900B0DC12 /* index_builder_test.cpp in Sources */, - FA7EE34115FA746900B0DC12 /* index_test.cpp in Sources */, - FA7EE34215FA746900B0DC12 /* mwm_set_test.cpp in Sources */, - FA7EE34315FA746900B0DC12 /* scales_test.cpp in Sources */, - ); - runOnlyForDeploymentPostprocessing = 0; - }; -/* End PBXSourcesBuildPhase section */ - -/* Begin XCBuildConfiguration section */ - 1D6058940D05DD3E006BFB54 /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = NO; - GCC_DYNAMIC_NO_PIC = NO; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = Tests_Prefix.pch; - INFOPLIST_FILE = "Tests-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 4.0; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(DEVELOPER_DIR)/omim/omim-iphone-build/out/debug\"", - "\"$(SRCROOT)/../../../omim-iphone-release/out/release\"", - ); - PRODUCT_NAME = Tests; - }; - name = Debug; - }; - 1D6058950D05DD3E006BFB54 /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ALWAYS_SEARCH_USER_PATHS = NO; - COPY_PHASE_STRIP = YES; - GCC_PRECOMPILE_PREFIX_HEADER = YES; - GCC_PREFIX_HEADER = Tests_Prefix.pch; - INFOPLIST_FILE = "Tests-Info.plist"; - IPHONEOS_DEPLOYMENT_TARGET = 4.0; - LIBRARY_SEARCH_PATHS = ( - "$(inherited)", - "\"$(DEVELOPER_DIR)/omim/omim-iphone-build/out/debug\"", - "\"$(SRCROOT)/../../../omim-iphone-release/out/release\"", - ); - PRODUCT_NAME = Tests; - VALIDATE_PRODUCT = YES; - }; - name = Release; - }; - C01FCF4F08A954540054247B /* Debug */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_FAST_MATH = YES; - GCC_OPTIMIZATION_LEVEL = 0; - GCC_PREPROCESSOR_DEFINITIONS = ( - DEBUG, - _DEBUG, - ); - GCC_THUMB_SUPPORT = NO; - GCC_VERSION = com.apple.compilers.llvmgcc42; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ../../3party/boost; - LIBRARY_SEARCH_PATHS = "../../../omim-iphone-debug/out/debug/"; - PREBINDING = NO; - SDKROOT = iphoneos; - }; - name = Debug; - }; - C01FCF5008A954540054247B /* Release */ = { - isa = XCBuildConfiguration; - buildSettings = { - ARCHS = "$(ARCHS_STANDARD_32_BIT)"; - "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; - GCC_C_LANGUAGE_STANDARD = c99; - GCC_FAST_MATH = YES; - GCC_OPTIMIZATION_LEVEL = 3; - GCC_PREPROCESSOR_DEFINITIONS = ( - RELEASE, - _RELEASE, - ); - GCC_THUMB_SUPPORT = NO; - GCC_UNROLL_LOOPS = YES; - GCC_VERSION = com.apple.compilers.llvmgcc42; - GCC_WARN_ABOUT_RETURN_TYPE = YES; - GCC_WARN_UNUSED_VARIABLE = YES; - HEADER_SEARCH_PATHS = ../../3party/boost; - LIBRARY_SEARCH_PATHS = "../../../omim-iphone-release/out/release/"; - OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1"; - PREBINDING = NO; - SDKROOT = iphoneos; - }; - name = Release; - }; -/* End XCBuildConfiguration section */ - -/* Begin XCConfigurationList section */ - 1D6058960D05DD3E006BFB54 /* Build configuration list for PBXNativeTarget "Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - 1D6058940D05DD3E006BFB54 /* Debug */, - 1D6058950D05DD3E006BFB54 /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; - C01FCF4E08A954540054247B /* Build configuration list for PBXProject "Tests" */ = { - isa = XCConfigurationList; - buildConfigurations = ( - C01FCF4F08A954540054247B /* Debug */, - C01FCF5008A954540054247B /* Release */, - ); - defaultConfigurationIsVisible = 0; - defaultConfigurationName = Release; - }; -/* End XCConfigurationList section */ - }; - rootObject = 29B97313FDCFA39411CA2CEA /* Project object */; -} diff --git a/iphone/Tests/TestsViewController.xib b/iphone/Tests/TestsViewController.xib deleted file mode 100644 index c524af6f48..0000000000 --- a/iphone/Tests/TestsViewController.xib +++ /dev/null @@ -1,342 +0,0 @@ - - - - 1056 - 10J567 - 823 - 1038.35 - 462.00 - - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - 132 - - - YES - - - - YES - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - YES - - YES - - - YES - - - - YES - - IBFilesOwner - IBCocoaTouchFramework - - - IBFirstResponder - IBCocoaTouchFramework - - - - 274 - {320, 460} - - - 3 - MC43NQA - - 2 - - - NO - - IBCocoaTouchFramework - - - - - YES - - - view - - - - 7 - - - - - YES - - 0 - - - - - - -1 - - - File's Owner - - - -2 - - - - - 6 - - - - - - - YES - - YES - -1.CustomClassName - -2.CustomClassName - 6.CustomClassName - 6.IBEditorWindowLastContentRect - 6.IBPluginDependency - - - YES - TestsViewController - UIResponder - TestView - {{555, 228}, {320, 480}} - com.apple.InterfaceBuilder.IBCocoaTouchPlugin - - - - YES - - - YES - - - - - YES - - - YES - - - - 7 - - - - YES - - TestView - UIView - - IBProjectSource - Classes/TestView.h - - - - TestsViewController - UIViewController - - IBProjectSource - Classes/TestsViewController.h - - - - - YES - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSError.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSFileManager.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueCoding.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyValueObserving.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSKeyedArchiver.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSObject.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSRunLoop.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSThread.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURL.h - - - - NSObject - - IBFrameworkSource - Foundation.framework/Headers/NSURLConnection.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIAccessibility.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UINibLoading.h - - - - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UIResponder.h - - - - UIResponder - NSObject - - - - UISearchBar - UIView - - IBFrameworkSource - UIKit.framework/Headers/UISearchBar.h - - - - UISearchDisplayController - NSObject - - IBFrameworkSource - UIKit.framework/Headers/UISearchDisplayController.h - - - - UIView - - IBFrameworkSource - UIKit.framework/Headers/UIPrintFormatter.h - - - - UIView - - IBFrameworkSource - UIKit.framework/Headers/UITextField.h - - - - UIView - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIView.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UINavigationController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UIPopoverController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UISplitViewController.h - - - - UIViewController - - IBFrameworkSource - UIKit.framework/Headers/UITabBarController.h - - - - UIViewController - UIResponder - - IBFrameworkSource - UIKit.framework/Headers/UIViewController.h - - - - - 0 - IBCocoaTouchFramework - - com.apple.InterfaceBuilder.CocoaTouchPlugin.iPhoneOS - - - - com.apple.InterfaceBuilder.CocoaTouchPlugin.InterfaceBuilder3 - - - YES - Tests.xcodeproj - 3 - 132 - - diff --git a/iphone/Tests/Tests_Prefix.pch b/iphone/Tests/Tests_Prefix.pch deleted file mode 100644 index 4c326b434a..0000000000 --- a/iphone/Tests/Tests_Prefix.pch +++ /dev/null @@ -1,8 +0,0 @@ -// -// Prefix header for all source files of the 'Tests' target in the 'Tests' project -// - -#ifdef __OBJC__ - #import - #import -#endif diff --git a/iphone/Tests/main.m b/iphone/Tests/main.m deleted file mode 100644 index 2a26f1b87b..0000000000 --- a/iphone/Tests/main.m +++ /dev/null @@ -1,9 +0,0 @@ -#import - -int main(int argc, char *argv[]) { - - NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init]; - int retVal = UIApplicationMain(argc, argv, nil, nil); - [pool release]; - return retVal; -}